WSH Script to remove un-needed IIS Script-Mappings using ADS
来源:岁月联盟
时间:2003-07-11
Here is the code
Dim strExt
Dim myValue
dim strNothing
dim strBuild
dim i
dim iValue
Set myValue = GetObject("IIS://LocalHost/W3SVC/1/root")
'Returns an array multi valued list
'Puts the values in a local array variable myArray
myArray = myValue.Get("ScriptMaps")
'Loops through building a string
'based on myArray list of values
For i = 0 To UBound(myArray)
iValue = InStr(myArray(i), ",")
strExt = Left(myArray(i), iValue - 1)
Select Case strExt
Case ".idq", ".ida", ".printer", ".htw", ".htr"
'Builds a bogus string of un-needed mappings
strNothing = strNothing & myArray(i)
Case Else
'Builds a string of mappings with
'the # as the delimiter
strBuild = strBuild & myArray(i) & "#"
End Select
Next
'Returns a 1-dimensinonal array based
'on the string i build existing values
strBuild = split(strBuild, "#")
'Clears current Script Mappings in the metabase
myValue.Put "ScriptMaps", VBNull
'Inserts values without un-needed mappings into metabase
myValue.Put "ScriptMaps", strBuild
myValue.SetInfo
set myValue = Nothing