Looking for a powershell equivalent to the following CURL command:
curl -x "http://username:[email protected]:5001" "https://www.google.com"
Have looked online but could not find anything similar to this.
Looking for a powershell equivalent to the following CURL command:
curl -x "http://username:[email protected]:5001" "https://www.google.com"
Have looked online but could not find anything similar to this.
The PowerShell equivalent would be the following command:
Invoke-Webrequest -Proxy "http://username:[email protected]:5001" -Uri "https://www.google.com"