I Tried Using How to Change name of the NetConnectionProfile Using Set-NetConnectionProfile
$Profile=Get-NetConnectionProfile -InterfaceIndex 35
$Profile.Name = "Network1"
The Error is
"Name" is a ReadOnly property.
At line:1 char:1
+ $Profile.Name = "Network1"
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) []
+ FullyQualifiedErrorId : ReadOnlyCIMProperty
How to Change the Read only Property of the name?? Help Me