APPZXOR
Hello and welcome to APPZXOR,

We would appreciate if you register so you can enjoy
the full benefits of browsing, viewing and using our forum.
Here are some features:

• Create threads;
• Reply to threads;
• View links & images;
• Leave positive or negative feedback to a member.

What are you waiting for? Go ahead and register!
It's free, quick and easy!
APPZXOR
Hello and welcome to APPZXOR,

We would appreciate if you register so you can enjoy
the full benefits of browsing, viewing and using our forum.
Here are some features:

• Create threads;
• Reply to threads;
• View links & images;
• Leave positive or negative feedback to a member.

What are you waiting for? Go ahead and register!
It's free, quick and easy!
APPZXOR
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Where Applications Become AppZ. Join Us Now!
 
HomePortalSearchLatest imagesRegisterLog in
Search
 
 

Display results as :
 
Rechercher Advanced Search
Latest topics
» See you next decade.
[Full] Collection of notepad tricks!  Icon_minitimeby LarsValraz Fri Sep 09, 2022 4:43 pm

» Clean Up On Database
[Full] Collection of notepad tricks!  Icon_minitimeby Vex338 Mon Jul 06, 2020 2:59 pm

» Guess who's back!
[Full] Collection of notepad tricks!  Icon_minitimeby Vex338 Thu Feb 01, 2018 12:16 pm

» [COC] Clash of Clans
[Full] Collection of notepad tricks!  Icon_minitimeby D'ShadowZRay Thu Jan 28, 2016 12:10 am

» iam new
[Full] Collection of notepad tricks!  Icon_minitimeby D'ShadowZRay Thu Jan 28, 2016 12:06 am

» I need some help
[Full] Collection of notepad tricks!  Icon_minitimeby akumasan_01 Fri May 01, 2015 1:25 pm

» HELLO GUYS! :))
[Full] Collection of notepad tricks!  Icon_minitimeby Appz-RhastaSix Fri Sep 19, 2014 9:14 am

» Visual C# Programming Basics
[Full] Collection of notepad tricks!  Icon_minitimeby Appz-RhastaSix Wed Sep 10, 2014 9:03 am

» Old Game!
[Full] Collection of notepad tricks!  Icon_minitimeby iRegen Tue May 13, 2014 12:28 am


Top posters
[Detheroc_93]
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
MrStar
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
kurosakinaruto
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
GreyPhantom
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
ShadowSonic
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
Appzwesley29
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
z_f
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
MasterGandeo
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
Vex338
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 
wafumon
[Full] Collection of notepad tricks!  I_vote_lcap[Full] Collection of notepad tricks!  I_voting_bar[Full] Collection of notepad tricks!  I_vote_rcap 

Share | 
 

 [Full] Collection of notepad tricks!

View previous topic View next topic Go down 
AuthorMessage
Gk-[invisible]
Super Member

Gk-[invisible]

Posts : 100
Join date : 2012-01-09
Age : 31
Location : philippines and germany

[Full] Collection of notepad tricks!  Empty
PostSubject: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeThu Jan 12, 2012 8:54 am

ALL OF THEZE COMMANDZ ARE TO BE TYPED IN NOTEPAD...

Tricks 10-21 Shared by Saplas here... and all the others by me.
I made this topic first. to have th3m all together. Second i pissed of to see everywhere notepad tricks Just from now On if you know more tricks post them here to add them in first post. And the last
reason that i made this thread is that i know that u like th3m ^^.. I have add 7-8 new!

EnJoy



1) Convey your friend a little message and shut down his / her computer:
Type :
Code:
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s

Save it as "Anything.BAT" in All Files and send it.

=========================================================

2) Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

Code:
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

Save it as "Anything.VBS" and send it.

3) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :

Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.

4) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
Type :

Code:
WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "

Save it as "Anything.VBS" and send it.

5) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :

Code:
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

Save it as "Anything.VBS" and send it.


6) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
Type :

Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.


7) Open Notepad continually in your friend's computer:
Type :

Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as "Anything.BAT" and send it.

