mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-01 19:58:17 +02:00
Update list-modules
This commit is contained in:
parent
d943498eaa
commit
7f044f1a08
@ -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])"
|
||||||
|
Loading…
Reference in New Issue
Block a user