Search for Device Make, Model or UUID through PowerShell
- Scott Driver
- Sep 4, 2019
- 1 min read
I know you can find this anywhere on the web if you just google it but here is it again for you.
To find the make (manufacturer) and model of a device through PowerShell, have a look at these examples.
Make and Model
Get-WMIObject –class Win32_ComputerSystem

UUID
wmic csproduct get "UUID"

If you would like any further examples, please feel free to leave a comment.
Comments