Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Scheduled TasksContent of List Scheduled Tasks.ps1MD5 Hash: 7114FF5DAC880DF6795DA24E7E345296 |
||
$strComputer = "."
$colItems = get-wmiobject -class "Win32_ScheduledJob" -namespace "root\CIMV2" ` -computername $strComputer foreach ($objItem in $colItems) { write-host "Caption: " $objItem.Caption write-host "Command: " $objItem.Command write-host "Days Of Month: " $objItem.DaysOfMonth write-host "Days Of Week: " $objItem.DaysOfWeek write-host "Description: " $objItem.Description write-host "Elapsed Time: " $objItem.ElapsedTime write-host "Installation Date: " $objItem.InstallDate write-host "Interact With Desktop: " $objItem.InteractWithDesktop write-host "Job ID: " $objItem.JobId write-host "Job Status: " $objItem.JobStatus write-host "Name: " $objItem.Name write-host "Notify: " $objItem.Notify write-host "Owner: " $objItem.Owner write-host "Priority: " $objItem.Priority write-host "Run Repeatedly: " $objItem.RunRepeatedly write-host "Start Time: " $objItem.StartTime write-host "Status: " $objItem.Status write-host "Time Submitted: " $objItem.TimeSubmitted write-host "Until Time: " $objItem.UntilTime write-host } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |