Files
management-scripts/Get-InstalledSoftware.ps1
T

3 lines
209 B
PowerShell
Raw Normal View History

2021-07-23 13:50:38 -04:00
$FILE = "${SystemDrive}\InstalledSoftware.csv"
Get-WmiObject -Class Win32_Product | Sort-Object Name | Select Name,Vendor,Version | Where Name -NotLike "" | Export-Csv -Path $FILE -NoTypeInformation -Force