How can I get the GUID for network adapters on my system?

I wrote a simple tool that emulates * nix "ifconfig -a" in Delphi and posted it here on SO. However, I would also like to get the adapter GUID as well. Is there a way to do this in Delphi without using WMI?

+3
source share
1 answer

check this windows registry key

HKEY_LOCAL_MACHINE → SOFTWARE → Microsoft → WindowsNT → CurrentVersion-> NetworkCards not counting each number, see value ServiceName, this is a GUID

enter image description here

+5
source

All Articles