Hi I have found in our environment the proxy had to be disabled / bypassed with various PS code, in order to get the module to work.
#Proxy Bypassing, To bypass the proxy (use the direct connection), set it to null:
#PS5.1
[System.Net.HttpWebRequest]::DefaultWebProxy = New-Object System.Net.WebProxy($null)
#PS7+
[System.Net.Http.HttpClient]::DefaultProxy = New-Object System.Net.Webproxy($null)
Would it be possible to implement this in the module with a switch to the Set-IBConfig command, similar to the -SkipCertificateCheck
Regards
Hi I have found in our environment the proxy had to be disabled / bypassed with various PS code, in order to get the module to work.
#Proxy Bypassing, To bypass the proxy (use the direct connection), set it to null:
#PS5.1
[System.Net.HttpWebRequest]::DefaultWebProxy = New-Object System.Net.WebProxy($null)
#PS7+
[System.Net.Http.HttpClient]::DefaultProxy = New-Object System.Net.Webproxy($null)
Would it be possible to implement this in the module with a switch to the Set-IBConfig command, similar to the -SkipCertificateCheck
Regards