Welcome 微信登录

首页 / 脚本样式 / JavaScript / iis6+javascript Add an Extension File

Description

Adds the BITS_Update.dll extension file. 

复制代码 代码如下:
strComputer = "."
Set objWMIService = GetObject _
    ("winmgmts:{authenticationLevel=pktPrivacy}\" _
        & strComputer & " ootmicrosoftiisv2")

Set colItems = objWMIService.ExecQuery _
    ("Select * From IIsWebService")

For Each objItem in colItems
    objItem.AddExtensionFile _
        "C:WINDOWSsystem32its_update.dll", False, _
            "BITSEXT", True, "BITS Update"
Next