Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Web Server MIME MapsContent of List Web Server MIME Maps.vbsMD5 Hash: E5C6C9999445953595592EF467DCD8DF |
||
' Description: Lists all Web server MIME map extensions and types.
strComputer = "." Set objWMIService = GetObject _ ("winmgmts:{authenticationLevel=pktPrivacy}\\" _ & strComputer & "\root\microsoftiisv2") Set colItems = objWMIService.ExecQuery("Select * from IIsWebServerSetting") For Each objItem in colItems For i = 0 to Ubound(objItem.MimeMap) Wscript.Echo "Extension: " & objItem.MimeMap(i).Extension Wscript.Echo "MIME Type: " & objItem.MimeMap(i).MimeType Wscript.Echo Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |