luther8439 Posted May 22, 2006 Posted May 22, 2006 (edited) 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 May 22, 2006 by luther8439
blademonkey Posted May 22, 2006 Posted May 22, 2006 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
Valuater Posted May 22, 2006 Posted May 22, 2006 (edited) if you use the message box.. it will show you what is wromg... possibly you need to "' & $dir_path & '" ' & $iso_path' there is a space.^ here and the extra & 8) to slow... Edited May 22, 2006 by Valuater
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