Get FULL System Info using Batch + Explained ;)

Status
Not open for further replies.

l0calh0st

Active Member
4,052
2010
713
0
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:
[SLIDE]http://img837.imageshack.us/img837/5329/scri.png[/SLIDE]

Cheerz
 
1 comment
Status
Not open for further replies.
Back
Top