Earthshine Posted June 25, 2019 Share Posted June 25, 2019 i got both the installers to install silent setup.exe /s /qn then run the driver installer silent. I posted an answer with the two lines of code yesterday but it never made it on the forum.... hmmmm My resources are limited. You must ask the right questions Link to comment Share on other sites More sharing options...
maniaczs Posted June 25, 2019 Author Share Posted June 25, 2019 @Earthshine, I can't get that option to work.... I tried Upper and lower S Link to comment Share on other sites More sharing options...
Developers Jos Posted June 25, 2019 Developers Share Posted June 25, 2019 As you can see in the PopUp window, you need to use /Quiet as parameter. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Earthshine Posted June 25, 2019 Share Posted June 25, 2019 so try setup.exe /qn My resources are limited. You must ask the right questions Link to comment Share on other sites More sharing options...
maniaczs Posted June 25, 2019 Author Share Posted June 25, 2019 @Jos and @Earthshine, Installs the app but still prompts the Device Driver install. Link to comment Share on other sites More sharing options...
Earthshine Posted June 25, 2019 Share Posted June 25, 2019 (edited) Run("setup.exe /qn") Run ('C:\Program Files (x86)\BECOWare\TapTalk M-6200 Series Model S-6200\Default USB Drivers\dpinstx64.exe /S') That code works 100%, every time. You need to run it manually and capture what exe installers run to know what to do. look at your processes Edited June 25, 2019 by Earthshine maniaczs 1 My resources are limited. You must ask the right questions Link to comment Share on other sites More sharing options...
maniaczs Posted June 26, 2019 Author Share Posted June 26, 2019 @earthshine - Geez I didn't even thing to look there. Thank you very much! Earthshine 1 Link to comment Share on other sites More sharing options...
Earthshine Posted June 26, 2019 Share Posted June 26, 2019 (edited) You are most welcome, however, what if, on a users box, their windows was installed to a D or E or whatever drive? you might consider fixing the code so it uses the systems defined Program Files location, then finish off the string. like so Run (@ProgramFilesDir &'\BECOWare\TapTalk M-6200 Series Model S-6200\Default USB Drivers\dpinstx64.exe /S') Global $sProgFiles86 = EnvGet("ProgramFiles(x86)") Run("setup.exe /qn") Run ($sProgFiles86 &'\BECOWare\TapTalk M-6200 Series Model S-6200\Default USB Drivers\dpinstx64.exe /S') Now it should always work Edited June 26, 2019 by Earthshine maniaczs 1 My resources are limited. You must ask the right questions Link to comment Share on other sites More sharing options...
maniaczs Posted June 26, 2019 Author Share Posted June 26, 2019 good to know! Thank you again 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