- General Command:
- Command:
WMIC Csproduct get name
- Description: This command fetches the name of the workstation model.
- Output Example:
Model Name: HP EliteBook 840 G5
- Command:
- For LENOVO Devices:
- Command:
WMIC csproduct get version
- Description: Lenovo devices often store their model information in the version attribute.
- Output Example:
Version: ThinkPad T480
- Command:
- Displaying in Array Mode:
- Command:
wmic csproduct list full
orwmic csproduct list full /format:csv
- Description: These commands display detailed information about the workstation in a list format. The latter command outputs the information in CSV format, which can be useful for documentation or further processing.
- Output Example:
Name=HP EliteBook 840 G5, UUID=4C4C4544-0046-4E10-8056-B8C04F4A3132, ...
- Command:
0 Comments