A team member requested a script to uninstall the ControlUp agent without interrupting the user’s session and without the need for a reboot. Another member shared a script and a ControlUp support page for guidance. The script can be found at https://support.controlup.com/docs/i-can-t-remove-the-controlup-agent-msi-installed
Read the entire ‘Uninstalling ControlUp Agent with a Script’ thread below:
Hi Team,
Is there a script that can be share with me that will silently uninstall the ControlUp agent(s) from a laptop without interrupting the users session and that doesn’t require a reboot? I’ve been tasked to remove it from a machine that’s used by someone no longer with our company.
You can try this
$Command = "c:\Windows\System32\msiexec.exe"
### to fully uninstall Agent Manager ###
$Params = "/x MSI GUID HERE /norestart /qn EDXPASSWORD=Password here if you’ve configured one
$ParamsArray = $Params.Split(" ")
& "$Command" $ParamsArray
### to fully uninstall SIP Agent ###
$Params = "/x MSI GUID here /norestart /qn"
$ParamsArray = $Params.Split(" ")
& "$Command" $ParamsArray
Also check out this page on ControlUp’s website
https://support.controlup.com/docs/i-can-t-remove-the-controlup-agent-msi-installed
Thanks Dustin!
thanks Dustin
Continue reading and comment on the thread ‘Uninstalling ControlUp Agent with a Script’. Not a member? Join Here!
Categories: All Archives, ControlUp Scripts & Triggers
