Differences
This shows you the differences between the selected revisions of the page.
| 2019-04-30 | 2019-05-04 | ||
| no summary (87.26.108.84) (hidden) (untrusted) | no summary (115.187.63.55) (hidden) (untrusted) | ||
| Line 89: | Line 89: | ||
| You can click on classes, methods and properties to open their respective help pages. | You can click on classes, methods and properties to open their respective help pages. | ||
| - | ===== Copying Generated URL or Code to Clipboard ===== | + | @echo off |
| - | Use //Copy to Clipboard// to copy generated %%URL%%(s) or code to a clipboard. | + | "C:\Program Files (x86)\WinSCP\WinSCP.com" ^ |
| + | ··/log="C:\writable\path\to\log\WinSCP.log" /ini=nul ^ | ||
| + | /command ^ | ||
| + | "open s3://AKIAJ4MP6WJZW5BDHAEQ:Fzx9UPFUWUTxxiPIlFJdMG7WMlAqaWhicFTXvXSH@s3.amazonaws.com/" ^ | ||
| + | "Your command 1" ^ | ||
| + | "Your command 2" ^ | ||
| + | "exit" | ||
| + | |||
| + | set WINSCP_RESULT=%ERRORLEVEL% | ||
| + | if %WINSCP_RESULT% equ 0 ( | ||
| + | echo Success | ||
| + | ) else ( | ||
| + | echo Error | ||
| + | ) | ||
| + | |||
| + | exit /b %WINSCP_RESULT% | ||