Update Utility Scripts/System Info.bat

This commit is contained in:
2025-08-05 15:23:22 +00:00
parent 7c445f6331
commit e8f7826b07
@@ -1,31 +1,31 @@
@ECHO OFF @ECHO OFF
:: This batch file details Windows 10, hardware, and networking configuration. :: This batch file details Windows 10, hardware, and networking configuration.
TITLE My System Info TITLE My System Info
ECHO Please wait... Checking system information. ECHO Please wait... Checking system information.
:: Section 1: Windows 10 information :: Section 1: Windows 10 information
ECHO ========================== ECHO ==========================
ECHO WINDOWS INFO ECHO WINDOWS INFO
ECHO ============================ ECHO ============================
systeminfo | findstr /c:"OS Name" systeminfo | findstr /c:"OS Name"
systeminfo | findstr /c:"OS Version" systeminfo | findstr /c:"OS Version"
systeminfo | findstr /c:"System Type" systeminfo | findstr /c:"System Type"
:: Section 2: Hardware information. :: Section 2: Hardware information.
ECHO ============================ ECHO ============================
ECHO HARDWARE INFO ECHO HARDWARE INFO
ECHO ============================ ECHO ============================
systeminfo | findstr /c:"Total Physical Memory" systeminfo | findstr /c:"Total Physical Memory"
ECHO CPU ECHO CPU
wmic cpu get name wmic cpu get name
ECHO SSD/HDD ECHO SSD/HDD
wmic diskdrive get name,model,size wmic diskdrive get name,model,size
Echo Graphics Driver Echo Graphics Driver
wmic path win32_videocontroller get name wmic path win32_videocontroller get name
:: Section 3: Networking information. :: Section 3: Networking information.
ECHO ============================ ECHO ============================
ECHO NETWORK INFO ECHO NETWORK INFO
ECHO ============================ ECHO ============================
ipconfig | findstr IPv4 ipconfig | findstr IPv4
ipconfig | findstr IPv6 ipconfig | findstr IPv6
PAUSE PAUSE
START https://support.microsoft.com/en-us/windows/windows-10-system-requirements-6d4e9a79-66bf-7950-467c-795cf0386715 START https://support.microsoft.com/en-us/windows/windows-10-system-requirements-6d4e9a79-66bf-7950-467c-795cf0386715
START https://www.microsoft.com/en-us/windows/windows-11-specifications?r=1 START https://www.microsoft.com/en-us/windows/windows-11-specifications?r=1