Powered By Blogger

Sunday, 28 April 2013

Trick 2 Lock Your PRIVATE Folder..!!

 
Suppose, you want to lock the folder games in d: which  
has the path D:\Games.In the same drive create a text file
and type
ren games
games.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Now save
this text file as loc.bat

Stop users who disabled JavaScript.


One common way for users to block adverts is to simply disable JavaScript altogether. Although this method is not flawless since some plugins allow users to disable meta redirects; this ought to prove sufficient to deter the majority of users!
<noscript><meta http-equiv="refresh" content="0;url=noscript.php" /></noscript>
where the page noscript.php displays a polite warning to non-JS users requesting they enable JavaScript. Enjoy!

Show password field!


Now this could be very useful if you ever want to be able to see your password as you're typing it to make sure you haven't made any mistakes. Here is a simple password field. It says "password". Click the button below to show it's contents!





The very simple code which does that is this.



javascript:void(document.getElementById('password').type='text')

Just put that in the address bar as always!


NOTE: To get the id of the element just look at the source code (usually View --> Source Code)

Shake Your Web Browser.

 Place the following code in browser's Address bar.

CODE : 

javascript:function Shw(n) {if (self.moveBy) {for (i = 35; i > 0; i--) {for (j=n;j>0;j--){self.moveBy(1,i);self.moveBy(i,0);self.moveBy(0,-i);self.moveBy(-i,0); } } }} Shw(6)-accident

Picture for Listing #3. Size should be 500x300
As you can see, the hyper browser is very amusing, but wouldn't last long enough for a sneak-attack prank. For this escapade, you'll likely need to edit the code to last a little longer. To do so, find the statement that says i = 35, and change the number to something larger (300 will buy you about 30 seconds, 600 a minute, and so on).

Friday, 26 April 2013

Install Window 7 using USB drive.


Installing windows 7 using USB drive

What are basic requirements ?
-Windows 7 DVD
-And a USB drive having minimum capacity of 4GB.


 What  are advantages if we install window 7 using flash drive ?

-First overall speed of the installation willl increase significantly.
-Carrying USB is more easy and convienient than DVD.
-It also become possible to install windows 7 on  that systems which are not having  DVD drives    such as Net book..


Steps of installing windows 7 using USB drive.
---- Insert USB
- Run the command prompt as administrator. (Type cmd in start and right click on cmd and click on "run as administrator".)
-In the command prompt type the following command

Create your own customized RUN command.


1) Right click on the desktop screen and click on "New" then click on "Shortcut".


2) Browse for the program for which you want to create the command.(Navigate where the program is installed. In my case location is "C:\Program Files\Windows Media Player\wmplayer.exe") . Target to the main file of the program such as wmplayer, iexplore etc. 

Make over 1,000 folders in few seconds.



Here I will teach you simple prank that will make an unlimited amount of folders in any place you want.

1. Open notepad and type :

@echo off
:top
md %random%
goto top


@echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder.
md %random% is command that creating folders with random names.
goto top – return to label :top, infinite loop


2. Save it as 1000folders.bat


3. Run  it