Howdy Vijay,
Thanks for the incredibly fast response...
Your suggestion is just what I'm looking for!
Just to try, I changed it, just a little bit, so that I could run it all within the script here is what I tried, and the error that I got (essentially all I did was take the bat file that you suggested, and make it a string to pass to the shell.run function - but the error I got is likely the reason why you had it as a batch file in the first place...):
Code:
set Wshshell= WScript.createobject("wscript.shell")
strCmd = "ftp -i -s:cmds.txt REMOTE_SERVER_IP"
Call Wshshell.run(strCmd, 1, TRUE)
set Wshshell = Nothing
when I run it, I get this error:
Error Type:
Microsoft VBScript runtime (0x800A0046)
Permission denied
/scripts/util_ftp.asp, line 58
<- The line "Call Wshshell.run..."
Any ideas?
Thank you _SO_ much!
Darin