mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
Update list-modules
This commit is contained in:
parent
d943498eaa
commit
7f044f1a08
@ -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
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user