I have script to GET HTTP content and I need bypass proxy (connect directly to webserver IP).
Is it possible without changing registry in Windows? This code is going through proxy defined in system.
Thanks for advice Best regards.
$url='https://10.10.10.10/check';
$webClient = new-object System.Net.WebClient;
$output = $webClient.DownloadString($url)