I wonder how stable a machineGUID is. Can a user change it? If so how and what would happen to there Windows auth key?

link|improve this question
feedback

1 Answer

It can be found here:

HKLM\Software\Microsoft\Cryptography\MachineGuid

You need admin permissions to change it.

Here's some C# code to do it:

var machineGuid = Registry.LocalMachine; 
machineGuid = machineGuid.OpenSubKey(@"SOFTWARE\Microsoft\Cryptography", RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryRights.FullControl); 

No idea if it will change the windows auth key.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.