UWP开发-获取设备唯一ID

Posted 嬴政

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UWP开发-获取设备唯一ID相关的知识,希望对你有一定的参考价值。

EasClientDeviceInformation deviceInfo = new EasClientDeviceInformation();

this.showDeviceInfo.Items.Add("设备友好名称:" + deviceInfo.FriendlyName);
this.showDeviceInfo.Items.Add("设备标识符:" + deviceInfo.Id);
this.showDeviceInfo.Items.Add("设备操作系统:" + deviceInfo.OperatingSystem);
this.showDeviceInfo.Items.Add("设备固件版本:" + deviceInfo.SystemFirmwareVersion);
this.showDeviceInfo.Items.Add("设备硬件版本:" + deviceInfo.SystemHardwareVersion);
this.showDeviceInfo.Items.Add("设备制造商:" + deviceInfo.SystemManufacturer);
this.showDeviceInfo.Items.Add("设备系统产品:" + deviceInfo.SystemProductName);
this.showDeviceInfo.Items.Add("设备SKU:" + deviceInfo.SystemSku); 

 

如需要详细到设备每个模块的信息使用:

System.Text.StringBuilder sb = new System.Text.StringBuilder();
Windows.Devices.Enumeration.DeviceInformationCollection dc = await Windows.Devices.Enumeration.DeviceInformation.FindAllAsync();

foreach (Windows.Devices.Enumeration.DeviceInformation item in dc)
{
    sb.Append(item.Name + ":\t" + item.Id + "\r\n");
} 

 

以上是关于UWP开发-获取设备唯一ID的主要内容,如果未能解决你的问题,请参考以下文章

UWP 应用获取各类系统用户信息 - 商店授权信息零售演示模式信息广告 IDEAS 设备信息硬件识别信息移动网络信息

漫谈唯一设备ID

Android设备唯一ID实现方案

UWP 应用获取各类系统用户信息 - 设备和系统的基本信息应用包信息用户数据账户信息和用户账户信息

如何在 iOS 中使用 Core Bluetooth 获取蓝牙设备的唯一 ID

从 C# 控制台应用程序枚举 UWP MIDI API 设备?