fetch-installed-programs
· 153 B · Text
Surowy
# Fill in the computer name below
$ComputerName =
Get-WmiObject win32_product -ComputerName $ComputerName | Sort-Object | select Vendor, Name, version
| 1 | # Fill in the computer name below |
| 2 | |
| 3 | $ComputerName = |
| 4 | |
| 5 | Get-WmiObject win32_product -ComputerName $ComputerName | Sort-Object | select Vendor, Name, version |