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.
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?
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?