0

i m new here in windows development ,any help will be fine for me

Do windows devices have a unique id and if so, what is a simple way to access it via c#?

Rajendra
  • 55
  • 5
  • Should probably read this: http://stackoverflow.com/questions/13975315/get-unique-device-id-udid-under-windows-phone-8 and http://stackoverflow.com/questions/16893746/udid-for-windows-8 – Aivar Feb 25 '15 at 08:30

1 Answers1

1

Yes there is a property called DeviceUniqueId within the DeviceExtendedProperties class. You could simply retrieve that value as:

DeviceExtendedProperties.GetValue("DeviceUniqueId")

For more:

Community
  • 1
  • 1
Kulasangar
  • 9,046
  • 5
  • 51
  • 82