This example will explain how to export FULL system info.

NOTE: This CMD coding level is: N00B.

Here is the batch code:
Code: 
: FULL SYSTEM INFO - Example by l0calh0st
: START CMD

: Set the dialog title
title FULL SYSTEM INFO - Example by l0calh0st

: Turn off the fucking echo
@echo off

: Set the color of background and text
color 0c

: Display nothing but add whitespace
echo.

: Displaying text
echo Exporting System Info...

: Using the SYSTEMINFO command and export it directly into a text file
SYSTEMINFO>INFO.txt

: Display nothing but add whitespace
echo.

: Displaying text
echo INFO.txt Exported!

: Open the newly exported file in notepad
notepad.exe INFO.txt

: Wait on user
pause

: STOP CMD
(For the noobs, copy and paste the above code in Notepad and save the file wil extension .BAT and run it!)

Screenshot:


Cheerz
l0calh0st Reviewed by l0calh0st on . Get FULL System Info using Batch + Explained ;) This example will explain how to export FULL system info. NOTE: This CMD coding level is: N00B. Here is the batch code: : FULL SYSTEM INFO - Example by l0calh0st : START CMD : Set the dialog title Rating: 5