Wednesday 17 July 2013

To change ( C:, D:, E:) drive’s icons



When you apply theme. You almost noticed that like other things the drive icons are changed, you know you can change it manually. Here I tell you that how can you do that:

Open “registry editor”  ( open “Run” and type “regedit” press enter)

Now click these folders

  1. HKEY_LOCAL_MACHINE
  2. HKEY_LOCAL_MACHINE\SOFTWARE
  3. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft
  4. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
  5. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion
  6. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer



Now right click on the right pane and select “New” and select “Key”
Name it “DefaultIcon”

Click on DefaultIcon key ( It look like folder) and right click on right pan. Select “New” and “Key” . Name it “C” ( as you want to change icon of C: drive).

With clicking on “C” key make an other key name it “DefaultIcon”

When you click on “DefaultIcon” key you’ll look “Default” key on the right pane (it will be other type of key called “string” key)
Double click on it and give path of your icon. E.g: F:\Icons\myicon.icon


Restart your computer and open My computer look! C: drive’s icon is changed.

Sunday 14 July 2013

Listen your computer's sound


Do you want to listen your computer sound for checking that your computer He or She?
Let us do it.

Open notepad
Type code
Createobject("SAPI.SpVoice").Speak"Im your computer"

save it any name but with .vbs ( like sound.vbs)
Double click on it.
Do you surprised?
You can write any thing "Im your computer" line for listening your computer sound.

Hide your data in a picture



If you want to hide data from others make it as a picture file nobody know that what is in it. Surprising thing is that the file behave as picture. When you double click on it, it open as picture.
Do this
step 1: Make a folder and put all your data in it.
step 2: compress that folder as .zip, .rar or any other format with any compressor software ( like, Winrar, Winzip etc)
step3: choose any picture file with jpg format
Note: Looking extension or file format you have to open "folder option" on "view tab" and uncheck "Hide extension for known file type" option. You'll find it in win7 "Organize button" on any opened folders.
step4: Open run command and type cmd and hit enter.
step5: write command
          copy/b   mypicture.jpg+myzipfile     newpicturefile.jpg

Where "mypicture" is the picture you want to show as file thumbnail and "myzipfile" is your data file which was compressed as .zip file and "newpicturefile.jpg" is made new file that hides your data.

Shutdown Computer with notepad


Do you know? notepad has magical features, you can do what you with notepad. Do you ever think you can shutdown your computer through notepad?
Be happy now you'll be aware of it. Tell your friends.
Open notepad which is remain start menue-accessories or you can open it by run command , simply press open run command and type "notepad".
type below codes in notepad and save it test.bat ( you can give any name but extension must be .bat)

@echo off
msg * You computer is going to sleep.
shutdown -c “Good Night” -s

Annoy yourself

Wrtie below code in notepad ( Open run command and type notepad (enter) notepad is opened)
save this file as worried.bat. Now open it. Hey you are really worried.


@ECHO off
:Begin
msg * Hello!
msg * Let us play a game.
msg * First my turn.
msg * You've close me.
msg * Ha ha! You cann't.

GOTO BEGIN

Sorry you've to turn off your computer for stopping the message.

Hide any folder


Sometime we want to hide our personal folder to other. Even we want it is not be searched. Let us do it.
Open run command or from keyboard press "Window key+R". and then type "cmd" for opening the command prompt.
Type
attrib +s +h  D:\Data ( press Enter)

attrib is attribute command while +s consider as system file/folder and +h is hide it, While D:\Date is path of folder it mean hide "Data" folder from D: drive. When you'll search it by name but I'll not displayed.

Now let us restore it
Type
attrib -s -h D:\Data ( press Enter)

It is now appeared.

Make your desired folder as a drive


The folder that you use frequently if it can be changed into drive as other drive(c: d: ) is good idea. In past it could be imagined but now it is possible. Let us do it.
Open run command and type “cmd” for opening command prompt, going to Dos mode.
Command is as:
Subst (drive letter for new assigned drive)  Path ( which folder that is being creating as drive)
Check how many drives are in your Hard disk for example ( c, d, ) are already remain then choose other letter like (e, f) . Path is the place where your desired folder is. Suppose your desired folder  is in D drive path is like D:\desired folder.  If your desired folder is in an other folder  then the path is like D:\Folder\Folder.
Here  Iam making my Data folder in D: drive as E: drive
Subst e:  D:\Data (enter)
Now E: drive is my Data folder.
If you want delete the drive.
Simply type
Subst/d  E: ( press enter)

With /d your E: drive is removed but your Data drive not removed .