Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fujitsu model detetection #276

Open
systxix opened this issue Mar 22, 2024 · 0 comments
Open

Fujitsu model detetection #276

systxix opened this issue Mar 22, 2024 · 0 comments

Comments

@systxix
Copy link

systxix commented Mar 22, 2024

                    "*Fujitsu*" {
                            $ComputerDetails.Manufacturer = "Fujitsu"
                            $ComputerDetails.Model = (Get-WmiObject -Class "Win32_ComputerSystem" | Select-Object -ExpandProperty Model).Trim()
                            $ComputerDetails.SystemSKU = (Get-WmiObject -Class "Win32_BaseBoard" | Select-Object -ExpandProperty SKU).Trim()
                    }

Hi!

Anyone else having trouble detecting Fujitsu models? I have found 2 issues here:

  1. In SystemSKU detection, -ExpandProperty SKU outputs nothing (null) and the script fails with an error message (you cannot call a method on a null-valued expression). But if you use -ExpandProperty Product instead, the SystemSKU detection works and the script runs.
  2. In addition to the manufacturer name Fujitsu, they also use FUJITSU CLIENT COMPUTING LIMITED name (at least with Fujitsu Lifebook E5413-s here in Estonia :) ) which is missing from script and leads to no package detection (even with modified -ExpandProperty.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant