When I run powershell using invoke-webrequest
on a URL without an ampersand everything works.
But my URL's have ampersands in them. If I surround them by double quotes it works from PowerShell, but not if I am doing it through my SQL Server.
Trying to get the right combination of escape characters is proving to be a pain in the butt. Here's an example of the command:
exec xp_cmdshell 'powershell Invoke-WebRequest -UseBasicParsing -Uri "https://example.com/getfile/12345&i=123" -outfile C:\Downloads\test.txt'
It is the ampersand on the &i=123
that is the issue.
If I change the ampersand in the -URI parameter to "&"
it does not work. If I prefix with the gravy carat (little `
above tab) it doesn't work. I have also tried to replace it with %26
.
Racking my brain here for hours. Any suggestions?