Let's say my PC is A, and a remote one is B. Both are windows machines.
From A I start an executable that is on a shared location in PC B. Using the Process and ProcessStartInfo classes.
When the remote process tries to access the registry, it access PC A's registry, even though it runs on B.
I understand this is because I run the process from PC A remotely, but how can I access PC B's registry instead?
I've tried setting ProcessStartInfo.LoadUserProfile to true, no luck.
Thanks