8 ) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :

Code:
@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two

Save it as "Anything.BAT" and send it

9) Hide text inside your text file !


* Open your command prompt Start–>Run type cmd
* Move to any destination for example let us assume D:\> drive
* Type the below code in your command prompt
* D:\>notepad syshacks.txt:hidden
* syshacks notepad save

* syshacks notepad hidden
* Write some data and save the file.
* Move to D:\> and open syshacks.txt you cannot see no data in the file syshacks.txt.
* To retrieve the hidden data open command prompt and type the same command.
* D:\>notepad syshacks.txt:hidden
* Notepad will open syshacks.txt file with hidden data

10) A Virus That Will Open And Close Ur Cdrom

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


Save it as "Anything.vbs" and send it.

Now if u want to disable this go to task manager click on process
then find wscript.exe and end this process

11) Notepad virus

Open NotePad And Write This:

Code:
@echo off
:E
start cmd.exe
start calc.exe

Save It As .bat.

12) Code to shutdown computer

Open NotePad And Write This:

Code:
avidemux2_cli --run j-1.js --run j-2.js --end
shutdown.exe -s -t 00 Save It As .bat

13) Code for log

Open NotePad And Write This:

Code:
.LOG
and Save It As .txt
now if you open the file
its writes the time and day that you log......

14) Code for matrix falling text-

Open NotePad And Write This:

Code:
@echo off
:loop
COlor 0A
Title J J f f g g g g

echo 0 A 0 1 1 1 A 0 1 0 1 0 7 7 8 9 9 1 0 1 0 1 A 1 0 a d d f f 1 0 8
echo 0 0 0 0 0 0 0 0 1 A 0 A 1 0 A 1 1 1 1 0 A 1 0 A 5 5 6 7 a n k k k
echo 0 1 0 1 0 A B J 0 3 4 0 1 0 1 0 1 B A A O i d d 3 3 4 4 6 7 7 g u
echo 0 2 3 1 1 1 5 5 6 5 6 8 9 5 4 5 4 5 5 4 5 5 6 4 f f f g j d g d f g d
echo 2 4 5 6 5 5 6 5 9 4 5 7 7 7 7 8 9 9 0 66 6 1 5 5 6 4 5 5 8 6 4 4 6 4
goto :loop


Save It As .bat



15)code to make computer chat with you

Open NotePad And Write This:

Code:
dim fname
fname=inputbox(" Hi whats your name?")
fname=inputbox("My Name Is Saplas")
fname=inputbox(" I Love You Saplas ^^.")


Save It As .vbs

16) Code to open many windows!

Open NotePad And Write This:

Code:
start
start
start
[The Number of "start" e.x 3 start-->3 windows ,, more start.. more windows ^_^]

Save It As .bat

17)code for Rick Roll

Open NotePad And Write This:

Code:
@echo off
START http://www.smooch.net/lol [ you can change the site but i find this Site for RIck Roll-->best] [[for closing this site, push ctrl+alt+delete]]

Save It As .bat

18)code for Virus Joke

Open NotePad And Write This:

Code:
start
start
start
start

@echo off

msg ' [your text here]  example              msg ' We Hack So What?
msg ' [your text here]  example              msg ' Hahahahahaha.

shutdown -s -t 50 -c "your text here" example            shutdown -s -t 50 -c "The Pc Gonna Exploded In 50 Sec"

Save It As .bat

If You wait 50 sec, your pc gonna restart..

But..

Start-->Run. Now Write shutdown -a
It Stops The Restart...

19) code for Virus Joke 2

Open NotePad And Write This:

Code:
@echo off
:hack
echo [your text here]  I prefer this example  -->        echo Trojan Virus Uploading
goto hack

Save It As .bat

20) code for Adding A Heading And Text

Open Internet Explorer[prefer Mozila Firefox] .Then Open NotePad And Write This:

