This example will explain how to export FULL system info.
NOTE: This CMD coding level is: N00B.
Here is the batch code:
(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
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
Screenshot:
[SLIDE]http://img837.imageshack.us/img837/5329/scri.png[/SLIDE]
Cheerz