Add a File Extension to the IIS Compression Scheme
You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.
Example(s)
Const ADS_PROPERTY_UPDATE = 2 strComputer = "LocalHost" Set objIIS = GetObject _ ("IIS://" & strComputer & "/W3SVC/Filters/Compression/gzip") arrExtensions = objIIS.HcFileExtensions i = Ubound(arrExtensions) i = i + 1 Redim Preserve arrExtensions(i) arrExtensions(i) = "hta" objIIS.PutEx ADS_PROPERTY_UPDATE, "HcFileExtensions", arrExtensions objIIS.SetInfo