For important installation parameters, see Agent Installation Command Prompt Parameters.
Trend Micro recommends using a script that detects existing installations of Endpoint Application Control. To do this, the following example looks for the registry entry HKLM\SOFTWARE\TrendMicro\Endpoint Application Control Agent.
For example, if your Endpoint Application Control server with the host name, tmeac-server, is using the default Apache HTTPS port (4343), and the 32-bit and 64-bit installers are copied to the server, to install Endpoint Application Control agents using the appropriate Windows architecture with default settings, use the following script:
:CheckAnyInstallExists
REG QUERY "HKLM\SOFTWARE\TrendMicro\Endpoint Application Control Agent"
IF %ERRORLEVEL% EQU 1 GOTO CheckOS
GOTO END
:CheckOS
IF EXIST "%PROGRAMFILES(X86)%" (GOTO 64BIT) ELSE (GOTO 32BIT)
:64BIT
https://tmeac-server:4343
GOTO END
:32BIT
https://tmeac-server:4343
GOTO END
:END
After installation, the Endpoint Application Control system tray icon appears on the endpoint.