# Applications

# List Installed Programs

```shell
gwmi win32_product | ft name, version, ident*
```

# Uninstall Applications

## WMIC Uninstall

##### Check list of applications

```bash
wmic product where "name like '%java%'" get name
```

##### Uninstall

```bash
wmic product where "name like '%Java%' or name like '%JRE%'" call uninstall
```

## Powershell Uninstall

##### Check list of applications

```powershell
Get-Package -ProviderName Programs -IncludeWindowsInstaller -Name 'ProgramNameHere'
```

##### Uninstall

```powershell
Uninstall-Package -ProviderName Programs -IncludeWindowsInstaller -Name 'ProgramNameHere'
```