Hi Experts,
I've been tasked to use WinFTP to pull files from an sFTP site to our local W2007 server using an SSIS Execute Process Task. I'm trying to get the task to run a script containing the UN/PW and other info, text below. The script works from the command line:
Here's the Process window from the task:
When I run the task, the error says Host "\script=C" does not exist. Are there some special characters I need to use around the colon or something? It's like the task isn't sending the complete path.
Here's the text of the script, in case it matters.
option batch abort
option confirm off
open sftp://User:Password@site
get Media*2013.txt C:\FTP\
get Media*2014.txt C:\FTP\
close
exit
None of the recommended solutions I've found have worked for me. Help!?! Please???
Thanks in advance!