Here Is Command Line For silent installation of Mysql server 5.0
Step 1. Install mysql-essential-5.0
Following Command To install that .
Run Following Command line For That .
Step 1. Install mysql-essential-5.0
Following Command To install that .
start mysql-essential-5.0.45-win32.msi /quiet /norestart
Step 2. Set configurationRun Following Command line For That .
cd\
cd Program Files
cd MySQL
cd MySQL Server 5.0
cd bin
MySQLInstanceConfig.exe -i -q "-lC:\mysql_install_log.txt"
"-nMySQL Server 5.0" "-pC:\Program Files\MySQL\MySQL Server
5.0" -v5.0.45 "-tC:\Program Files\MySQL\MySQL Server
5.0\my-template.ini" "-cC:\mytest.ini" ServerType=DEVELOPMENT
DatabaseType=MIXED ConnectionUsage=DSS Port=3306 ServiceName=
RootPassword=pass
break
exit
Step 3. give it full privileges to connect from external and localhost client:
cd\
cd Program Files
cd MySQL
cd MySQL Server 5.0
cd bin
mysql -u root
GRANT ALL PRIVILEGES ON *.* TO 'Root'@'%' IDENTIFIED BY 'pass';
FLUSH PRIVILEGES;
exit