On Windows 7/8 it was pretty easy to configure a VPN Tunnel to use the remote default route. On Windows 10 (build 10162) you are not able to access the settings for IP4 on the VPN configuration. Below are the steps to set it to NOT use the remote default route using PowerShell:
Open up a PowerShell Window and enter the following:
Get-VpnConnection
This will list your configured VPN connectionsIdentify your VPN Connection name and the following to DISABLE the remote default route:
Set-VpnConnection -Name "YourVPN_Name" -SplitTunneling $True
To ENABLE the route for this connection, type:
Set-VpnConnection -Name "Converged - Witbank" -SplitTunneling $False
great
ReplyDelete