欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

iis6+javascript Add an Extension File_javascript技巧

程序员文章站 2022-03-31 17:35:16
...
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