Re: GUI and WinSCP.com work, Powershell does not
Ok, I took a look on PowerShell string syntax, to find that dollar sign has special meaning, when inside souble-quotes, so you have to escape it. Are you aware of this?
Possibilities:
- use tick sign to escape it:"aaa`$bbb"
- using single quotes:'aaa$bbb'
I should have recogonized that fact, but it did not sink in. Thank you for the insight. The script now works great.
Thank you very much.