Uninstalling Agents
Agents cannot be uninstalled via the installation wizard. Choose one of the following procedures:
Uninstalling agents via command line
- Stop the agent services vdog CompareAgent and vdog UploadAgent.
- Delete the vdog CompareAgent service in the Command promt with the command
SCDelete: sc delete "vdog compareagent"
. - Delete the service vdog UploadAgent in the Command promt with the command
SCDelete: sc delete "vdog uploadagent"
. - Delete the directories
...\vdAgentArchive
andC:\Program Files (x86)\vdogAgents
.
Uninstalling agents via a BAT script file
-
Copy this content in a BAT file. If the directories of the application are not the default directories, change those.
REM Stopping the agent services net stop "VDog CompareAgent" net stop "VDog UploadAgent" timeout 1 /nobreak REM Deleting the agent services sc delete "VDog CompareAgent" sc delete "VDog UploadAgent" timeout 1 /nobreak REM Deleting the agent directories rd "C:\Program Files (x86)\vdogAgents" /s /q rd "D:\vdAgentArchive" /s /q
-
Save the file and execute it.