MrVietA2 0 Posted January 5, 2012 Hi all, I have an installer of language for windows and I would like to run it in silent mode. I try to run it with a bat file, it works very well : VI_for_XP.exe /S Now I would like to run it in silent mode again with AUTOIT, how could I do that ? Share this post Link to post Share on other sites
Mikeman27294 8 Posted January 5, 2012 ShellExecute("VI_for_XP.exe", "/S") should do it. If that doesnt work, try ShellExecute("VI_for_XP.exe", "S") (It doesnt have a slash before the S parameter) 1 MrVietA2 reacted to this Share this post Link to post Share on other sites
arcker 15 Posted January 5, 2012 careful that shellexecute returns immediatly. to wait, you have to use runwait. 1 Command3r reacted to this -- Arck System _ Soon -- Ideas make everything"La critique est facile, l'art est difficile"Projects :[list] [*]Au3Service : Run your exe as service V3 / Updated 29/07/2013 Get it Here [/list] Share this post Link to post Share on other sites
Chimaera 144 Posted January 5, 2012 careful that shellexecute returns immediatly.to wait, you have to use runwait.Or ShellExecuteWait ... If Ive just helped you ... miracles do happen. ChimaeraCopyRobo() * Hidden Admin Account Enabler * Software Location From Registry * Find Display Resolution * _ChangeServices() Share this post Link to post Share on other sites