Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Create a Well-Known Services DNS RecordContent of Create a Well-Known Services DNS Record.vbsMD5 Hash: C654E020DE2C274EF40B9BDC79CBADF5 |
||
' Description: Creates a well-known services (WKS) record on a DNS server.
strDNSServer = "atl-dc-03.fabrikam.com" strContainer = "fabrikam.com" strOwner = "ftp.fabrikam.com" intRecordClass = 1 intTTL = 600 strIPAddress = "192.168.1.150" strProtocol = "TCP" strServices = "FTP" strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & _ "\root\MicrosoftDNS") Set objItem = objWMIService.Get("MicrosoftDNS_WKSType") errResult = objItem.CreateInstanceFromPropertyData _ (strDNSServer, strContainer, strOwner, intRecordClass, intTTL, _ strIPAddress, strProtocol, strServices) | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |