PS-Commands/Scripts/Get-Software.psm1

8 lines
162 B
PowerShell
Raw Normal View History

2024-01-29 23:41:19 +03:00
function Get-Software {
Get-CimInstance Win32_Product | Select-Object Name,
Version,
Vendor,
InstallDate,
InstallLocation,
InstallSource
}