I had a CGI that used Cissue to move/copy/del some files. It is now not working after IIS upgrade, server upgrade, etc. (It is somewhat related to my othe post a few months back.)
My code: Command='copy e:\rxemail\temp.htm e:\rxemail\temp2.htm' call cissue(Command, i) write(,) '<p>', Command, i
i=start_process@('copy e:\rxemail\temp.htm e:\rxemail\temp3.htm','') write(,) '<p> Start_Process@', i
Result will show up in Internet Explorer. The first i is 0, indicating the command good, but the sceond i is -1, indicating the command is bad. There is no copy.exe in the directory. Is that why the start_process@ command did not work?
Anyway, how can I use DOS command in CGI?
Thank you.