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