Hello, I have a script that needs to unzip a password protected file. lets say the password is test^3. the ^ is causing the trouble. if i enter the password as "test^3" it work file. the problem is the procomm script already has " ". How do you enter double "" ""?
If i type the pkzip25 -ext -pass="test^3" $filespec in a dos windows it works fine. procomm doesn't like the double "" "" in this strfmt line.
here is the script:
strfmt DosCmd "pkzip25 -ext -pass="test^3" %s" $filespec
dos DosCmd minimized TaskId
while taskexists TaskId
yield
endwhile
If i type the pkzip25 -ext -pass="test^3" $filespec in a dos windows it works fine. procomm doesn't like the double "" "" in this strfmt line.
here is the script:
strfmt DosCmd "pkzip25 -ext -pass="test^3" %s" $filespec
dos DosCmd minimized TaskId
while taskexists TaskId
yield
endwhile