Install the C++ agent on Windows from command line

Learn how to install MiNiFi C++ agent from command line.

  1. To install the MiNiFi C++ agent from the Command Line with the desired extensions, list all the extensions you would like to install:
    msiexec /i nifi-minifi-cpp.msi AGREETOLICENSE=Yes ADDLOCAL=CM_C_bin,CM_C_tzdata,InstallService,InstallVSRedistributableFiles,InstallConf,CM_C_http_curl,CM_C_sql /quiet
  2. Optional. In order to exclude some extensions but otherwise install all other extensions:
    msiexec /i nifi-minifi-cpp.msi AGREETOLICENSE=Yes ADDLOCAL=ALL REMOVE=CM_C_sql /quiet
    For all extension identifiers (for example, CM_C_sql), follow the same pattern. Take the extension name (for example, minifi-sql), replace the minifi- prefix with CM_C_ and replace all dashes with underscores. For example, minifi-http-curl becomes CM_C_http_curl.For more information and configuration options for msiexec, see https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec.