Deleting a Registry value's Parent Key

前端 未结 1 410
不知归路
不知归路 2021-01-28 15:51

We’re currently upgrading to a new Wireless system and with that we’re pushing out the SSID through a GPO. However, we would like to remove the existing SSID/Profile from the sy

相关标签:
1条回答
  • 2021-01-28 16:25

    Have you tried:

    Get-ItemProperty -Path $_.PSPath -Name "m_szSsid" 
    

    You also have $_.PSPath and also $_.PSParentPath, with this information, you should be able to use Remove-Item on the appropriate regkey

    0 讨论(0)
提交回复
热议问题