C#獲取電腦的唯一標示UUID 非CPU型號 mac
阿新 • • 發佈:2019-01-03
在C# 裡面 有時候要用到獲取電腦問唯一標示 其他什麼獲取cpu mac地址 這些都是很大機會一樣的 通過我和同事的電腦進行測試 我的配件和他的配件一樣的 so
很多東西一樣 這裡獲取的 肯定是唯一的 標示
string code = null; SelectQuery query = new SelectQuery("select * from Win32_ComputerSystemProduct"); using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(query)) { foreach (var item in searcher.Get()) { using (item) code = item["UUID"].ToString(); } } return code;