Cannot run script from command line or .bat file

Advertisement

Mark_R
Guest

Cannot run script from command line or .bat file

I am very new to scripting and am having difficulty in getting my script to run. I have read through the guides, FAQ and forum postings and there must be something that I am missing. I need to download remote files to a specific local directory and then move the remote files to a different remote directory. The script is below.

option batch on
option confirm off
open StoredSession
cd claim
get *.txt h:\123\ABC\Temp
mv *.txt complete/
close exit

The script is called script.txt and is located in c:\Scripts
I have tried running the script from the command prompts as:
winscp.com /script.txt
AND
winscp.com /%Scripts%"\sctipt.txt"

in each case winscp.com loads and requests the host. Ultimately I want to call this script from a .bat file so that I can automate the daily download.

I appreciate and help and advice you can offer.

Reply with quote

Advertisement

MarkR
Joined:
Posts:
1
Location:
New York

Answered part of my own question

After more reading I found out that I was trying to call the script incorrectly. I should have entered:

winscp.com /script=c:\scripts\script.txt

Reply with quote

Advertisement

You can post new topics in this forum