FDC Agent CLI installation

Complete the following steps to FDC Agent CLI installation.

Prerequisites:
  • MSI File of the Agent + installerConfig.json file. Ensure both files are ready and accessible.
  • Windows 10 Machine: The installation must be carried out on a Windows 10 system.
  • Admin Access: You must have administrative privileges to install the agent.

Steps

  1. Open PowerShell as Administrator:
  2. Install the Agent:
    • PowerShell: use the following command to start the installation. Replace {path_to_msi} with the actual path to your MSI file:
      Start-Process -Wait -ArgumentList "/qn" -PassThru -FilePath 'C:\Users\adm\Downloads\{path_to_msi}.msi'
      • Start-Process - Initiates the installation process.
      • -Wait - Forces the script to wait until the installation is complete.
      • -ArgumentList "/qn" - Runs the installer silently without a user interface.
      • -PassThru - Passes the process information back to PowerShell, which can be useful for troubleshooting.
    • Command line: Use the following command to start the installation:

      msiexec /i "path_to_msi.msi"

  3. Check Installation:
    • Ensure the installation completes successfully by checking for the agent in the installed programs list or any designated log files.