I am making a batch file to automate mysql installation silently. When I type the following line in the command prompt everything works fine.

"C:\Program Files\MySQL\MySQL Server 5.1\bin\mysqlinstanceconfig.exe" -i -q ServiceName="mydb" RootPassword="pos" ServerType=DEVELOPMENT DatabaseType=INNODB Port=3306

My question is: can I somehow add this to a batch file so it will run it as if I entered it in the command line?

Thanks, Matt

link|improve this question

1  
Of course. If you copy-and-paste that into a script.bat file and run that file it'll do it as is. But I feel there is something more that you want to know? – Santa Aug 11 '10 at 4:52
feedback

1 Answer

up vote 0 down vote accepted

yes, its easy. As Santa commented, just put your command inside some text file, change the extension of that file to .bat. Thats all !!

link|improve this answer
I didn't realize the command takes like 2 minutes to complete so I thought it froze. thanks :) – user404068 Aug 11 '10 at 17:40
welcome .............. – Shekhar Aug 12 '10 at 9:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.