### Example install command Source: https://docs.fortinet.com/document/forticlient/7.4.7/ems-administration-guide/684253/installing-ems-with-es-integration This command installs EMS with Elasticsearch integration, specifying various parameters for connection and features. ```bash forticlientems_7.4.7.amd64.bin -- --enabled_event_feature --elastic_hosts "10.152.78.248:8000" --elastic_user emai --elastic_password Fortinet123# --elastic_ca_path /home/emai/Desktop/ca.crt Copy ``` -------------------------------- ### Example Postgres Docker Container Run Command Source: https://docs.fortinet.com/document/forticlient/7.4.7/ems-administration-guide/669018/installing-ems-with-postgres-in-docker An example of running a PostgreSQL Docker container with specific parameters. ```bash docker run --restart always --name ems_docker -e POSTGRES_PASSWORD=Fortinet123# -p 6434:5432 -d ems_postgresql15 postgres Copy ``` -------------------------------- ### Copying the installer directory recursively Source: https://docs.fortinet.com/document/forticlient/7.4.7/ems-administration-guide/270581 Example of copying an installer directory recursively. ```python installer_dir = { 'source' : 'C:\\Program Files (x86)\\Fortinet\\FortiClientEMS\\Installers', 'target' : '/opt/forticlientems/data' } ``` -------------------------------- ### Example deployment for different teams Source: https://docs.fortinet.com/document/forticlient/7.4.7/ems-administration-guide/122790/deploying-different-installer-ids-to-endpoints-using-the-same-deployment-package Example CLI commands for deploying the same FortiClient package with different installer IDs for HR, Marketing, and Office Management teams. ```bash FortiClientSetup_7.4.7_x64.exe /v"GROUP_TAG=HR" ``` ```bash FortiClientSetup_7.4.7_x64.exe /v"GROUP_TAG=Marketing" ``` ```bash FortiClientSetup_7.4.7_x64.exe /v"GROUP_TAG=OM" ```