首页 > 解决方案 > 如何从 UWP 读取系统中的制造商信息(详细序列号)

问题描述

到目前为止,我设法获得了 Productname 和 SKU

    var clientDeviceInformation = new EasClientDeviceInformation();
    string Model = clientDeviceInformation.SystemProductName;
    string SKU = clientDeviceInformation.SystemSku;

但我找不到任何方法来获取系统序列号。在 W32-forms-application 中,我们可以通过System.Managementand来获取它Win32_BIOS,但这对于 UWP 来说似乎是没有办法的。

有人对我有提示吗?

标签: c#windowsuwp

解决方案


推荐阅读