我尝试使用如何使用Set-NetConnectionProfile更改NetConnectionProfile的名称

$Profile=Get-NetConnectionProfile -InterfaceIndex 35
$Profile.Name = "Network1"

错误是
"Name" is a ReadOnly property.
 At line:1 char:1
+ $Profile.Name = "Network1"
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : NotSpecified: (:) []
+ FullyQualifiedErrorId : ReadOnlyCIMProperty

如何更改名称的只读属性?帮我

最佳答案

您可以通过直接注册表版本执行此操作。

在 key 下
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles

您可以看到网络配置文件键(通过uuid),并且可以更改适当的网络ProfileName值。

关于powershell - 如何在PowerShell中使用Set-NetConnectionProfile更改NetConnectionProfile的名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17051159/

10-10 17:02