PowerShell/scripts/list-tasks.ps1

26 lines
731 B
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2021-10-20 12:47:58 +02:00
Lists all scheduled tasks
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script lists all scheduled tasks.
2021-07-13 21:10:02 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./list-tasks.ps1
2021-09-29 21:50:10 +02:00
2024-09-10 20:16:07 +02:00
TASKNAME TASKPATH STATE
-------- -------- -----
.NET Framework NGEN v4.0.30319 \Microsoft\Windows\.NET Framework\ Ready
2021-09-29 21:50:10 +02:00
...
2021-07-13 21:10:02 +02:00
.LINK
2024-09-10 20:16:07 +02:00
https://github.com/fleschutz/PowerShell0
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-03-27 10:02:38 +01:00
#>
try {
2024-09-10 20:16:07 +02:00
Get-ScheduledTask | Format-Table -property @{e='TASKNAME';width=40},@{e='TASKPATH';width=55},@{e='STATE';width=10}
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-03-27 10:02:38 +01:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-03-27 10:02:38 +01:00
exit 1
}