PowerShell/docs/list-tasks.md

48 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *list-tasks.ps1* Script
===========================
2022-11-17 20:02:26 +01:00
list-tasks.ps1
2021-10-17 14:33:27 +02:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-10-17 14:33:27 +02:00
```powershell
2021-10-21 16:04:22 +02:00
2021-10-17 14:33:27 +02:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
Lists all scheduled tasks
.DESCRIPTION
This PowerShell script lists all scheduled tasks.
.EXAMPLE
2023-08-06 21:36:33 +02:00
PS> ./list-tasks.ps1
2022-11-17 20:02:26 +01:00
2024-11-08 12:35:11 +01:00
TASKNAME TASKPATH STATE
-------- -------- -----
.NET Framework NGEN v4.0.30319 \Microsoft\Windows\.NET Framework\ Ready
2022-11-17 20:02:26 +01:00
...
.LINK
2024-11-08 12:35:11 +01:00
https://github.com/fleschutz/PowerShell0
2022-11-17 20:02:26 +01:00
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
2024-11-08 12:35:11 +01:00
Get-ScheduledTask | Format-Table -property @{e='TASKNAME';width=40},@{e='TASKPATH';width=55},@{e='STATE';width=10}
2022-11-17 20:02:26 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-11-20 11:52:20 +01:00
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:57)*