Saturday 11 May 2013

Hide any Drive

2 comments

Have you ever thought of hiding any drive from your system so that no one can knew about it. You may have heard or even used a lot of software’s that might be able to do that, but if you are GEEK like me and want to do things by your own without using any 3rd party software than this tutorial will show you how you can do it. Well there are 3 ways of doing it, in this tutorial we are covering command prompt way of doing it.

Here is how to do it:

Step 1.Open command Prompt, go to Start Menu > All Programs >Accessories > Command prompt

Step 2. In the Command Prompt, type Diskpart and hit enter key. If UAC (User Account Control), dialog-box prompts than click Yes.

Step 3. Then type List Volume and press enter, this will produce the list of all drives.



Step 4.Now select the drive which you want to hide, you can either do this by typing Select Volume 1 (i.e. Volume Number) or by typing Select Volume C(i.e. Drive letter)



Step 5.To hide a drive, type Remove Letter C. Here, C is the drive letter than you want to hide. You can use any drive letter you want.

Step 6.That’s it. You are done! C drive is now hidden

How to unhide hidden drive

Step 7. Follow the procedure mentioned in above step 1, 2, 3 and 4 of hiding.

Step 8. To show the hidden drive type "Assign Letter C" and hit enter, now you can view C: drive in explorer.

That’s it. This is one way of hiding and un-hiding drives from explorer, for rest two stay tuned.


Most popular links==>


How to create a fake virus that shutdown computer using Notepad


Lock Files On You PC Without Using Any Software

Click here to Find your love percentage
Click here for more

Read More

Thursday 25 April 2013

How to create a fake virus that shutdown computer using Notepad

Leave a Comment

1.OPEN NOTEPAD
2.COPY THIS CODE AND PASTE IT TO NOTEPAD
@echo off
msg * u r terminated
shutdown -c “stop me if you can” -s
3.SAVE IT AS A .BAT FILE…..WHEN IT OPENS YOUR COMPUTER WILL SHUTDOWN
4.SEND IT TO YOUR FRIEND VIA EMAIL AND PRANK THEM
Click here to Find your love percentage
Read More

How to create a fake virus that shutdown computer using Notepad

1 comment

1.OPEN NOTEPAD
2.COPY THIS CODE AND PASTE IT TO NOTEPAD
@echo off
msg * u r terminated
shutdown -c “stop me if you can” -s
3.SAVE IT AS A .BAT FILE…..WHEN IT OPENS YOUR COMPUTER WILL SHUTDOWN
4.SEND IT TO YOUR FRIEND VIA EMAIL AND PRANK THEM
Read More

NOTEPAD COLORS

Leave a Comment

COPY THIS Code:
@echo off
:A
color 4
pause
color 1
pause
color 2
pause
color 3
pause
color 4
pause
color 5
pause
color 6
pause
color 7
pause
color 8
pause
color 9
goto A 
NOW SAVE IT AS A .BAT FILE (explame:  color.bat  )
Open it and hold space. See the amazing colors changing whilst holding space
Click here to Find your love percentage
Read More

Lock Files On You PC Without Using Any Software

3 comments

It is hard to hide our personal data on our pc because key-logger softwares are in general costly. But we can also make our own key-logger using notepad. So, all you have to do is
Step 1: Open notepad.
Step 2: Copy the following code in notepad file :

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%==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
Step 3: Change the “YOUR PASSWORD HERE” with your password.
Step 4: Save it as batch file ( with extension .bat ) For eg. Locker.bat
Step 5: Now you will see a batch file. Double click on it to create a folder locker ( A new folder named Locker would be formed at the same location )
Step 6: Thats it now you have your own created  locker and it’s completely free !
Step 7: Put  all the files you want to hide in the locker folder.
Step 8: Double click the batch ( As created above ) file to lock the folder namely Locker.
Step 9: If you want to unlock your files, simple double click the batch file again and you would be prompted for password ( In DOS window ). Enter the password and enjoy access to the folder.

Click here to Find your love percentage
Read More