PowerShell/Scripts/list-user-groups.ps1

16 lines
348 B
PowerShell
Raw Normal View History

2021-02-09 19:30:45 +01:00
#!/bin/powershell
2021-02-06 12:43:04 +01:00
<#
.SYNTAX ./list-user-groups.ps1
2021-02-06 13:50:21 +01:00
.DESCRIPTION lists the user groups on the local computer
2021-02-06 12:43:04 +01:00
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
Get-LocalGroup
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}