- 10 Apr 2025
- 1 Minute to read
- Print
- DarkLight
- PDF
EPC Silent Installer
- Updated on 10 Apr 2025
- 1 Minute to read
- Print
- DarkLight
- PDF
The silent installer gives a method of pushing out the install of the EPC to scale with the use of a software push system, such as SCOM. Here are the samples of the batch file using the silent installer.
set host=NS-%COMPUTERNAME% echo %host% Msg * "Installing Nectar End-Point Client 3.8 (US Controller)"
NectarEPClientInstaller64-3.x.x.exe /s /v"/qn AGENT_NAME=yourname AGENT_ORGID=yourorg AGENT_GRPID=yourgroup MGMT_DOMAIN_PASS=yourdomainpassword MGMT_DOMAIN_NAME=yourdomainname CONTROLLER_CSV=10.1.0.64:443 CONTROLLER_PORT_ISFIXED=TRUE AGENT_LOG_LEVEL=INFO"
NectarEPClientInstaller64-3.x.x.exe /s /v"/qn AGENT_NAME=yourname AGENT_ORGID=yourorg AGENT_GRPID=yourgroup MGMT_DOMAIN_PASS=yourdomainpassword MGMT_DOMAIN_NAME=yourdomainname CONTROLLER_CSV=10.1.0.64:443 CONTROLLER_PORT_ISFIXED=TRUE AGENT_LOG_LEVEL=INFO"
Command Explanation:
NectarEPClientInstaller64-3.x.x.exe = This is the version of the EPC installer being installed. It must be present to run the Silent Install.
/s /v = Installer run in Silent Mode and verbose output.
/qn = a parameter that signifies a silent installation with no user interface displayed. It's used to install software without any user prompts or messages
AGENT_NAME=%COMPUTERNAME% The name of the EPC as seen in the controller.
AGENT_ORGID=yourorg . This is the upper most root of the EPC to go for a license.
AGENT_GRPID=yourgroup. This is the ResourceGroup of the EPC to go for a license. Once online the EP will look here for its RG and license. If not here it will revert to the OrgID.
MGMT_DOMAIN_PASS=yourdomainpassword- This password is given by Nectar or your MSP for your EP's to connect to.
MGMT_DOMAIN_NAME=yourdomainname - This DomainName is given by Nectar or your MSP for your EP's to connect to.
CONTROLLER_CSV=neccontroller.us.nectar.services:443 - This is the controller & port that your EP will connect to.
CONTROLLER_PORT_ISFIXED=TRUE - This will fix the port to 443 and not let it change to the default 40006 port.
AGENT_LOG_LEVEL=INFO - This will set your logging to the INFO and above seeting. So all warnings and Critical errors will be logged as well. This is an optional parameter since this can be set in the UI now.