Uploading a single file involves so few commands that it is enough to provide them on the command line, saving writing a script file:
winscp.com /command "option batch abort" "option confirm off" "open user@example.com" "put examplefile.txt /home/user/" "exit"
However you may want to use a script file anyway, so you can later expand it:
option batch abort option confirm off open user@example.com put examplefile.txt /home/user/ exit
To run the script use following command (providing you have saved the script to file example.txt):
winscp.com /script=example.txt
Site design by Black Gate