VBS = Visual Basic Scripting
You can use anything you want with VBS in Networking... For example, you can change IP address for all adapters on your computer:
strComputer = "."
arrIPAddress = Array("192.168.66.66")
arrSubnetMask = Array("255.255.255.0")
arrGateway = Array("192.168.66.254")
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colNetAdapters = objWMIService.ExecQuery("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")
For Each objNetAdapter in colNetAdapters
errEnableStatic = objNetAdapter.EnableStatic(arrIPAddress, arrSubnetMask)
errGateways = objNetAdapter.SetGateways(arrGateway)
Next