Code:
<html>
<head><title>Your Text Here</title></head>            In The "  ", It's The Name For The Site
<body>
<center><font face="font name here" size"number here">Hello</font></center>      In The "    " are the font and the size number.

Example

<html>
<head><title>Hello</title></head>
<body>
<center><font face="porky's" size"8">Hello</font></center>

21) code for make a Fork Bomb(LoL)

Open NotePad And Write This:

Code:
start
%0
goto :S

Save It As .bat

If You Open It, It Can Crash Your Pc So Send It In YOUR FRIENDS .. Not to ME ^_^ .

==============================================================

22) Create your own Never Ending Error/Pop up messages

First of all, here are some possible uses for this cool little thing

1. Bind them with your virus's / trojans. You can use any messages remember.
2. To piss off your friends making them think you've messed there computer up.
3. Whatever you want really!

Step 1. Open Notepad
Step 2. Type the following text:

Code:
lol = msgbox("Text You Want Here",16,"Title Of Message Box Here")

Step 3. Create as many lines as you want, for example my outcome would be something like this:

lol = msgbox("A System32 error has occured, please contact microsoft immediately",16,"Fatal Error")
lol = msgbox("Mswinsox (C:\Windows) Will now be deleted",16,"Fatal Error")
lol = msgbox("(C:\Windows) is being deleted",16,"Fatal Error")
lol = msgbox("Your computer will reboot shortly",16,"Fatal Error")
lol = msgbox("If you still have a problem, then you are -beep-ed",16,"Fatal Error")
lol = msgbox("owned you",16,"Fatal Error")


Step 4. Save it as Anything.vbs , distribute it amongst your friends and have a laugh.


23) make your pc talk with notepad!

Open a text file in notepad and write:

Code:
Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg

Save the file with a (*.vbs) extension, it will create a VBScript File.
It will prompt you for a text when u open the file, input the text and press ok."

u will hear what u typed
Back to top Go down
zenbun
Super Member

zenbun

Posts : 233
Join date : 2010-12-04
Location : Find Me If You Can

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeThu Jan 12, 2012 9:08 am

how to send
Back to top Go down
123basit123
Super Member

123basit123

Posts : 163
Join date : 2010-12-06
Age : 32

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeThu Jan 12, 2012 9:10 am

Nice Tutorial Keep I Up Very Happy
Back to top Go down
http://adf.ly/2UCxH
Gk-[invisible]
Super Member

Gk-[invisible]

Posts : 100
Join date : 2012-01-09
Age : 31
Location : philippines and germany

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeThu Jan 12, 2012 9:15 am

use your brain.exe and risk ^^ sorry i'm so busy =)
Back to top Go down
[Detheroc_93]
Administrator
Administrator

[Detheroc_93]

Posts : 5628
Join date : 2011-03-12

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeThu Jan 12, 2012 11:56 am

Really nice collection. It seems that you have some "friends you don't like". XD
+ given! Keep it up!
Back to top Go down
Gk-[invisible]
Super Member

Gk-[invisible]

Posts : 100
Join date : 2012-01-09
Age : 31
Location : philippines and germany

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeThu Jan 12, 2012 11:51 pm

^^
Back to top Go down
Aditya09
Ultra Member

Aditya09

Posts : 821
Join date : 2011-11-26
Age : 32
Location : Caribbean

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 3:13 am

Epic <3 + for you Razz only had a few :O
Back to top Go down
MenzTration
Ultra Member

MenzTration

Posts : 525
Join date : 2011-11-28
Age : 26
Location : HELL

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 4:35 am

^^ xD
Back to top Go down
kurosakinaruto
Contributor
Contributor

kurosakinaruto

Posts : 3242
Join date : 2011-08-18

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 5:48 am

yeh
nyc share dude!!!
Bt too long a post for me to read all
tongue :3
Back to top Go down
http://www.techwrldinfo.blogspot.com
Gk-[invisible]
Super Member

Gk-[invisible]

Posts : 100
Join date : 2012-01-09
Age : 31
Location : philippines and germany

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 7:23 am

