Toshiba model and serial number
By Mia Morrison •
I'm using Toshiba Satellite and the serial sticker is already ruined. Can someone help me know how can i find the serial and model number? I opened the battery case and turned my laptop upside down but found nothing. Help please
91 Answer
Most laptops (and servers; less often desktops) have this information stored in the DMI data block.
From within Windows, you can retrieve it using:
wmic computersystem get manufacturer,modelwmic bios get serialnumberwmic baseboard get serialnumberwmic <section> get /format:list
For Linux the DMI information can be dumped using:
dmidecodecat /sys/devices/virtual/dmi/id/product_namecat /sys/devices/virtual/dmi/id/product_serialgrep . /sys/devices/virtual/dmi/id/*
(All commands require root or Administrator privileges.)
1