Notepad Funny Tricks.

A

Ajaysharma_123

Guest
Hello Digital Janta Members
Today I Come Back with Notepad Tricks.
  • 1. 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​
  • 2. 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. Copy this code and paste it in Notepad as Virus.vbs or *.vbs.

    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
  • 3. Matrix Falling Code Effect - Notepad CMD (.BAT) Tricks
    Inspired by the movie Matrix, this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat.

    @echo off
    color 02
    :tricks
    echo %random%%random%%random%%random%%random%%random%%random%%random%
    goto tricks
 

jackson beno

Skilled
Joined
Mar 25, 2013
Messages
516
Reaction score
144
if i try this do they will affect my pc.
because .bat files are automatically detected as malware by my antivirus...
 
The Digital Janta Forum has been archived after serving 2008 to 2022 great years as Top leading Free Internet Forum !
Top