#!/snap/bin/powershell <# .SYNTAX ./list-modules.ps1 .DESCRIPTION lists all PowerShell modules .LINK https://github.com/fleschutz/PowerShell .NOTES Author: Markus Fleschutz / License: CC0 #> try { Get-Module exit 0 } catch { write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" exit 1 }