PS-Commands/Scripts/Get-Software.psm1
2024-01-29 23:41:19 +03:00

8 lines
No EOL
162 B
PowerShell

function Get-Software {
Get-CimInstance Win32_Product | Select-Object Name,
Version,
Vendor,
InstallDate,
InstallLocation,
InstallSource
}