Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Enable DHCPContent of Enable DHCP.vbsMD5 Hash: 4B7E7D5CF654659C1C26F25B53FD09AD |
||
' Description: Enables the DHCP client service on a computer. The computer will then use DHCP to obtain an IP address rather than use a static IP address.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colNetAdapters = objWMIService.ExecQuery _ ("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE") For Each objNetAdapter In colNetAdapters errEnable = objNetAdapter.EnableDHCP() Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |