Skip to content

Instantly share code, notes, and snippets.

@lukesampson
Last active August 21, 2020 13:16
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukesampson/5778559 to your computer and use it in GitHub Desktop.
Save lukesampson/5778559 to your computer and use it in GitHub Desktop.
A powershell script to replicate some of the `at` command for Windows Server 2012.
$usage = "usage: runat (time) (command)
e.g. runat 2am shutdown -r -f -c ""restart""";
function esc($s) { [regex]::escape($s) }
$t = $args[0] # time
if($args.length -gt 1) { # command
$c = $args[1..($args.length-1)] | % { if($_ -match '\s') { "`"$_`"" } else { $_ } }
$c = [string]::join(' ', $c)
}
try { $d = get-date $t } # parse time
catch { echo "error: invalid time: '$t'"; $usage; exit 1 }
if($d -lt [DateTime]::Now) { $d = $d.AddDays(1) }
if($d -lt [DateTime]::Now) { echo "error: invalid time: '$t'"; $usage; exit 1 }
if(!$d -or !$c) { $usage; exit 1; }
# /query for unused task name (returns exit code 1 when not found)
$tn='';
for($i=1;$true;$i++) {
& schtasks /query /tn "runat$i" 2>&1 | out-null
if($lastexitcode -eq 1) { $tn = "runat$i"; break }
}
# coerce system date format for schtasks, doubling-up 'd' and 'M'
$df = (get-culture).datetimeformat.shortdatepattern -replace '(?<![Md])(M|d)(?!\1)', '$1$1'
# create the task
& schtasks /create /ru system /rl highest /sc once /tn $tn /tr `"$($c -replace '"', '\"')`" /st $d.tostring("hh:mm") /sd $d.tostring($df)
if($lastexitcode -eq 0) { echo "Task will run '$c' at $d"; exit 0 }
exit 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment