Continuously pop out your friend’s CD Drive. If he / she has more than one, it pops out all of them! By seeing the below image I hope you will understand what the below crazy script actually does.
Open Notepad and Type :
Set oWMP = CreateObject(“WMPlayer.OCX.7“)Set colCDROMs = oWMP.cdromCollectiondoif colCDROMs.Count >= 1 thenFor i = 0 to colCDROMs.Count -1colCDROMs.Item(i).EjectNextFor...