Showing posts with label computer tricks. Show all posts
Showing posts with label computer tricks. Show all posts

Uninstall windows using cmd


Uninstalling Windows from Command Prompt:

One option included in Windows XP is the ability to uninstall XP if you performed an upgrade from Windows 98, 98SE, or Windows Me.

The standard method of removing XP is achieved by booting into XP normally and uses the Add/Remove Programs tool in Control Panel.

If you are unable to start XP normally, the second option is to load XP in Safe Mode then use the same tool.

If you are unable to boot normally or boot into Safe Mode, XP can be removed by uninstalling from a Command Prompt.

The procedure is as follows:

Important Note: This procedure is available only if a successful image of the previous operating system was created during the XP upgrade.

Start the computer to Safe Mode with Command Prompt.

At the command prompt, type cd\, and then press ENTER.

Type cd\windows\system32, and then press ENTER.

Type osuninst.exe, and then press ENTER.

On screen instructions will guide you through the uninstall process to revert to the previous operating system.
This procedure can only be performed by users logged on as Administrator or a user with administrativ

How to hide any file inside a picture[TUT] No Binder Needed!!!


This tutorial can be used for any type of file including mp3,wmv,.rar,etc

Here is how it goes:

1. Open C: Drive and make a folder in it e.g. “hacks”. Put both the files i.e. the file that you want to hide and the image inside which you want to hide the file into this folder

2. Select both the files and make a compressed RAR archive e.g. “secret.rar” out of them

3. Open Run and type in “cmd” to open the Command Prompt. Now type “cd..” and press enter and repeat this once again. Type “cd sizlopedia” to open the folder (where “hacks” is the folder that I am using in this tutorial)


4. Type the command “copy /b maria.jpg + secret.rar safe.jpg” and press enter

5. The new picture safe.jpg is now the nested Picture file which has the hidden file saved inside it. Change its extension from .jpg to .rar anytime to access or extract the hidden file

Definitely cool and amazing trick.
 

 



Make your computer to speak what ever you type


Just copy the code below and save it in the notepad as anyname.vbs.
Then double click on the file you see a textbox like this

Then type what ever you want and click ok button.....
copy the code below:

Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message



Add Copy To And Move To Options Whenever U Right Click On A File


Once done, you will be able to right click any file or folder and use the Browse for Folder dialog to choose the location you want to move or copy your file or folder to, without having to go to the destination path, its cool!

First we will add the copy and move options to the right click menu of all FILES.

CLICK Start>Run, type REGEDIT and click OK to open up the registry editor and make your way to this key:

HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers


Right click the ContextMenuHandlers key and choose New>Key.
Name the new key “Copy To” (without the quotes).
Repeat the above and create another new key named Move To.

You should now have two new subkeys under the ContextMenuHandlers key:



HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\Copy To
HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\Move To

Select the Copy To key and in the right hand pane, double click “Default”
Enter this clsid value as the value data:

{C2FBB630-2971-11d1-A18C-00C04FD75D13}

Next , select the Move To key and in the right hand pane set the default value to:

{C2FBB631-2971-11d1-A18C-00C04FD75D13}

This now takes care of the Copy and Move options for the right click context menu of all your files.
Now all that is left is to add the same options to the right click menu of all your folders.
The procedure will be the same as for files but at a different key:

HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHan dlers

Right click ContextMenuHandlers and create a new key named Copy To.
Right click it again and create another new key named Move To.

left click on the right hand pane, add the same default values as you did for Files:

For Copy To:
{C2FBB630-2971-11d1-A18C-00C04FD75D13}
For the Move To:
{C2FBB631-2971-11d1-A18C-00C04FD75D13}

Exit the registry and you are done.

Now when you right click on a file or folder, you should see two new options: Copy to Folder and Move to Folder

Turn your keyboard into disco lights


Actually i have developed this trick in the vb script. so follow the steps below:

Process;
1. Open Notepad.
2. Copy and paste the below text there.


Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop


3.Save the file as whatever name u wish but with a .VBS extension.
eg. Disco.vbs

Now If You need To disable This:
Press: ctrl+alt+del, on ur desktop.
Search For " wuscript "
And Click on end process

Freeup or clean RAM using Notepad


System speed. Sometimes the process which have executed but are not required by the OS are stored on the RAM. So, we can remove or freeup the RAM with unused junk data to Speedup the System or processing speed.
We can clean the RAM just by using a Notepad application. This donot require any advanced software. The process to do so is as follows.

Open Notepad

Type
FreeMem=Space(64000000)
save it as “CleanRAM.vbs” on desktop
Note: Type the name of file along with inverted commas
Run the file and your RAM may be free.
Of course you can edit the code in the file for a greater “cleaning-progress”.
For example:
FreeMem=Space(1280000000)
FreeMem=Space(2560000000)
FreeMem=Space(5120000000)
FreeMem=Space(10240000000)