Adsense Ads code

Showing posts with label batch programming. Show all posts
Showing posts with label batch programming. Show all posts

Wednesday, 19 August 2015

Keylogger in Batch

This key-logger is able to log almost all keys of your Keyboard...including Special Keys as to remove Limitiation of previous two versions of this Keylogger...

 As to Remove limitation of Version 1.0, we've used various plugins(extensions) in batch...

Tuesday, 18 August 2015

Free HotSpot Creator using Batch Script win7 & win 8

No need of Buying Costly Applications that can convert your PC into a wifi HotSpot...

No Need of Using Paid Applications as Now you can Convert your PC / Lappy into a wifi HotSpot easily... with Free Hotspot Creator.

HotSpot Creater


Free HotSpot Creator is an application in batch programming,  Which enables you to Convert your PC / Lappy into Wifi Hotspot and you can easily Share your Internet Connection via this Created Hotspot... Version 1.0 of this Application was totally CUI {Character user interface} ...i.e. You have to Type with Keyboard to select any required option in the interface... [e.g. 1, 2, etc...].

Tuesday, 17 February 2015

CMD TRICKS: Dancing Keyboard Led

In this part i will show you to make interesting file using notepad which will make keyboard led to dance. basically we will be creating a visual basic script.



 1. Open Notepad and copy below codes into it.

CMD TRICKS: World Trade Center Attack Trick

The flight number of the plane that had hit World Trade Center on  (9/11) was Q33NY. Now we call this trick or a coincidence or something else but whatever it is you will be definately amazed by the this trick.



1. Open Notepad and Type “Q33N” (without quotes) in capital letters.

    2. Increase the font size to 72.

Sunday, 15 February 2015

Make your Computer Talk

Have you ever wondered how can you make your computer speak whatever you input to it like in the movies? Would it not be fun? If only it was possible! Rejoice, because now it is possible. Well, if you wish to know how to do this, then you have come to the right place. With this trick, you can create a script in Windows which will make your computer speak whatever you input to it.

To create one such talk script, follow the steps given below:-



Steps:

1. Open Notepad.

Friday, 13 February 2015

Creating Virus That Format C Drive

In this trick we will be creating virus in notepad using batch file programming. This virus is really simple to create yet very dangerous. opening this file we delete or format C drive of your computer.
Steps:
1. Open Notepad and copy below code into it.

Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives

This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again.

Keep remember! Its only for fun. For any kind of loss we will not be responsible.

Copy this code and paste it in Notepad as Virus.vbs or *.vbs.
Here is the code Click Read more:

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

Double click to open this file and you will be impressed by this awesome trick.

Make Your Keyboard Type (Any) Message Continuously-VBS Trick

This VBS trick can make any of your friend's keyboard type any message continuously. Open Notepad, copy the code given below and save the file as Tricks.vbs or *.vbs. You will need to restart your computer to stop this. Try this after closing all important programs.

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "This is a Virus. You have been infected."
loop


Send this file to your friends as an email attachment to see the fun.

Matrix Effect Trick Using Batch File

In this trick i will show you to make a batch file in notepad which will act as matrix effect that you might have seen in movies.Matrix effect is basically number flashes in green color.

Example

1. Open Notepad and copy below code into it.