1 echo ipconfig all batch files

Опубликовано: 15 Май 2026
на канале: Richard Mehok
33
0

1 echo_ipconfig_all.txt

echo on
ipconfig/all
pause

set message=Hello World
echo %message%
pause

SET /A a = 5
SET /A b = 10
SET /A c = %a% + %b%
echo %c%
pause

_________________________________________________________
2 win_bat_files.txt

@ECHO OFF

:: This batch file details Windows 10, 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 | findstr /c:"OS Name"

systeminfo | findstr /c:"OS Version"

systeminfo | findstr /c:"System Type"

:: Section 2: Hardware information.

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

ECHO HARDWARE INFO

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

systeminfo | findstr /c:"Total Physical Memory"

wmic cpu get name

wmic diskdrive get name,model,size

wmic path win32_videocontroller get name

wmic path win32_VideoController get CurrentHorizontalResolution,CurrentVerticalResolution

:: Section 3: Networking information.

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

ECHO NETWORK INFO

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

ipconfig | findstr IPv4ipconfig | findstr IPv6

START https://support.microsoft.com/en-us/w...

PAUSE