Skip to content

Instantly share code, notes, and snippets.

@Y-LyN-10
Last active February 6, 2020 12:14
Show Gist options
  • Save Y-LyN-10/c6fb193a3ddfe8dc08eefb323d12ad9e to your computer and use it in GitHub Desktop.
Save Y-LyN-10/c6fb193a3ddfe8dc08eefb323d12ad9e to your computer and use it in GitHub Desktop.
Powershell - Schedule a task after 1 minute
SCHTASKS /Create /TN "Task Name" /TR something.exe /RU SYSTEM /RL HIGHEST /SC once /ST (Get-Date -Date ((Get-Date) + $(New-TimeSpan -Minutes 1)) -Format "HH:mm")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment