MrVietA2 Posted January 5, 2012 Share 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 ? Link to comment Share on other sites More sharing options...
Mikeman27294 Posted January 5, 2012 Share 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) MrVietA2 1 Link to comment Share on other sites More sharing options...
arcker Posted January 5, 2012 Share Posted January 5, 2012 careful that shellexecute returns immediatly. to wait, you have to use runwait. Command3r 1 -- 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] Link to comment Share on other sites More sharing options...
Chimaera Posted January 5, 2012 Share 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. Chimaera CopyRobo() * Hidden Admin Account Enabler * Software Location From Registry * Find Display Resolution * _ChangeServices() Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now