list-powershell-modules
Lists the PowerShell modules
#Requires -Version 5.1
try {
Get-Module | Format-Table -property Name,Version,ModuleType,ExportedCommands
exit 0
} catch {
throw
}This script has no configurable parameters.
Lists the PowerShell modules
#Requires -Version 5.1
try {
Get-Module | Format-Table -property Name,Version,ModuleType,ExportedCommands
exit 0
} catch {
throw
}This script has no configurable parameters.