Include "Form Factor" in Agent Details and Reports.
I would like to see the "form factor" of the agent devices in the display and reports. When budgeting, we need to determine laptops vs desktops and currently need to discern what's what with a combination of excel formulas and manual entry. Having this readily available (without custom scripts) would be appreciated.
Backend would ideally run (one-time):
$ChassisType = (Get-CimInstance Win32_SystemEnclosure).ChassisTypes[0]
switch ($ChassisType) {
3 {"Desktop"}
4 {"Low Profile Desktop"}
6 {"Mini Tower"}
7 {"Tower"}
8 {"Portable"}
9 {"Laptop"}
10 {"Notebook"}
11 {"Handheld"}
12 {"Docking Station"}
14 {"All in One"}
23 {"Space-saving"}
30 {"Tablet"}
31 {"Convertible"}
32 {"Detachable"}
default {"Unknown"}
}
