PowerShell/Scripts/list-services.ps1

22 lines
360 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
list-services.ps1
.DESCRIPTION
Lists the services on the local computer
.EXAMPLE
PS> .\list-services.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2021-04-07 15:42:56 +02:00
#>
try {
Get-Service
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-04-07 15:42:56 +02:00
exit 1
}