Jump to content

run() and variables


Recommended Posts

With One variable, it works fine, here is my code:

runWait(@COMSPEC & ' /c CDIMAGE.exe -l"Hotfixer" -h -n -d -o "' & $dir_path & '" C:\hotfixer.iso', "", @SW_MINIMIZE)

runWait(@COMSPEC & ' /c CDIMAGE.exe -l"Hotfixer" -h -n -d -o "' & $dir_path & '" $iso_path', "", @SW_MINIMIZE)

Ignore it, I just figured it out! :)

The above code works fine

Edited by luther8439
Link to comment
Share on other sites

With One variable, it works fine, here is my code:

runWait(@COMSPEC & ' /c CDIMAGE.exe -l"Hotfixer" -h -n -d -o "' & $dir_path & '" C:\hotfixer.iso', "", @SW_MINIMIZE)

My problem is having two variables worked. I keep getting No Response since I changed my code to be

runWait(@COMSPEC & ' /c CDIMAGE.exe -l"Hotfixer" -h -n -d -o "' & $dir_path & '" $iso_path', "", @SW_MINIMIZE)

Can anyone fix it for me? Thank you so much :)

try this

runWait(@COMSPEC & ' /c CDIMAGE.exe -l"Hotfixer" -h -n -d -o "' & $dir_path & '" '& $iso_path, "", @SW_MINIMIZE)

---"Educate the Mind, Make Savage the Body" -Mao Tse Tung

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...