Goal: I am utilizing Implicit Remoting to centralize modules for access to over 150 employees. Some of these modules make queries outbound to different sites around the internet.
Problem: Although the users can successfully remote into the server using:
$session = New-PSSession -ComputerName ServerA -Authentication Kerberos
They are being blocked at the proxy, while making queries to the internet because of lack of authentication. However, the users are able to send queries to internal productions.
Question:
How can I attach Kerberos Authentication, in my powershell scripts, to the queries that are going outbound to the internet to make it past the proxy?
Additional information:
-To my knowledge according to: https://blogs.technet.microsoft.com/ashleymcglone/2016/08/30/powershell-remoting-kerberos-double-hop-solved-securely/
-Kerberos Authentication uses 'unconstrained delegation.'Therefore, it should delegate the auth correctly before querying outbound. I also checked the outer scope for the session variable and it isn't null.