Applications

List Installed Programs

gwmi win32_product | ft name, version, ident*

Uninstall Applications

WMIC Uninstall

Check list of applications
wmic product where "name like '%java%'" get name
Uninstall
wmic product where "name like '%Java%' or name like '%JRE%'" call uninstall

 

Powershell Uninstall

Check list of applications
Get-Package -ProviderName Programs -IncludeWindowsInstaller -Name 'ProgramNameHere'
Uninstall
Uninstall-Package -ProviderName Programs -IncludeWindowsInstaller -Name 'ProgramNameHere'