I'm trying to install MySQL Community 5.6.14 in Passive mode using a batch file.
First of all "MySQLInstaller" is unable to install MySQL in passive or quiet mode and user has to complete the installation wizard manually!
Does MySQL Community 5.6.14 support passive (or quiet) mode?!
Secondly, I have tested MySQLInstallerConsole examples but I couldn't find a correct combination of parameters !!!
Batch File Content:
@Echo off
echo Installing MysqlInstaller....
msiexec /i "c:\mysql\mysql.msi" /passive
cd C:\Program Files\MySQL\MySQL Installer
echo Config MysqlServer....
MySQLInstallerConsole --type=developer --action=install --product=* --config=mysql-server-5.6.14-win32:passwd=apassword
echo Finished !
pause