Re: Pause command - keep window open
Queck and dirty solution is to just remove the
Or execute WinSCP via
But in Task Scheduler, you will separate
Or in case you actually execute WinSCP via a batch file, add
exit
command (though then you better add close
command to close the connection).
Or execute WinSCP via
cmd
and add pause
, like:
cmd /C your_winscp_command_line_here & pause
But in Task Scheduler, you will separate
cmd
and the rest (the way you probably currently separate WinSCP
and its parameters).
Or in case you actually execute WinSCP via a batch file, add
pause
command to it.