ActivClient Uninstallation Methods
Using Apps & features
-
Right-click the Start button.
-
Select Apps and Features.
-
Find and select ActivClient in the list.
-
Click Uninstall.
Using Programs and Features
-
Click the Start button.
-
Type "Control Panel" and open it.
-
Select Programs and Features. (If you don’t see the Programs and Features settings, change View by to “Small icons”).
-
Select ActivClient from the list.
-
Click Uninstall.
Using the Original Installer MSI
Use this command:
msiexec /x "install.msi"
Using SCCM or MSIEXEC With the Application Product Code
You can uninstall ActivClient either locally or remotely from a group of computers with the Microsoft System Center Configuration Manager (SCCM) using the following command:
msiexec /x "<ProductCode>"
Product Codes:
-
ActivClient 8.2: {EF82496E-1BD5-4ABC-8F38-D9EDD48DB7C1}
-
ActivClient 8.2.1: {4422615A-B079-4CE0-B6BC-7301BD5472E9}
For previous versions of ActivClient, refer to the corresponding administration guide.
For more information about SCCM, see Deploying Using Microsoft System Center Configuration Manager.
Automation Using PowerShell
The uninstallation process can be automated using a PowerShell script, which will find the Product Code and uninstall the corresponding ActivClient version:
# Find the Product Code
$ProductCode = Get-Package *activclient* | select -ExpandProperty fastpackagereference
# Uninstall Application
msiexec /x $ProductCode