0

On a new PC with Windows10 preinstalled I wanted to change some network settings, in particular this one:

enter image description here

While trying this I discovered a strange issue: I can not click on the properties button. It seems to be some sort of deactivated.

enter image description here

Does anyone knows how to solve this?

2
  • Huh? What actually happens when you click it? It doesn't seem deactivated at all in your screenshot?
    – qasdfdsaq
    Commented Oct 30, 2015 at 13:43
  • there's slightly a change in background color and border thickness when hovering or clicking but nothing else happens Commented Oct 30, 2015 at 14:16

1 Answer 1

2

You can use Powershell to enable/disable the "Use default gateway on remote network" option:

Get-VpnConnection
Set-VpnConnection -Name "myVPN" -SplitTunneling $True
3
  • I tried to split the tunneling as you wrote. Now "SplitTunneling" is listed as "true" but still ERR_CONNECTION_TIMED_OUT when using VPN :-( Commented Oct 30, 2015 at 14:21
  • 1
    You get this error on the webbrowser i suppose? Did you try rebuilding the VPN connection after applying the powershell cmd? Also try it with a different browser.
    – doenoe
    Commented Nov 2, 2015 at 9:52
  • You are right. I tried to open adresses in the browser directly after changing the option for SplitTunneling. Today it works, but the "properties" button for IPv4 (and IPv6 too) still doesn't work. There are two other buttons in the dialog box of which the first one ("install") is clickable. Seems to be a bug I suppose. Commented Nov 3, 2015 at 8:30

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .