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
名前の読み取り専用プロパティを変更するには?? 助けて