积极答复者
win10专业版1809 64位本地网络bug

问题
-
win10专业版1809 64位,打到最新补丁,版本号17763.292,启用了Wired AutoConfig 服务(dot3svc),对本地网卡进行1x认证
做了以下配置更改
然后再用命令将配置文件导出到d盘,得到Ethernet0.xml
netsh lan export profile folder=d:
导出的配置文件如下
<?xml version="1.0" encoding="ISO-8859-1"?> <LANProfile xmlns="http://www.microsoft.com/networking/LAN/profile/v1"> <MSM> <security> <OneXEnforced>false</OneXEnforced> <OneXEnabled>true</OneXEnabled> <OneX xmlns="http://www.microsoft.com/networking/OneX/v1"> <cacheUserData>true</cacheUserData> <authMode>user</authMode> <singleSignOn> <type>preLogon</type> <maxDelay>10</maxDelay> <allowAdditionalDialogs>true</allowAdditionalDialogs> <userBasedVirtualLan>false</userBasedVirtualLan> </singleSignOn> <EAPConfig> <EapHostConfig xmlns="http://www.microsoft.com/provisioning/EapHostConfig"> <EapMethod> <Type xmlns="http://www.microsoft.com/provisioning/EapCommon">25</Type> <VendorId xmlns="http://www.microsoft.com/provisioning/EapCommon">0</VendorId> <VendorType xmlns="http://www.microsoft.com/provisioning/EapCommon">0</VendorType> <AuthorId xmlns="http://www.microsoft.com/provisioning/EapCommon">0</AuthorId> </EapMethod> <Config xmlns="http://www.microsoft.com/provisioning/EapHostConfig"> <Eap xmlns="http://www.microsoft.com/provisioning/BaseEapConnectionPropertiesV1"> <Type>25</Type> <EapType xmlns="http://www.microsoft.com/provisioning/MsPeapConnectionPropertiesV1"> <ServerValidation> <DisableUserPromptForServerValidation>false</DisableUserPromptForServerValidation> <ServerNames/> </ServerValidation> <FastReconnect>true</FastReconnect> <InnerEapOptional>false</InnerEapOptional> <Eap xmlns="http://www.microsoft.com/provisioning/BaseEapConnectionPropertiesV1"> <Type>26</Type> <EapType xmlns="http://www.microsoft.com/provisioning/MsChapV2ConnectionPropertiesV1"> <UseWinLogonCredentials>true</UseWinLogonCredentials> </EapType> </Eap> <EnableQuarantineChecks>false</EnableQuarantineChecks> <RequireCryptoBinding>false</RequireCryptoBinding> <PeapExtensions> <PerformServerValidation xmlns="http://www.microsoft.com/provisioning/MsPeapConnectionPropertiesV2">false</PerformServerValidation> <AcceptServerName xmlns="http://www.microsoft.com/provisioning/MsPeapConnectionPropertiesV2">false</AcceptServerName> <PeapExtensionsV2 xmlns="http://www.microsoft.com/provisioning/MsPeapConnectionPropertiesV2"> <AllowPromptingWhenServerCANotFound xmlns="http://www.microsoft.com/provisioning/MsPeapConnectionPropertiesV3">true</AllowPromptingWhenServerCANotFound> </PeapExtensionsV2> </PeapExtensions> </EapType> </Eap> </Config> </EapHostConfig> </EAPConfig> </OneX> </security> </MSM> </LANProfile>
然后我再测试将配置手动取消,看配置文件是否可以命令导入,执行导入的命令是
netsh lan add profile filename="Ethernet0.xml"
之后命令也会提示成功
但是之后再手动对设置进行更改就会报错,如图
不知道我又做了什么操作影响,之后连命令也不能执行了,提示拒绝访问
目前在其他系统上测试没有出现这种问题,这个问题该怎么解决,求助!
- 已编辑 郗混沌 2019年1月25日 2:07
答案
-
经过我努力尝试发现
通过命令来增加的配置,仅能通过删除命令,设置set命令也不行
C:\Windows\system32>netsh lan add profile filename="e:\ethernet0.xml" 已成功添加计算机配置文件。 C:\Windows\system32>netsh lan delete profile 删除了计算机配置文件。 C:\Windows\system32>
同理,gui界面的操作仅能通过gui界面操作取消,两个不通用
真的是醉了,微软怎么还会出现这种问题,gui界面和命令的结果不一样,希望能尽快修复bug
- 已标记为答案 郗混沌 2019年1月29日 8:35
-
微软已经给出了答复如下
首先, 您具体描述的问题是我们目前跟产品组已经确认了的已知问题,发生在RS5 (1809) 是由于我们在最新版本中machine profile有design Change。目前产品组已经获知到这个问题,我们将于下一版的release中fix, 具体release的时间目前还没有确定。
其次, 在下一版解决之前,贵方可以使用如下的临时解决方案:
Work around :
use netsh to delete profile first.
或者使用如下命令
add profile filename="Profile1.xml" interface="Local Area Connection" ß----------- Interface后的内容改成贵方真实的网卡名称。(We have to add a profile interface needs to be specified:)
- 已标记为答案 郗混沌 2019年1月30日 0:24
全部回复
-
您好,
感谢您在本论坛发帖。
请尝试重启,看之后能否在GUI界面正常修改。
如果不行,请使用命令将配置文件移除(如果您说的命令不能执行不是指所有的命令都不能执行的话),然后看能否在GUI界面修改。
还有,请问您在做这些操作中有没有更换过用户?(有可能权限的问题)
最好的祝福,
Leon
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com. -
您好,
请问若是您在其他计算机上安装这个最新的版本及更新后,会出现这样的问题吗?
并且请在您的出了问题的这台机器上将更新卸载,看问题是否会消失。
我查阅了微软的官方文档,关于这个更新的已知问题中并没有这个问题。
最好的祝福,
Leon
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com. -
经过我努力尝试发现
通过命令来增加的配置,仅能通过删除命令,设置set命令也不行
C:\Windows\system32>netsh lan add profile filename="e:\ethernet0.xml" 已成功添加计算机配置文件。 C:\Windows\system32>netsh lan delete profile 删除了计算机配置文件。 C:\Windows\system32>
同理,gui界面的操作仅能通过gui界面操作取消,两个不通用
真的是醉了,微软怎么还会出现这种问题,gui界面和命令的结果不一样,希望能尽快修复bug
- 已标记为答案 郗混沌 2019年1月29日 8:35
-
您好,
请问您的机器上有几张网卡?
您的命令没有指定接口,是否可能是你通过命令配置的网卡与您在GUI界面操作的网卡不是同一张。
此外,我和其他工程师正在1809的机器上做实验。一旦有任何发现,我们会立刻通知你。
感谢您的理解。如果您在此期间有进一步的信息,也请继续回帖,这有助于我们全面了解和分析这个问题。
最好的祝福,
Leon
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com. -
微软已经给出了答复如下
首先, 您具体描述的问题是我们目前跟产品组已经确认了的已知问题,发生在RS5 (1809) 是由于我们在最新版本中machine profile有design Change。目前产品组已经获知到这个问题,我们将于下一版的release中fix, 具体release的时间目前还没有确定。
其次, 在下一版解决之前,贵方可以使用如下的临时解决方案:
Work around :
use netsh to delete profile first.
或者使用如下命令
add profile filename="Profile1.xml" interface="Local Area Connection" ß----------- Interface后的内容改成贵方真实的网卡名称。(We have to add a profile interface needs to be specified:)
- 已标记为答案 郗混沌 2019年1月30日 0:24
-
您好,
很高兴听到您的问题有了解决方案。
此外,感谢您在论坛中分享您的解决方案,因为这对遇到类似问题的任何人都有帮助。
如果我们还能为您做任何其他事情,请随时在论坛中发帖。
最好的祝福,
Leon
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- 已编辑 HK.Leon 2019年1月29日 8:50