New article
Recently updated
Uninstalling a Per-User installation
Who is this article for?Administrators who want to uninstall a Per-User instance of Mail Manager.
Elevated permissions are required.
This article outlines the process of uninstalling a user installation.
1. Uninstalling
This example script can be used to uninstall the Per-User installer of Mail Manager.
@ECHO OFF &SETLOCAL
set productcode=
REM FOR per-machine use "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\28Hands\Mail Manager\installation"
FOR /F "tokens=2,*" %%A IN ('REG QUERY "HKEY_CURRENT_USER\Software\Mail Manager\installation" /v productcode') DO SET productcode=%%B
ECHO productcode %productcode%
if "%productcode%"=="" echo can't determine MM productcode
if NOT "%productcode%"=="" msiexec /x %productcode%
set productcode=
:end
Important Note: With an extra /quit argument, the uninstall can be made silent or /passive can show the GUI but make it ‘interactionless’.