can i get the result query of HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost?

jourone 11 Reputation points
2023-02-19T15:43:17.4866667+00:00

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.

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Castorix31 90,686 Reputation points
    2023-02-19T21:59:21.82+00:00

    For example with PowerShell :

    (Get-Item -path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost").GetValue("LocalSystemNetworkRestricted")

    1 person found this answer helpful.

  2. Limitless Technology 44,766 Reputation points
    2023-02-20T12:55:37.17+00:00

    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.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.