Windows 10 windows VPN IPv4 properties not accessible

20

12

I just installed Windows 10 and I want to join my domain through my windows VPN. But when I want to change the properties of the IPv4 protocol, nothing happens.

The button is NOT greyed out. (I mention this because I find many people having troubles with this.)

jelle

Posted 2015-08-02T09:25:09.257

Reputation: 303

Answers

21

I had the same issue you might need to find how to do what you need in powershell. For example I used this to change the use default gateway setting:

Set-VpnConnection "VPN Name" -SplitTunneling $True 

Chris

Posted 2015-08-02T09:25:09.257

Reputation: 326

2

This doesn't solve the specific question, but this was exactly the solution I needed! If anyone else needs a workaround, the full list of Set-VpnConnection options are here: https://technet.microsoft.com/en-us/library/jj554823%28v=wps.630%29.aspx?f=255&MSPPError=-2147217396

– Stefan Mohr – 2015-08-11T20:35:11.190

15

Update 2015-11-16: Fixed in TH2.

I just installed Cumulative update for Windows 10 version 1511: November 10, 2015. (Codename Threshold 2). The bug is gone. Clicking Properties now works and brings up the expected menu.

I made a point of checking before the reboot: Bug was still there.
And after the reboot/half-hour-install: Bug is now gone.

Original post preserved below.


Bug.

Seems to be a bug. Reproducible and everything.

Supposedly fixed in preview build: Windows 10 Build 10547 Insider Preview (fast ring) released September 18, 2015. Regular release date is not known.

Workarounds

Edit rasphone.pbk

All of a user's VPNs are saved in %appdata%\Microsoft\Network\Connections\Pbk\rasphone.pbk. This is a plain old ini-file and can be edited.

There you can copy entries from a known-good config. (Or if you have lots of time on your hands, then you can also read the Microsoft Documentation for the PBK file format: [MS-RRASM]: Routing and Remote Access Server (RRAS) Management Protocol: 2.2.2 File Format for Phonebook.)

Use PowerShell-cmdlets

Namely Set-VpnConnection.

StackzOfZtuff

Posted 2015-08-02T09:25:09.257

Reputation: 1 185

4

I'm just pasting from the original article. Credits to his author. This worked for me.

Got some good news. We found a workaround. A colleague pointed me to the right direction (thanks Philippe! :-)). The properties of VPN connections are stored in PBK-files. There seems to be one file per user which contains all connections. The file is located here:

"C:\Users\[YOURUSER]\AppData\Roaming\Microsoft\Network\Connections\Pbk\rasphone.pbk"

You can open and edit it with an editor of your choice as it is a "good old" ini-like file. The property to be edited in this case is "IpPrioritizeRemote",wich is the same as "Use default gateway on the remote network". Just set it from "1" (true) to "0" and save. Afterwards it worked immediately for me as desired. There are plenty more properties if one has to change something else. I would strongly recommend to copy the file to a save place before starting to fiddle around with it This is surely not the preferred way to change those properties but a nice workaround for now. Be careful with it.

Diego Mayán

Posted 2015-08-02T09:25:09.257

Reputation: 41

2

Hi Diego Mayán. While it's great that you are trying to contribute, this really should be an edit to Wesley's answer since it looks like that's where the content is from, and not an entirely new answer. As a separate answer, this is basically plagiarising the Microsoft Answers content with no attribution.

– a CVn – 2015-08-05T13:47:56.573

1Diego: Thanks for pointing out that this is another's work - however please include a link/name for attribution purposes, as @MichaelKjörling suggests. Consider proposing an edit to Wesley's answer and deleting this. Thanks Michael for the constructive comment! – studiohack – 2015-08-05T14:28:04.350

3

Wesley

Posted 2015-08-02T09:25:09.257

Reputation: 62

6Link only answers are not appretiated here, if you instead extract the useful information from what you were pointing to, or paraphrase what was discussed, then provide a link, the answer will be complete and may bring you upvotes, and will live a long happy life , even when the link pointed to is dead or changed. – Psycogeek – 2015-08-02T11:06:39.523

2

In rasphone.pbk:

Found in: C:\Users\[YOURUSER]\AppData\Roaming\Microsoft\Network\Connections\Pbk\

As well as setting IpProritizeRemote=0, I found it necessary to set IPInterfaceMetric=1. This is the same as ticking the box "automatic metric" in the original properties form (I think).

Ian Haig

Posted 2015-08-02T09:25:09.257

Reputation: 21

0

I faced this problem for a couple of months. I tried every advice posted here and sadly nothing worked for my FortiClient SSL VPN connection.

Finally the solution came out with the latest Windows 10 update (build 1511).

Now I can change my IPv4 settings for my VPN connections as it should have been from the beginning.

Give it a try.

Ronaldo Rojas

Posted 2015-08-02T09:25:09.257

Reputation: 1

0

Changing the information In rasphone.pbk:

Found in: C:\Users[YOURUSER]\AppData\Roaming\Microsoft\Network\Connections\Pbk\

As well as setting IpProritizeRemote=0, I found it necessary to set IPInterfaceMetric=1. This is the same as ticking the box "automatic metric" in the original properties form.

I also Manually added my networks DNS servers at IpDnsAddress and IpDns2Address

This has solved my routing issues currently.

It is not the most elegant fix but it will do for now.

Jason Larson

Posted 2015-08-02T09:25:09.257

Reputation: 1