My Full System Info Script

Discuss Windows Vista/Server 2008 to Windows 10.
Post Reply
arcadianblue
Posts: 56
Joined: Sat May 08, 2021 4:07 pm

My Full System Info Script

Post by arcadianblue »

I created a useful script that will display inportant information about your computer, like serial number, CPU information, operating system build and etc.
Copy the text below into Notepad and save as a bat file. Must run as elevated privileges in order to execute it. Note: some builds require "SYSTEMINFO" be changed to "SYSTEMINFO.exe" in order to function.

Image
Image

@echo off

echo. --------- Computer System ---------

echo.

wmic baseboard get product,Manufacturer,version,serialnumber

@echo off

wmic ComputerSystem get Model

@echo off

wmic ComputerSystem get TotalPhysicalMemory

@echo off

echo.

echo. --------- Motherboard ---------

echo.

wmic bios get serialnumber

@echo off

echo. --------- Processor Information ---------

echo.

wmic CPU get architecture

@echo off

wmic cpu get processorid

@echo off

wmic cpu get socketdesignation

@echo off

wmic cpu get caption

@echo off

echo. --------- System Information ---------

echo.

wmic computersystem get name,systemtype

@echo off

wmic nic get macaddress,description

@echo off

echo. --------- Windows Operation System ---------

echo.

VER

@echo off

wmic os get osarchitecture

@echo off

SYSTEMINFO
echo.
echo.
echo. Created By Steven W. Tutty and Matthias De Coster (Rusty Star On Facebook)
echo.
echo.
pause

dixieLH
User avatar
Posts: 369
Joined: Mon Apr 12, 2021 8:59 pm

Re: My Full System Info Script

Post by dixieLH »

should skip listing installed KB patches
its a nightmare

arcadianblue
Posts: 56
Joined: Sat May 08, 2021 4:07 pm

Re: My Full System Info Script

Post by arcadianblue »

dixieLH wrote:
Thu Jul 22, 2021 9:15 pm
should skip listing installed KB patches
its a nightmare
Good idea if you do a lot of updates. I only do those really necessary to benefit the security or the performance, as most add unwanted telemetry to the OS.

Post Reply