Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Enable IPSec on a Network AdapterContent of Enable IPSec on a Network Adapter.vbsMD5 Hash: 032318D881462CB1BF73E1B3B9248934 |
||
' Description: Enables IP security for a network adapter. In this script, all TCP and UDP ports as well as all IP protocols are allowed; hence the value 0 is passed to the EnableIPSec method in each case. If only specific ports or protocols are allowed, these should be passed in the form of arrays.
On Error Resume Next Const ALLOW_ALL = 0 strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colNetCards = objWMIService.ExecQuery _ ("Select * From Win32_NetworkAdapterConfiguration Where IPEnabled = True") For Each objNetCard in colNetCards arrPermittedTCPPorts = Array(ALLOW_ALL) arrPermittedUDPPorts = Array(ALLOW_ALL) arrPermittedIPProtocols = Array(ALLOW_ALL) objNetCard.EnableIPSec arrPermittedTCPPorts, arrPermittedUDPPorts, _ arrPermittedIPProtocols Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |