Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When will windows uuid change on the same system

Tags:

uuid

windows

I'm wondering about what the Windows UUID that you can get with "wmic path win32_computersystemproduct get uuid" really comes from and when it will change. Microsoft says, the UUID comes from the SMBIOS information (https://msdn.microsoft.com/en-us/library/aa394105(v=vs.85).aspx), what seems to me that the UUID only depends on the system's BIOS. So what when I do one of the following things:

  • (a) Reinstall Windows on the same system
  • (b) Install a second Windows on the same system
  • (c) Clone windows to another disk and then use this disk in the same system

Will any of this actions make the UUID to be changed? Or is it possible to have to different Windows systems with the same UUID (b)?

Thanks a lot

like image 478
Powerpaule Avatar asked Jun 15 '16 13:06

Powerpaule


People also ask

Does computer UUID change?

The UUID is based on the physical computer's identifier and the path to the virtual machine's configuration file. This UUID is generated when you power on or reset the virtual machine. As long as you do not move or copy the virtual machine to another location, the UUID remains constant.

Can you change UUID?

To change the UUID of the filesystem, you need to unmount it. Once the device is unmounted, use tune2fs command followed by -U flag to generate random UUID. Once the UUID is changed, run the following command to verify the changes.

What is Windows UUID?

The UUID structure defines a Universally Unique Identifier (UUID). A UUID provides a unique designation of an object such as an interface, a manager entry-point vector, or a client object. The UUID structure is a typedef 'd synonym for the GUID structure.


1 Answers

None of these actions will change the UUID. The UUID is a machine-unique ID, like a serial number. It is stored on the motherboard (typically in the system flash eeprom, along with the BIOS) and reported by the BIOS to the OS in an SMBIOS structure, as you guessed.

like image 170
Kimon Berlin Avatar answered Sep 21 '22 21:09

Kimon Berlin