I am using the PowerShell command Get-WmiObject Win32_SystemEnclosure | Select-Object -ExpandProperty ChassisTypes, and it returns a value of 35. I am trying to identify what this chassis type represents, but I cannot find this information in our document

Rohit Ramchandra Shinde 20 Reputation points
2025-03-17T11:22:18.77+00:00

I am using the PowerShell command Get-WmiObject Win32_SystemEnclosure | Select-Object -ExpandProperty ChassisTypes, and it returns a value of 35. I am trying to identify what this chassis type represents, but I cannot find this information in our documentation. Can someone clarify what chassis type 35 corresponds to and provide any relevant details about it?

https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-systemenclosure User's image

Windows for business Windows Server User experience PowerShell
0 comments No comments
{count} votes

Accepted answer
  1. Rich Matheisen 47,901 Reputation points
    2025-03-17T18:51:30.12+00:00

    According to this: https://techuisitive.com/enclosure-chassis-types-value-description-configmgr-sccm/

    The value "35" represents a "Mini PC"


1 additional answer

Sort by: Most helpful
  1. Castorix31 90,521 Reputation points
    2025-03-18T08:45:32.6133333+00:00

    Those values are defined by SMBIOS

    You can find official documentation in various PDF on DMTF site, like : https://www.dmtf.org/sites/default/files/standards/documents/DSP0134_3.8.0WIP50.pdf

    At

    7.4.1 System Enclosure or Chassis Types

    22h Embedded PC

    23h Mini PC

    24h Stick PC

    => 23h = 35 = "Mini PC"

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.