Wednesday, April 29, 2009

The Secrete Microsoft Song

Do you know the secrete Microsoft song? I hear this song while I am installing windows, where its almost at the end where have to register your windows,
enter your username.......etc.
Some people might not hear it because; your sound card driver isn't installed. If you want to know and hear that song, here it:
Go to
Start > Run > Copy and then Paste, or press and hold the Start + r .

C:\windows\system32\oobe\images\title.wma

And hit Enter, of course ... Your media player should load the song, and now you can hear it.

Remove Compression Option at Disk Cleanup

want to avoid the compression analysis when you start disk cleanup, you can disable it by navigating to the following key in registry

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Compress old files and then delete the "Default" Value Key.

How To Hacked A Licensed Windows Xp Password

how to hack xp password?
to change administrator password without knowing the existing pass
open command type lusrmgr.msc,
then a window opens click on user
on right side it will display the list of user accounts
right click on the user u want to change password
click on set pass
then click on proceed
then type the password u want
and retype it
then ok
now u hacked the xp password

Want to link CSS to IE6 and IE7

Now you can link a different CSS style sheet to IE6 and 7.Here is the link to FF, Safari and Opera with this java script.
Try this codes……….


var safari = false;
var opera = false;
var firefox = false;
var agent = navigator.userAgent.toLowerCase();

if (agent.indexOf("safari") != -1){
//code to show Safari Stylesheet
document.write('');
}
else if(agent.indexOf("opera") != -1){
//code to show Opera Stylesheet
document.write('');
}
else if(agent.indexOf("firefox") != -1){
//code to show FireFox Stylesheet
document.write('');
}