Add list-tasks.ps1

This commit is contained in:
Markus Fleschutz
2021-03-27 10:02:38 +01:00
parent 0d3f421d3a
commit 6fdc479d96
3 changed files with 17 additions and 0 deletions

15
Scripts/list-tasks.ps1 Executable file
View File

@ -0,0 +1,15 @@
#!/bin/powershell
<#
.SYNTAX ./list-tasks.ps1
.DESCRIPTION lists all Windows scheduler tasks
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
get-scheduledTask
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}