4 lines
110 B
PowerShell
4 lines
110 B
PowerShell
# Gets a list of installed programs
|
|
|
|
Get-WmiObject -Class Win32_Product -Property Name | Select-Object name
|