Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Exchange Schedule Interval InformationContent of List Exchange Schedule Interval Information.vbsMD5 Hash: 12D932595EBE054E91931996AD656DF7 |
||
' Description: Returns Microsoft Exchange 2003 schedule interval information.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & _ "\ROOT\MicrosoftExchangeV2") Set colItems = objWMIService.ExecQuery _ ("Select * from Exchange_ScheduleInterval") For Each objItem in colItems Wscript.Echo "Start time: " & objItem.StartTime Wscript.Echo "Stop time: " & objItem.StopTime Wscript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |