Wednesday, October 24, 2007
Today, Exam
i have study nothing at all !
im sleeping in class time ... dam it will be a real ecech
will give more details !
Amazing how we make money
you, what are you doing to make money ?
Personaly im trying new stuff arround yahoo groups.
Posting ads into much group as possible getting me good traffic, how ever it take time !
and im not making good money of it.
im curius to know what your trick !
Saturday, October 20, 2007
Prevent Windows Messenger from automatically starting.
- Right-click on the Windows Messenger icon (
) in the Systray. - Click Open.
- Within Windows Messenger click Tools and then Options.
- Click the Preferences tab.
- Within Preferences uncheck the "Run Windows Messenger when Windows starts" and "Allow Windows Messenger to run in the background" and click Ok.
Who invented the Internet?
Batch file ABCs
Batch files are files that allow MS-DOS and Microsoft Windows users to create a lists of commands and/or programs to run once the batch file has been executed. For example, a batch file could be used to run frequently run commands, deleting a series of files, moving files, etc. A simple batch file does not require any special programming skills and can be done by users who only know DOS commands.
A good example of a batch file for someone who is more familiar with Windows or the MacOS is to think of a batch file as a shortcut in Windows or an icon on the MacOS. Much like a shortcut, batch files could be used to run one or more commands and/or programs through the command line.
Another example of a very well known batch file is the autoexec.bat, which is a simple boot file loaded each time the computer is loaded on MS-DOS and early Windows computers. This batch file contained all the necessary commands and programs used to run MS-DOS and Windows each time the computer booted.
Here some Dos Command
http://www.computerhope.com/msdos.htm#02
What is DOS ? Learn more about !
Although MS-DOS is not commonly used today, the command shell used through Microsoft Windows is.
now a day we mainly remplaced the batch script with .net script or similaire.
At the begening hacker was using a lot MS-DOS to do some exploie.
You can make you own Batch file.
creat a file named toto.bat edit it with notepad
in it write
@echo off
echo Hello World !
echo.
echo Push a key to exit
pause > nul
What this script will do ?
Well we ask the programme to not show command with @echo off
Then we write in the console "Hello World !"
then echo. mean we skip a line
then it will write "Push a key to exit"
and finaly pause > nul mean once you push any key it's gona close the console.
Here you make your very first batch script !