Windows powershell commands
List all software installed on system:
Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize
Get-WmiObject -Class Win32_Product | Select-Object -Property Name
List processes:
get-process