Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify Web Service Logging OptionsContent of Modify Web Service Logging Options.vbsMD5 Hash: 310DD3C93E2582EEA635F08BF443771C |
||
' Description: Demonstration script that modifies Web service logging options 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 objItem.LogFileDirectory = "C:\Logs" objItem.LogFileLocaltimeRollover = True objItem.LogFilePeriod = 2 objItem.LogFileTruncateSize = 1000000 objItem.Put_ Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |