Save & rename to *.cmd:
:: RENAME SystemInfo.cmd.txt to SystemInfo.cmd
@echo off
MODE CON: COLS=128
color f4
cls
ipconfig
tracert -4 -d -h 1 %COMPUTERNAME%
GETMAC /V /NH
ECHO.
color f2
systeminfo.exe
ECHO.
color f4
powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "$cs = Get-CimInstance Win32_ComputerSystem; $bios = Get-CimInstance Win32_BIOS; $sku = Get-CimInstance Win32_ComputerSystemProduct; [PSCustomObject]@{Model=$cs.Model; Name=$cs.Name; Manufacturer=$cs.Manufacturer; SystemType=$cs.SystemType; SystemSKUNumber=$cs.SystemSKUNumber; BIOSSerialNumber=$bios.SerialNumber} | Format-Table -AutoSize"
powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "get-Disk"
VER
ECHO.
color f0
SET /p q=Press Enter to exit: