clivebuckwheat Posted August 27, 2012 Author Posted August 27, 2012 You could either integrate everything in your autoit script (using runwait and run command) or modify your batch script like this:start /separate "process security warning" \\MyPrintserver\WindowsSecurityInstallYes.exeHmmm. http://ss64.com/nt/start.html Options for 16-bit WINDOWS programs only /SEPARATE Start in separate memory space (more robust) /SHARED Start in shared memory space (default)I would try with a simpler:START "process security warning" \\MyPrintserver\WindowsSecurityInstallYes.exeand then try with:START "process security warning" /MIN \\MyPrintserver\WindowsSecurityInstallYes.exeIndeed the missing piece of the puzzle was to start the autoit script in a different process, so the rest of the batch file still runs. Thank you all, everything now works.jaclaz
jaclaz Posted August 27, 2012 Posted August 27, 2012 Indeed the missing piece of the puzzle was to start the autoit script in a different process, so the rest of the batch file still runs. Thank you all, everything now works. jaclaz
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