Powershell to retrieve networked computer's installed programs

Get-CimInstance -ComputerName PC-NAME -ClassName win32_product -ErrorAction SilentlyContinue| Select-Object PSComputerName, Name, PackageName, InstallDate | Out-GridView

Comments