Monday 13 July 2015

Windows 10 VPN Remote Default Route

14:52 Posted by Jurgens Krause , , , , , 1 comment

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 connections
Identify 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

1 comment: