-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christophe CREMON
committed
Jul 6, 2012
1 parent
3607807
commit 834db6b
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |