From 834db6b4a0b0d40e3da562374d6800c5c0a54e53 Mon Sep 17 00:00:00 2001 From: Christophe CREMON Date: Fri, 6 Jul 2012 12:06:30 +0200 Subject: [PATCH] PowerScheduledTasks Documentation --- PowerScheduledTasks/README | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 PowerScheduledTasks/README diff --git a/PowerScheduledTasks/README b/PowerScheduledTasks/README new file mode 100644 index 0000000..d328698 --- /dev/null +++ b/PowerScheduledTasks/README @@ -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 \ No newline at end of file