Uninstall EAA Client
Uninstall EAA Client for Windows users
Prerequisite:
Quit EAA Client.
Users can remove the EAA Client by themselves following below procedure.
-
Go to Start > Windows Settings and click Apps.
-
Select Enterprise Application Access Client and click Uninstall.
-
Follow the pop-up window to finish uninstall.
To allow the uninstallation, click Yes. -
Click Finish.
Uninstall EAA Client for Windows users on command line
Prerequisite:
Quit EAA Client.
-
Open the power-shell with admin user permissions.
-
Execute the uninstall script 'uninstall.exe' from the path, "C:\Program Files\EAAClient\uninstall.exe"
Uninstall the EAA Client for MacOS users
User, or you, can uninstall the EAA Client from a MacOS computer manually. You can also use an automation tool to script the commands used for the clean-up process. Follow any of these procedures:
Manually uninstall EAA Client from MacOS
Prerequisite:
Quit EAA Client.
-
Go to Finder > Applications.
-
Find EAAClient application and drag it to the Trash icon on the dock.
-
Enter your computer username and password to proceed with the uninstall operation.
-
Click OK.
-
To remove the temporary files from your computer run the following commands in a terminal window:
sudo rm -rf /opt/wapp
sudo rm -rf ~/Library/Application\ Support/EAAClient
sudo rm -f /Library/LaunchAgents/net.eaacloop.uninstall.plist
sudo rm -f /private/tmp/eaacTray*
sudo rm -f /private/tmp/bitrock_installer.log
sudo rm -f /private/tmp/eaa-post-install
Automatically uninstall EAA Client from MacOS
You can use an automation tool to uninstall EAA Client, or create a script to uninstall it from MacOS, and to clean-up temporary files.
- Shut down the EAA Client with the following command in your script:
//shuts down EAA Client completely
sudo pkill EAAClient
- To remove the temporary files add these commands to your script:
//Removes resources, binary files, and temporary files
sudo rm -rf /Applications/EAAClient.app
sudo rm -rf /opt/wapp
sudo rm -rf ~/Library/Application\ Support/EAAClient
sudo rm -f /Library/LaunchAgents/net.eaacloop.uninstall.plist
sudo rm -f /private/tmp/eaacTray*
sudo rm -f /private/tmp/bitrock_installer.log
sudo rm -f /private/tmp/eaa-post-install
There might be also other unix commands that can be used in your script to remove and cleanup the files.
Updated over 2 years ago