站长资源网络编程

iis6+javascript Add an Extension File

整理:jimmy2026/8/5浏览2
简介Description Adds the BITS_Update.dll extension file. 复制代码 代码如下:strComputer = "." Set objWMIService = GetObject _ ("winmgmts:{authenticationLevel=
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