Jump to content

Recommended Posts

Posted

Hallo forum members

I have an question about extra command line options for running thinreg.exe

in an batch file it look like this:

thinreg.exe /noarp /norelaunch " i_view32.exe "

After searching and trying in this forum I came up with this:

Run(@ScriptDir & '\ThinReg.exe /noarp /norelaunch' & 'i_view32.exe')

No result after searching again I' ve tried this:

$vApp = "i_view32.exe"
Run('"' & @ScriptDir & 'ThinReg.exe /noarp /norelaunch' & $vApp & '"')

Result error msg

Think got to do with double-quotes single- quotes

Can help somebody me in right direction?

Regards, Mecano

Posted (edited)

Maybe...

#include<Process.au3>
_RunDos('thinreg.exe /noarp /norelaunch " i_view32.exe "')
Thanks for repley

Nope, I get the same error: file does not exist................

Edited by Mecano
Posted

Solved space between quote and i_view322.exe

Run(@ScriptDir & '\thinreg.exe /noarp /norelaunch "i_view322.exe"')

But you put me to the right direction

Big thanks

regards,

Mecano

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
×
×
  • Create New...