Tips Menjaili Teman Anda Dengan Notepad


Membuat Pesan pada notepad
Type :
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN
Simpan sebagai pc.bat
Membuat Tombol Keyboard berjalan terus
Type :
MsgBox “stop me..! if you can”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Simpan sebagai pc.bat
Sampaikan teman Anda pesan dan menutup komputernya.
Type :
@echo off
msg * I don’t like you
shutdown -c “Hahahah You are Doomed” -s
Simpan sebagai pc.bat
Beralih tombol Caps Lock teman Anda secara bersamaan
Type :
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
 
Simpan sebagai pc.bat
Menggagalkan teman Anda dengan membuat keyboard mereka tekan Enter secara bersamaan setiap kali mereka menekan tombol:
Type :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
Simpan sebagai pc.bat
Hack Keyboard teman Anda dan membuatnya ketik "Kamu bodoh" secara bersamaan:
Type :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop
Simpan sebagai pc.bat
Buka Notepad, apapun jenis dan perlahan panik teman-teman Anda keluar:
Type :
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! “
Simpan sebagai pc.bat
Menggagalkan teman Anda dengan membuat Backspace Keyboard hit mereka secara bersamaan setiap kali mereka menekan tombol :
Type :
MsgBox “Let’s rock and roll”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Simpan sebagai pc.bat
Buka Notepad terus menerus di komputer teman Anda:
Type :
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Simpan sebagai pc.bat
Terus keluar CD teman Anda atau DVD Drive.
Type :
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
Simpan sebagai pc.bat
0 Komentar untuk "Tips Menjaili Teman Anda Dengan Notepad"

Back To Top