For example with PowerShell :
(Get-Item -path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost").GetValue("LocalSystemNetworkRestricted")
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
can i get the result query of HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost?
1.run regedit
2.find key under Windows NT\CurrentVersion\Svchost
3.find key LocalSystemNetworkRestricted and double-click
4.give me the result.
For example with PowerShell :
(Get-Item -path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost").GetValue("LocalSystemNetworkRestricted")
Hi. Thank you for your question and reaching out. I’d be more than happy to help you with your query
To get the result query of HKEYLOCALMACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost, you can use the reg query command in the Command Prompt. To do this, open the Command Prompt, then type reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost". This command will return the list of values and subkeys associated with the Svchost registry key.
If the reply was helpful, please don’t forget to upvote or accept as answer, thank you.