What do the GUIDs in HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Network represent?

1

1

I'm referring specifically to the GUIDs beneath

HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Network{4d36e974-e325-11ce-bfc1-08002be10318}

{4d36e974-e325-11ce-bfc1-08002be10318} seems to remain static across different boxes, but the GUIDs in the subkeys do not. I'm working on a registry hack for a service in one of the subkeys and at this point all I really know is that it's not the GUID for the network interface, so I'm wondering if it matters if I push a registry change with a static GUID.

If it does matter, I need to know what that GUID references so that I can adjust the script to pull that GUID and use it when creating the subkey.

Brad McCuller

Posted 2015-10-23T15:04:11.783

Reputation: 11

I found my own answer. The GUIDs in the subkeys are randomly generated, which you can see for yourself if you uninstall and then reinstall File and Print Sharing (for example). It will come back with a new GUID every time. – Brad McCuller – 2015-10-27T14:40:27.080

No answers