Deploying FastViewer agent with Empirum & Commandline
Goal
If you want to roll out FastViewer Desktop with /replaceexisting=true and want it done automatically in Empirum or CMD you can use the scripts bellow!
After completing this how-to you will have the FastViewer Desktop enrolled without changing any of the the individual settings of the machine.
Empirum
Batch Script Example (the file does need to be in the temp folder):
callhidden net stop FastViewerRemoteservice
callhidden net stop FastViewerRemoteProxy
callhidden cmd /c taskkill /F /IM FastTray.exe /T
callhidden
"C:\Temp\Matrix42RemoteAssistanceAgentSetup.exe" /VERYSILENT /NORESTART /replaceexisting=true /DIR="%APP%"
CMD
Batch Script Example (the file does need to be in the temp folder):
@echo off
REM Stop services
net stop FastViewerRemoteservice
net stop FastViewerRemoteProxy
REM Kill the FastTray.exe process
taskkill /F /IM FastTray.exe /T
REM Run the setup executable with the specified parameters
"C:\Temp\Matrix42RemoteAssistanceAgentSetup.exe" /VERYSILENT /NORESTART /replaceexisting=true /DIR="%APP%"