Help with Script.
Hello-
I have a csv file that I need to upload to a vendor. Below is the script; can't figure out why the code does not work; vendor says csv file has not been uploaded.
I am using the following batch file to execute the above script.
Any help would be appreciated!!
Thanks.
I have a csv file that I need to upload to a vendor. Below is the script; can't figure out why the code does not work; vendor says csv file has not been uploaded.
# Automatically abort script on errors option batch abort # Disable overwrite confirmations that conflict with the previous option confirm off # Connect to SFTP server using a password open sftp://User:Password@abc.com/ # Upload file put C:\MyAccess\ss.csv /FTPDATA/User/ # Disconnect exit
I am using the following batch file to execute the above script.
@echo off winscp.com /script="c:\MyAccess\MyAccessScriptFile.txt"
Any help would be appreciated!!
Thanks.