I can get foo.exe to launch, but I need to add these two words on the end to have the program run corectly.
cmdline = """c:\program files\myprogram\foo.exe""" -rite -proxy.txt
WScript.echo cmdline
objWsh.run cmdline,1,False
Will not run unless I remove "-rite -proxy.txt" I need to have them included for the program to work.
It works like this from the run line:
"c:\program files\myprogram\foo.exe" -rite -proxy.txt
Thanks!
How can I incorporate "-rite -proxy.txt" ?
cmdline = """c:\program files\myprogram\foo.exe""" -rite -proxy.txt
WScript.echo cmdline
objWsh.run cmdline,1,False
Will not run unless I remove "-rite -proxy.txt" I need to have them included for the program to work.
It works like this from the run line:
"c:\program files\myprogram\foo.exe" -rite -proxy.txt
Thanks!
How can I incorporate "-rite -proxy.txt" ?