ActivClient Uninstallation Methods
Using Apps and Features
To uninstall ActivClient:
-
Right-click the Start button.
-
Select Apps and Features from the list.
-
Find and select ActivClient in the list.
-
Click Uninstall.
Using Programs and Features
To uninstall ActivClient:
-
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
To uninstall ActivClient, 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 Code:
-
ActivClient 8.4: {62465596-C2C9-466F-AA67-7E63CAAB0A04}
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
You can automate the uninstallation of ActivClient using a PowerShell script. This script will locate the Product Code and uninstall the corresponding version of ActivClient:
# Find the Product Code
$ProductCode = Get-Package *activclient* | select -ExpandProperty fastpackagereference
# Uninstall Application
msiexec /x $ProductCode