If you are planning for the VMware EUC Stack migration or upgrade and are in the middle of uninstalling the existing agents, look no further and here is the script that will allow you to uninstall all the agents and reboot the golden image towards the end. There is no need to remove individual agents one by one from the “Program and Features”; instead, sit back, relax and have a coffee!
VMware EUC Agents:
- VMware App Volumes Agent (Works on 2.x and 4.x/YYMM)
- VMware Horizon Client (Optional)
- VMware Dynamic Environment Manager Agent (Works on 9.x and YYMM)
- VMware Horizon Agent (Works on 7.x and 8.x/YYMM)
- VMware Tools (Works on 11.x)
Note – All the above testing is carried out on Windows 10 1909/Windows Server 2016 with PowerShell 5.1. The PowerShell module Uninstall-Package suppresses individual reboot and we perform the final reboot towards the end using the Restart-Computer module. (Reboot is required to complete the uninstallation operations.)
################################################################################# # Un-Install EUC Agents in the proper order for Golden Image # App Volumes Agent, Horizon Client(Optional), DEM, Horizon and VMware Tools # Suppressed auto Reboot the OS towards the end after un-installing all Agents. # Comment or Un-comment the Agent that does not apply to your environment # Author - Aresh Sarkari (Twitter - @askaresh) ################################################################################# #Un-installing VMware App Volumes Agent Write-Host "Un-installing the App Volumes Agent" -ForegroundColor Green Get-Package -Name 'App Volumes **' | Uninstall-Package sleep -Seconds 60 #Un-installing VMware Horizon Client #Write-Host "Un-installing the VMware Horizon Client" -ForegroundColor Green #Get-Package -Name 'VMware Horizon Cli**' | Uninstall-Package #sleep -Seconds 60 #Un-installing VMware Dynamic Environment Agent Write-Host "Un-installing the Dynamic Environment Agent" -ForegroundColor Green Get-Package -Name 'VMware Dynamic **' | Uninstall-Package sleep -Seconds 60 #Un-installing VMware Horizon Agent Write-Host "Un-installing the VMware Horizon Agent" -ForegroundColor Green Get-Package -Name 'VMware Horizon Ag**' | Uninstall-Package sleep -Seconds 60 #Un-installing VMware Tools Agent Write-Host "Un-installing the VMware Tools Agent" -ForegroundColor Green Get-Package -Name 'VMware Tools' | Uninstall-Package sleep -Seconds 60 # Restart the computer Write-Host "Restarting the computer post the VMware EUC Agents Un-install" -ForegroundColor Green Restart-Computer -Force
GitHub – scripts/vmwareeucagent-uninstall at master · askaresh/scripts (github.com)
Thanks to Hilko and Joel for reviewing the script and providing valuable feedback.
I hope you will find this script useful to uninstall the VMware EUC agents and never look back to remove individual programs under “Programs and Features”. A small request if you further enhance the script or make it more creative, I hope you can share it back with me?
Thanks,
Aresh Sarkari