Skip to content

Commit

Permalink
PowerScheduledTasks Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe CREMON committed Jul 6, 2012
1 parent 3607807 commit 834db6b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions PowerScheduledTasks/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Release Notes
PowerShell Module that allows you to control Windows Scheduled Tasks

Requirements :

PowerShell 2.0
Schtasks.exe

For Windows Vista Systems and above, you can use these modules : http://code.msdn.microsoft.com/PowerShellPack


USAGE

List Scheduled Tasks => Get-ScheduledTask
Look for a specific Scheduled Task => Get-ScheduledTask -TaskName Task1 (support regular expressions)

You can also connect to a remote computer, here are some examples :
Start a Scheduled Task => Start-ScheduledTask -TaskName Task1 -HostName Computer1
Stop a Scheduled Task => Stop-ScheduledTask -TaskName Task1 -HostName Computer1


You can pipe Commands like this :

Stop All Scheduled Tasks => Get-ScheduledTask | Stop-ScheduledTask



List of Available Commands :

Get-ScheduledTask
Start-ScheduledTask
Stop-ScheduledTask

0 comments on commit 834db6b

Please sign in to comment.