Update list-modules

This commit is contained in:
Markus Fleschutz 2022-12-28 14:13:34 +01:00
parent d943498eaa
commit 7f044f1a08

View File

@ -1,15 +1,15 @@
<#
.SYNOPSIS
Lists all PowerShell modules
Lists PowerShell modules
.DESCRIPTION
This PowerShell script lists all installed PowerShell modules.
This PowerShell script lists the installed PowerShell modules.
.EXAMPLE
PS> ./list-modules
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Computer, Add-Content, Checkpoint-Computer...}
Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Add-Member, Add-Type, Clear-Variable...}
Name Version ModuleType ExportedCommands
---- ------- ---------- ----------------
Microsoft.PowerShell.Management 3.1.0.0 Manifest {Add-Computer, Add-Content, Checkpoint-Computer...}
...
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -17,9 +17,9 @@
#>
try {
Get-Module | Format-Table
Get-Module | Format-Table -property Name,Version,ModuleType,ExportedCommands
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
}