Hi @amaster507
The error is coming from the fact that Invoke-WebRequest command got invoked since by default the alias curl points to that in powershell. You should remove it
Remove-item alias:curl
Then execute the command again and it will use curl(if that’s installed) now.
Note: Store it in your profile, otherwise you will need to remove it every time.