mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-05-28 22:27:51 +02:00
Updated list-tasks.ps1
This commit is contained in:
parent
1243fced11
commit
36da57b4c5
@ -6,18 +6,18 @@
|
|||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-tasks.ps1
|
PS> ./list-tasks.ps1
|
||||||
|
|
||||||
TaskName State TaskPath
|
TASKNAME TASKPATH STATE
|
||||||
-------- ----- --------
|
-------- -------- -----
|
||||||
.NET Framework NGEN v4.0.30319 Ready \Microsoft\Windows\.NET Framework\
|
.NET Framework NGEN v4.0.30319 \Microsoft\Windows\.NET Framework\ Ready
|
||||||
...
|
...
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell0
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz | License: CC0
|
Author: Markus Fleschutz | License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Get-ScheduledTask | Format-Table -property TaskName,State,TaskPath
|
Get-ScheduledTask | Format-Table -property @{e='TASKNAME';width=40},@{e='TASKPATH';width=55},@{e='STATE';width=10}
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user