Install the C++ agent on Windows from command line
Learn how to install MiNiFi C++ agent from command line.
-
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
-
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 theminifi-
prefix withCM_C_
and replace all dashes with underscores. For example,minifi-http-curl
becomesCM_C_http_curl
.For more information and configuration options formsiexec
, see https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec.