Skip to content

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.

An interactive directory of PowerShell scripts.