Skip to main content
All CollectionsPolicies and Agent ConfigurationsGeneral
How to uninstall the VSA 10 agent remotely?
How to uninstall the VSA 10 agent remotely?
D
Written by Dan Wixon
Updated over a week ago

Please run this PS script as an automated task from the VSA 10 WebApp, but note, that this script will not work if the VSA 10 agent is installed only for one user (in order to make this script to work if the agent is installed for one user, then you will need to configure the PowerShell impersonation using that user and then this script will work):

$result = gwmi win32_product -filter "Name LIKE 'VSAX'" | select IdentifyingNumber;
[string] $a = $result.identifyingNumber;
msiexec.exe /X $a /qn
Remove-Item -Path "HKLM:\SOFTWARE\MMSOFT Design" -Recurse
Write-Host "Uninstallation completed successfully"

This script will uninstall the VSA 10 agent and delete the configuration for the VSA 10 agent.

And finally, you will need to delete this system from monitored systems (for Pro or for Team).

Or you can uninstall the VSA 10 agent using the VSA 10 mobile app -> Applications -> VSAX -> tap on the name VSAX and select option 'Uninstall'. Note, this will not delete the configuration for the VSA 10 agent from the system.

Did this answer your question?