Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

amit0010

Need to run Batch Script on FTP window machine

I need to do automation for upload and then run the same batch script on FTP server.

I can upload "test.bat" file on FTP server using below batch script.

winscp.com /command ^
    "open ftp://username:password@FTPserverIP" ^
    "cd /CSP/dev/" ^
    "binary" ^
    "put d:\test.bat" ^
    "exit"
pause


Now i need to run "test.bat" on FTP server from remote server.

How i can run batch script on FTP server from remote server?