Solved Windows Gurus -- need command to get Disk UUIDD's


jimbo45

Well-known member
Pro User
VIP
Local time
11:30 PM
Posts
4,031
Location
Hafnarfjörður IS
OS
Windows XP,7,10,11 Linux Arch Linux
Hi folks
Is there a command or a powershell command in Windows to get the Disk UUIDD's all listed. I know that you can mess around with partition managers but a nice simple command would be great to "replicate" this type of thing.

Screenshot_20221115_103838.png

I'm getting some "mis-matches with conflicting UUID's on a W11 desktop system and I don't want to mess around re-installing stuff if I can avoid it.

Thanks

and Cheers
jimbo
 

My Computer

System One

  • OS
    Windows XP,7,10,11 Linux Arch Linux
    Computer type
    PC/Desktop
    CPU
    2 X Intel i7
Directly from PS command line:

(Get-WmiObject -Class Win32_ComputerSystemProduct).UUID


By computer name:

(Get-WmiObject -Class Win32_ComputerSystemProduct -ComputerName SERVER1).UUID

Or without PS:

wmic path win32_computersystemproduct get UUID
 

My Computers

System One System Two

  • OS
    Win11 All /Debian/Arch
    Computer type
    Laptop
    Manufacturer/Model
    ASUSTeK COMPUTER INC. TUF Gaming FX705GM
    CPU
    2.20 gigahertz Intel i7-8750H Hyper-threaded 12 cores
    Motherboard
    ASUSTeK COMPUTER INC. FX705GM 1.0
    Memory
    24428 Megabytes
    Graphics Card(s)
    Intel(R) UHD Graphics 630 / NVIDIA GeForce GTX 1060
    Sound Card
    Intel(R) Display Audio / Realtek(R) Audio
    Monitor(s) Displays
    Integrated Monitor (17.3"vis)
    Screen Resolution
    FHD 1920X1080 16:9
    Hard Drives
    2 SSD SATA/NVM Express 1.3
    WDS500G2B0A-00SM50 500.1 GB
    WDCSDAPNUW-1002 256 GB
    PSU
    19V DC 6.32 A 120 W
    Cooling
    Dual Fans
    Mouse
    MS Bluetooth
    Internet Speed
    Fiber 1GB Cox -us & ADSL Bouygues -fr
    Browser
    Edge Canary- Firefox Nightly
    Antivirus
    Windows Defender
    Other Info
    VMs of Windows 11 stable/Beta/Dev/Canary
    VM of XeroLinux- Arch based & Debian 12
  • Operating System
    Windows 11 Insider Canary
    Computer type
    Laptop
    Manufacturer/Model
    ASUS X751BP
    CPU
    AMD Dual Core A6-9220
    Motherboard
    ASUS
    Memory
    8 GB
    Graphics card(s)
    AMD Radeon R5 M420
    Sound Card
    Realtek
    Monitor(s) Displays
    17.3
    Screen Resolution
    1600X900 16:9
    Hard Drives
    1TB 5400RPM
Directly from PS command line:

(Get-WmiObject -Class Win32_ComputerSystemProduct).UUID


By computer name:

(Get-WmiObject -Class Win32_ComputerSystemProduct -ComputerName SERVER1).UUID

Or without PS:

wmic path win32_computersystemproduct get UUID
Thanks

Much appreciated.
Setting as Solved.


Cheers
jimbo
 

My Computer

System One

  • OS
    Windows XP,7,10,11 Linux Arch Linux
    Computer type
    PC/Desktop
    CPU
    2 X Intel i7
Back
Top Bottom