Jump to content

Silent Install application


Recommended Posts

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

 

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 by Earthshine

My resources are limited. You must ask the right questions

 

Link to comment
Share on other sites

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 by Earthshine

My resources are limited. You must ask the right questions

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...