i will share fake anti virus or real anti virus in notepad ^^
Back to top Go down
MrSoftwareSyndicate
Ultra Member

MrSoftwareSyndicate

Posts : 602
Join date : 2010-11-29

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 1:03 pm

fack na banned ako sa Cafe. dahil nasira PC nila... Aw...
Back to top Go down
http://software-syndicate.blogspot.com/
MrStar
Royal Member

MrStar

Posts : 4006
Join date : 2011-08-23
Age : 34
Location : Guess?

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 1:06 pm

Speak English ! That's why you need to be careful with this thing its very risky !
Back to top Go down
http://starcraft0333.weebly.com
MrSoftwareSyndicate
Ultra Member

MrSoftwareSyndicate

Posts : 602
Join date : 2010-11-29

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 1:07 pm

i forgot.. sorry,...
Back to top Go down
http://software-syndicate.blogspot.com/
MrStar
Royal Member

MrStar

Posts : 4006
Join date : 2011-08-23
Age : 34
Location : Guess?

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 1:59 pm

No offense ! Bro xD
Just be careful with a file like .bat

You don't know that .bat can do what ever it wants. Cause its a script/command via CMD that can delete,move,rename,copy all your files in just one command !

Note : If you want to know what is inside the .bat file then right click in the file then edit through notepad to show all the script .
Back to top Go down
http://starcraft0333.weebly.com
jin
Super Member

avatar

Posts : 143
Join date : 2010-11-30

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 2:16 pm

Nice. you got "+"
Back to top Go down
Appzwesley29
Contributor
Contributor

Appzwesley29

Posts : 1777
Join date : 2010-12-01
Age : 29
Location : Taguig City,Philippines ILoveTaguig

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeFri Jan 13, 2012 2:21 pm

MrSoftwareSyndicate wrote:
fack na banned ako sa Cafe. dahil nasira PC nila... Aw...

nice trash talking ..

same scenario i rent a pc then i insert a virus in that pc and spread it to other via router after 4 hours all pc has been destroyed !! i use my pc destroyer i made ..xDD
Back to top Go down
http://appzwesley.blogspot.com/
Gk-[invisible]
Super Member

Gk-[invisible]

Posts : 100
Join date : 2012-01-09
Age : 31
Location : philippines and germany

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeTue Jan 17, 2012 9:05 am

don't speak tagalog Lol
Back to top Go down
[Detheroc_93]
Administrator
Administrator

[Detheroc_93]

Posts : 5628
Join date : 2011-03-12

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeTue Jan 17, 2012 1:01 pm

MrSoftwareSyndicate wrote:
fack na banned ako sa Cafe. dahil nasira PC nila... Aw...

Use English. It's in our Rules.
Back to top Go down
renzten
Super Member

avatar

Posts : 123
Join date : 2011-08-11
Location : before my pc

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeTue Jan 17, 2012 1:37 pm

Didnt Work for Me I have my AV turned on so it blocked it
Back to top Go down
X-Master97
Super Member

X-Master97

Posts : 202
Join date : 2011-01-05
Age : 28

[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitimeWed Jan 18, 2012 6:01 am

thanks for sharing + for u
Back to top Go down
http://Suhailxmaster-cns.blogspot.com
Sponsored content





[Full] Collection of notepad tricks!  Empty
PostSubject: Re: [Full] Collection of notepad tricks!    [Full] Collection of notepad tricks!  Icon_minitime

Back to top Go down
 

[Full] Collection of notepad tricks!

View previous topic View next topic Back to top 

 Similar topics

-
» Unlimited Download from Rapidshare, Megaupload, – Notepad tricks
» (ANTIVIRUS) in notepad
» How to create a custom message box with notepad
» How To Block PORN SITES In Your Notepad .
»  XP Trick for Hidden Text Edit , Netmeeting, and Notepad
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
APPZXOR :: Discussions :: Tricks & Tutorials-
Free forum | Society and Culture | Childhood, Family | ©phpBB | Free forum support | Report an abuse | Forumotion.com