M BUZZ CRAZE NEWS
// news

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

9

1 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,model
  • wmic bios get serialnumber
  • wmic baseboard get serialnumber
  • wmic <section> get /format:list

For Linux the DMI information can be dumped using:

  • dmidecode
  • cat /sys/devices/virtual/dmi/id/product_name
  • cat /sys/devices/virtual/dmi/id/product_serial
  • grep . /sys/devices/virtual/dmi/id/*

(All commands require root or Administrator privileges.)

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy