Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Create an IPv6 Address DNS RecordContent of Create an IPv6 Address DNS Record.vbsMD5 Hash: 3373BDC466D2D68E7B3FB3F095C23D25 |
||
' Description: Creates an IPv6 address record (AAAA) on a DNS server.
strDNSServer = "atl-dc-03.fabrikam.com" strContainer = "fabrikam.com" strOwner = "ipv6.fabrikam.com" intRecordClass = 1 intTTL = 600 strIPv6Address = "4321:0:1:2:3:4:567:89ab" strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & _ "\root\MicrosoftDNS") Set objItem = objWMIService.Get("MicrosoftDNS_AAAAType") errResult = objItem.CreateInstanceFromPropertyData _ (strDNSServer, strContainer, strOwner, intRecordClass, _ intTTL, strIPv6Address) | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |