How to perform silent installation of Comodo Firewall 10.0.1.6209?

I can install Comodo Firewall 10.0.0.6092 using cis_setup_x64.msi file with below command line before:
$ msiexec /I cis_setup_x64.msi INSTALLANTIVIRUS=0 FWFEATURES=1 HIDE_SECURITY_ALERTS=0 THREATCASTFEATURE=2 INSTALLDEFHOMEPAGE=0 INSTALLASKDEFSEARCH=0 /Passive /NoRestart

But now, Comodo Firewall 10.0.1.6209 does not work (Firewall component will be not installed with above command line), anyone can share the new command line?

msiexec /I cis_setup_x64.msi INSTALLANTIVIRUS=0 INSTALLFIREWALL=1 seems to work.

Thanks futuretech, I find out the parameters from installation log file, below is the new command line:
$ msiexec /I cis_setup_x64.msi INSTALLANTIVIRUS=0 INSTALLFIREWALL=1 CLOUD_ANALYSE=1 SET_HIPS_STATE=0 SET_BBLOCKER_STATE=0 HIDE_SECURITY_ALERTS=0 SEND_STATISTICS=0 /Passive /NoRestart

Do you run this in the command prompt? Also do you have to put the path to the MSI?

Yes and yes.

“C:\Users\K****\Desktop\cis_setup_x64.msi” $ msiexec /I cis_setup_x64.msi INSTALLANTIVIRUS=0 FWFEATURES=1 HIDE_SECURITY_ALERTS=0 THREATCASTFEATURE=2 INSTALLDEFHOMEPAGE=0 INSTALLASKDEFSEARCH=0 /Passive /NoRestart

Like this??

msiexec /I “C:\Users\K****\Desktop\cis_setup_x64.msi” INSTALLANTIVIRUS=0 INSTALLFIREWALL=1

edit: removed space between /I

Thank you. I don’t have that much experience with the command prompt. So thanks for your help. ^-_-^

Hi there,

here are the params for version 11:

OS_VERSION=;
INSTALLANTIVIRUS=;
CFPCFG=;
LANG=;
INSTALLFIREWALL=;
PREDEFINEDPROFILE=;
MAKE_CESM_DEFAULT_CONFIG=;
INSTALLDIR=;
CESMCONTEXT=;
DRVHLPRMODULE=;
FREE_INSTALLATION=;
CLOUD_ANALYSE=1;
SEND_STATISTICS=0;
HIDE_SECURITY_ALERTS=;
CONFIG_FROM_FILE=;
BACKUPED_PATH=;
SET_FIREWALL_STATE=;
SET_ANTIVIRUS_STATE=;
SET_HIPS_STATE=;
SET_BBLOCKER_STATE=;
AV_FOR_SERVERS=;
WEBINSTALL=;
TRUST_DETECTED_NETWORKS=;
READ_BLOB=;

So for a silent installation, i use:
start /b /wait msiexec /I %SYSTEMDRIVE%\Install\Firewall\cis_setup_x64.msi INSTALLFIREWALL=1 INSTALLANTIVIRUS=1 HIDE_SECURITY_ALERTS=1 /q /NoRestart > nul

ToM