答案1
以下内容假设需要从 GUI 更改 APN,并且netsh
可以使用命令启用它。但netsh
不需要完全避免。
在安装和卸载与我的 USB 3G 调制解调器捆绑的软件后,我遇到了类似的问题。我无法在 UI 中编辑 APN,并且在连接尝试时我收到了"Can't connect to this network. Enter an APN and try again"
,但没有输入 APN 的选项(如 Damo 的屏幕截图所示)
我用它解决了
netsh mbn delete profile interface="Mobile Broadband Connection" name="myProfileName"
而不是使用由以下函数返回的字段“ ”"Mobile Broadband Connection"
的值name
netsh mbn show interfaces
而不是"myProfileName"
使用返回的值
netsh mbn show profiles
此后,操作系统(Win 10 Enterprise 2016 LTSB 64Bit)几乎立即(或者按下托盘中的连接图标后?我现在不记得具体时间了)自动创建一个新的连接配置文件,其中可以从操作系统的 GUI 更改 APN。
如果上述说明没有帮助并且操作系统(或其他软件)再次生成禁用 APN 编辑的新配置文件,请尝试将 .XML 文件(某些配置还需要 .ICO,在 .XML 中引用)复制到%ALLUSERSPROFILE%\Microsoft\WwanSvc\Profiles
临时位置,编辑它,删除配置文件(如上所述)并使用重新应用编辑的 .XML netsh mbn add profile
。
ProfileCreationType
尝试将 .XML 中的和/或字段的值更改AuthProtocol
为以下链接中列出的其他内容:
https://msdn.microsoft.com/en-us/library/windows/desktop/dd323293(v=vs.85).aspx
https://msdn.microsoft.com/en-us/library/windows/desktop/dd323274(v=vs.85).aspx