Getting Exact Model Information for Your Computer

britechguy

Well-Known Member
Reaction score
5,017
Location
Staunton, VA
I just wrote up what follows because I've recently noticed that under Windows 11 exact model number information is very often presented, and that was not the case in the past. So many end users have no idea of where to look for exact model number information and, in the case of laptops, depending on how they're handled, that information can end up being worn off of the sticker on the underside.

While it's not 100% accurate, it's certainly worth having a user try if you need exact model number information and they don't know it.

[Last Update: 2025-11-11]

Getting Exact Model Information for Your Computer

Note:
The older the computer, the less likely it is that this will necessarily be the exact model number. But for most computers produced since somewhere around the year 2020, it likely will be correct.

  • Hit Windows Key + I to open Settings.
  • Enter [Rename] in the search box.
  • Hit down arrow until you land on either View your PC name or Rename your PC then hit Enter.
  • You will be taken to the Rename this PC button in Windows Settings, System, About.
  • To the left of that button you will see two things listed:
    • The current name of your PC at the top
    • Your PC’s exact model number beneath it
  • If you are a screen reader user, you can get to this information using Object Navigation in NVDA or the Touch Cursor in JAWS.
    • For NVDA, hit NVDA + NumPad 4. The first time you do this you land on the exact model number, and if you do it again, you land on what your PC is currently named (how it will appear in network lists by PC name).
    • For JAWS, hit Shift + NumPad Plus to activate the Touch Cursor. Hitting Left Arrow once will land you on the exact model number. Hitting Left Arrow Again will land you on your PC Name.
 
Last edited:
Good idea Brian. I too have noticed in recent versions of Windows 11 the PC's model is listed in System > About.
Although my own office PC is a custom-built tower with retail motherboard and AMD 5600G processor. It currently shows "System Product Name" as the model. As you said it doesn't always have precise model details!
 
We have used a script in our RMM to get model name. In the past, it used the wmic command: wmic csproduct get name. With the demise of wmic, we switched to powershell: Get-CimInstance -ClassName Win32_ComputerSystem | Select-Object -ExpandProperty Model.

Off topic, I do not know why MS abandoned wmic. There isn't a single powershell equivalent that isn't longer and more programatically complicated, IMO.
 
Back
Top