Multi-User License Deployment on Windows

 Attention — This page presents content from an old edition. Consult the documentation for the current release instead.

Multi-User License Deployment on Windows / 5 - Automated Deployment by GPO / 6 - Uninstalling

5.6 - Uninstalling

The following steps are required to uninstall Antidote 10:

  1. Ensure that the conditions are met (see Prerequisites).
  2. Use GPO to uninstall the client portion on the workstations.
  3. Only delete the shared Antidote 10 folder after the clean-up of Antidote (deletion of registry keys) has been completed in each of the user accounts of the workstations on which it was installed.

    Uninstalling Antidote on a client workstation adds a windows/run registry key to clean up user accounts (delete registry keys) the next time each user logs in.

For example, here is the content of a script that uninstalls Antidote 10. Note that there are cookie files, which are necessary to prevent unnecessary uninstalls each time the script is run.

@echo OFF
rem Warning, this script is encoded page DOS-850

echo Uninstalling Antidote 10 ...

set LOCAL_PATH=C:\Program Files (x86)\Druide\Antidote 10
mkdir "%LOCAL_PATH%"

if exist "%LOCAL_PATH%\TemoinDesAntidote" goto OK_ANTIDOTE
msiexec /qn /x "{134E0741-C569-4E8C-A7FC-7F95B14CAAB1}" /l*v "%LOCAL_PATH%\logDesAntidote.txt"
echo . > "%LOCAL_PATH%\TemoinDesAntidote"
:OK_ANTIDOTE

if exist "%LOCAL_PATH%\TemoinDesModuleFrancais" goto OK_MODULE_FR
msiexec /qn /x "{134E0741-C569-4E8C-A7FC-7F95B14CAAB2}" /l*v "%LOCAL_PATH%\logDesModuleFr.txt"
echo . > "%LOCAL_PATH%\TemoinDesModuleFrancais"
:OK_MODULE_FR

if exist "%LOCAL_PATH%\TemoinDesEnglishModule" goto OK_MODULE_EN
msiexec /qn /x "{134E0741-C569-4E8C-A7FC-7F95B14CAAB3}" /l*v "%LOCAL_PATH%\logDesModuleEn.txt"
echo . > "%LOCAL_PATH%\TemoinDesEnglishModule"
:OK_MODULE_EN

if exist "%LOCAL_PATH%\TemoinDesConnectix" goto OK_CONNECTIX
msiexec /qn /x "{134E0741-C569-4E8C-A7FC-7F95B14CAAB4}" /l*v "%LOCAL_PATH%\logDesConnectix.txt"
echo . > "%LOCAL_PATH%\TemoinDesConnectix"
:OK_CONNECTIX