8 lines
162 B
PowerShell
8 lines
162 B
PowerShell
|
|
function Get-Software {
|
||
|
|
Get-CimInstance Win32_Product | Select-Object Name,
|
||
|
|
Version,
|
||
|
|
Vendor,
|
||
|
|
InstallDate,
|
||
|
|
InstallLocation,
|
||
|
|
InstallSource
|
||
|
|
}
|