Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify Web Site Document PropertiesContent of Modify Web Site Document Properties.vbsMD5 Hash: DCA20CDD87A3CFC0A82A28C907622FE0 |
||
' Description: Demonstration script that modifies default Web site document metabase properties on an IIS server.
strComputer = "." Set objWMIService = GetObject _ ("winmgmts:{authenticationLevel=pktPrivacy}\\" _ & strComputer & "\root\microsoftiisv2") Set colItems = objWMIService.ExecQuery _ ("Select * from IIsWebServiceSetting") For Each objItem in colItems strDocs = objItem.DefaultDoc objItem.DefaultDoc = strDocs & ",index.htm" objItem.DefaultDocFooter = "FILE:c:\config\footer.htm" objItem.EnableDefaultDoc = True objItem.EnableDocFooter = True objItem.Put_ Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |