iis6+javascript Add an Extension File
人气:0
Description
Adds the BITS_Update.dll extension file.
strComputer = "."
Set objWMIService = GetObject _
("winmgmts:{authenticationLevel=pktPrivacy}\\" _
& strComputer & "\root\microsoftiisv2")
Set colItems = objWMIService.ExecQuery _
("Select * From IIsWebService")
For Each objItem in colItems
objItem.AddExtensionFile _
"C:\WINDOWS\system32\bits_update.dll", False, _
"BITSEXT", True, "BITS Update"
Next
Adds the BITS_Update.dll extension file.
复制代码 代码如下:
strComputer = "."
Set objWMIService = GetObject _
("winmgmts:{authenticationLevel=pktPrivacy}\\" _
& strComputer & "\root\microsoftiisv2")
Set colItems = objWMIService.ExecQuery _
("Select * From IIsWebService")
For Each objItem in colItems
objItem.AddExtensionFile _
"C:\WINDOWS\system32\bits_update.dll", False, _
"BITSEXT", True, "BITS Update"
Next
加载全部内容