How to create Batch file for get your computer information.

How to create Batch file for get your computer information.
Photo by Goran Ivos / Unsplash
  1. Open Notepad and type command this.
@echo off
systeminfo

@echo off
wmic bios get serialnumber

pause

-Line 1,2 order to show Systeminformation of computer.

-Line 3,4 order to show Serialnumber of computer.

-Line 5 stop process all.

  1. Choose save type .bat
  1. Double click .bat file for run.

end..