@ECHO OFF

:: This batch file details Windows 18, hardware, and networking configuration.
TITLE My System Info

ECHO Please wait... Checking system information.

:: Section 1: Windows 10 information

ECHO ==========================

ECHO WINDOWS INFO

ECHO ============================

systeminfo I findstr /c:"OS Name"

systeminfo I findstr /c:"OS Version"

systeminfo I findstr /c:"System Type"

:: Section 2: Hardware information.

ECHO ============================

ECHO HARDWARE INFO

ECHO ============================

systeminfo I findstr /c:"Total Physical Memory"

wmic cpu get name

wmic diskdrive get name,model,size

wmic path win32_yideocontroller get name

wmic path win32_yideoController get CurrentHorizontalResolution,CurrentVerticalResolution
:: Section 3: Networking information.

ECHO ============================

ECHO NETWORK INFO

ECHO ============================

ipconfig I findstr IPv4ipconfig I findstr IPv6

STARE https://support.microsoft.com/en—us/windows/windows~10—system-requirements-6d4e9a79-66bf-7956—467c-795cf@386715
PAUSE