I've posted this on a couple forums now, and it seems like this is an issue regardless of which VPN solution you use. That option to register this connection's address in DNS is a default option in our Windows 10 image. We got around it by looking up the GP IP for the user, edit our hosts file entry with the GP IP and the FQDN, and then issuing the following commands to remotely connect to the computer and uncheck that DNS option. We eventually put this into a script, and now a GPO. #Connect remotely to multiple computers using admin Account Enter-PSSession –ComputerName mycomputername –Credential domain\username #Check to see if DNS registry option is checked Get-NetAdapter Ethernet | Get-DNSClient Get-NetAdapter Wi-Fi | Get-DNSClient #Sets the DNS Registry option on Ethernet interface to False (turns off) Get-NetAdapter Ethernet | Set-DNSClient –RegisterThisConnectionsAddress $False Get-NetAdapter Wi-Fi| Set-DNSClient –RegisterThisConnectionsAddress $False #Force ipconfig /registerdns Register-DnsClient
... View more