Re: Issues with Authentication
The
If you want it to be used literal, you need to escape it with
If you use WinSCP GUI to generate a PowerShell template, it escapes everything correctly:
https://winscp.net/eng/docs/ui_generateurl
$
has special meaning in PowerShell strings.
If you want it to be used literal, you need to escape it with
`
: "c`$1234Abc+t"
, or use single quotes 'c$1234Abc+t'
.
If you use WinSCP GUI to generate a PowerShell template, it escapes everything correctly:
https://winscp.net/eng/docs/ui_generateurl