Trick To Hide Text In Notepad



Here is a small trick to hide text inside your windows default text editor i.e Notepadusing command prompt, but this trick works only on NTFS file system.

Steps to hide text in a Notepad

1.      Open your command prompt Start-->Run and Type cmd

2.      Type cd.. to move to C:\> drive or Type cd desktop to move to your desktop.

3.      Type the below code in your command prompt

notepad Harsh.txt:hidden

4.      Write some data and save(Ctrl+S) the file.

5.      Browse to the file location and Open filename.txt you cannot see any data in the file.

6.      To retrieve the hidden data open command prompt and type the same command.

notepad Harsh.txt:hidden

How to Make Invisible Password Protected Folder


Do you want to password protect your folder? Do you want to make it invisible so that it remains unnoticed by the normal users? Well here is a way to do that. In this post I will show you how to make a password protected folder in Windows without using any additional software. Here is is step by step procedure to create a password protected folder.

How to create a Password Protected Folder

1.      Create a new folder (Right-click -> New -> Folder) and give it any name of your choice. For instance I name it as ABC.

2.      Now in this folder place all the important files, documents or any folders that you want to password protect.
 
3.      Now Right-click on this folder (ABC) and select the option Send To ->Compressed (zipped) Folder.
 
4.      Now a new compressed zipped folder gets created next this folder (ABC) with the same name.
 
5.      Double-click on this compressed zipped folder and you should see your original folder (ABC) here.
 
6.      Now goto the File menu and select the option Add a password.
ie: File -> Add a password
 
Now a small window will pop up and here you can set your desired password. Once the password is set, the folder will ask for the password every time it is opened. Thus you have now created the password protected folder.

How to make it Invisible

1.      Now Right-click on this password protected folder and select Properties.
 
2.      At the bottom select the option Hidden and press OK. Now your folder gets invisible (hidden).
 
3.      In order to unhide this folder go to My Computer – >Tools -> Folder options. Switch to View tab, scroll down and under Hidden files and folders you’ll see the following two options
   
Do not show hidden files and folders
      Show hidden files and folders

Now select the second option and press OK. Now the invisible folder becomes visible in it’s location. To access it you need the password. To make it invisible again repeat.1 through 2 and select the first option and click OK. Now the folder becomes invisible once again.

Hide whole partition of HDD




1.    Go to Start > run > type "diskpart".

2.    A DOS window will appear with following discription.
DISKPART>

3.    Then type "list volume"

The result will look like : ------

Volume ### Ltr Label Fs Type Size Status Info
--------------- --- -------- ---- ------ ---- ------ ----

Volume 0 F CD-ROM
Volume 1 C Window_XP NTFS Partition 7000MB Healthy System
Volume 2 D Softwares NTFS Partition 8000MB Healthy
Volume 3 E Songs NTFS Partition 8000MB Healthy



4.    Suppose u wanna hide drive E then type "select volume 3"

Then a message will appear in same winwods { Volume 3 is the selected volume}

5.    Now type "remove letter E"
Now a message will come { Diskpart Removed the Drive letter }
sometime it requires the reboot the computer .
 

6.    Diskpart will remove the letter .Windows XP is not having capabilty to identify the unkown volume. Your Data is safe now from all unauthorised users.To access the content of hidden Drive repeat the process mentioned above. But in 4th step replace " remove" to "assign"i mean type "assign letter E"

Create Your Own Text 2 Speak


There are lot of software use to speak the text written on them.But you can create your own manually in vbs script.....

copy below text and paste it in notepad.Then save it as .vbs extension It will work

Dim msg, sapi
msg=InputBox("Enter your text","My text to speak")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg