SeanOTooleXR 0 Posted November 3, 2022 Share Posted November 3, 2022 Hello, We have an RMM software which we use to run patch management and deploy software using various script methods. We'd like to deploy ESET Management Agent to all our company computers via Datto (our RMM system) without having to install the agent manually one by one. Do ESET provide any PowerShell scripts in order to install the agent in the background without disrupting the end users? We already use ESET Endpoint Security so no need for the Antivirus itself. Cheers, Sean Link to comment Share on other sites More sharing options...
Administrators Marcos 5,257 Posted November 3, 2022 Administrators Share Posted November 3, 2022 Haven't tried it myself but something along this line might work: powershell -command "& {(New-Object System.Net.WebClient).DownloadFile('http://....../PROTECTAgentInstaller.bat', '%temp%\PROTECTAgentInstaller.bat');(Start-process '%temp%\PROTECTAgentInstaller.bat' -NoNewWindow)}" Link to comment Share on other sites More sharing options...
ESET Insiders rekun 43 Posted November 16, 2022 ESET Insiders Share Posted November 16, 2022 We use Datto ourselves, and have just created an AIO installer with agent only. then we create a component in Datto and execute it with following command EsetAgent.exe --silent --accepteula Link to comment Share on other sites More sharing options...
Ufoto 14 Posted November 17, 2022 Share Posted November 17, 2022 Does --silent --accepteula work for you guys? I tried several different installers with or without security product, I also tried --silent --accepteula --avr-disable, but none of them seem to work even if I try to run it locally from admin command prompt. There are no error messages, just nothing happens. Are these command line switches supposed to work with live installer exported from ESET Protect Cloud? Link to comment Share on other sites More sharing options...
ESET Insiders rekun 43 Posted November 17, 2022 ESET Insiders Share Posted November 17, 2022 Sorry, i use onprem Protect console Link to comment Share on other sites More sharing options...
ESET Staff MartinK 383 Posted December 12, 2022 ESET Staff Share Posted December 12, 2022 Unfortunately this specific scenarios are not documented, but there should be multiple ways how to deploy ESET Management Agent silently (i.e. preconfigured), and it mostly depends on mechanisms and capabilities of used solution. One can use: Create all-on-one package installer containing only ESET Management Agent - as an result, deployment of one executable (EXE) file is required in this case, witch specific commandline parameter to perform silent installation Create script-based live installer (BAT) in the console. Script does not require any parameters. Use so called GPO script mechanisms - in this case, MSI deployment is used, where parameters to the installer are provided as an external/separate configuration file which has to be copied to target machine side-by-side with standalone MSI installer of ESET Management Agent Use command-line based installation of ESET Management Agent using it's MSI installer. This requires to prepare command line parameters, which can be easily extracted from previously mentioned GPO installer configuration file. Link to comment Share on other sites More sharing options...
Recommended Posts