Mike Caron
Mike Caron

Reputation: 5784

How do I query user registry settings on a remote machine?

Supposing that I have a remote machine on which I'm an admin, and I want to query some values in the windows registry in HKEY_CURRENT_USER for a given user on a given machine. (The user may be logged in or off.)

Is it possible to query HKCU like this? And, if so, how?

Upvotes: 1

Views: 210

Answers (1)

SLaks
SLaks

Reputation: 888077

You need to find the user's SID (Security Identifier) and query HKEY_USERS\{SID}

Upvotes: 1

Related Questions