Installed Software
Enumerate
Simple Listing:
More Details:
Export to File:
Install / Uninstall
Executable (.exe) Installers
<InstallerName>.exe
Runs an executable installer with its default configuration.
<InstallerName>.exe /?
Displays available command-line options for the executable installer.
<InstallerName>.exe /silent
Installs the software silently without user interaction (specific options vary by installer).
<UninstallerName>.exe
Runs an executable uninstaller with its default configuration.
<UninstallerName>.exe /?
Displays available command-line options for the executable uninstaller.
<UninstallerName>.exe /silent
Uninstalls the software silently without user interaction (specific options vary by uninstaller).
Windows Installer (.msi) Packages
msiexec /i <PackageName>.msi
Installs an MSI package.
msiexec /i <PackageName>.msi /qn
Installs an MSI package quietly without user interface.
msiexec /x <PackageName>.msi
Uninstalls an MSI package.
msiexec /x <PackageName>.msi /qn
Uninstalls an MSI package quietly without user interface.
msiexec /x {<ProductCode>}
Uninstalls an MSI package using its product code.
Installs an MSI package with a transform file to customize the installation.
PowerShell
Install-Package -Name <PackageName>
Installs a package from a package provider
Start-Process -FilePath <InstallerName>.exe -ArgumentList '/silent'
Runs an executable installer quietly.
Start-Process -FilePath msiexec -ArgumentList '/i <PackageName>.msi /qn'
Installs an MSI package quietly.
Uninstall-Package -Name <PackageName>
Uninstalls a package from a package
Start-Process -FilePath <UninstallerName>.exe -ArgumentList '/silent'
Runs an executable uninstaller quietly.
Start-Process -FilePath msiexec -ArgumentList '/x <PackageName>.msi /qn'
Uninstalls an MSI package quietly.
Windows Package Manager (winget)
winget install <PackageName>
Installs package
winget uninstall <PackageName>
Uninstalls package
Uninstall applications that begin with Google
Last updated
Was this helpful?