Notepad နဲ႔ ကခုံျခင္း

7:07 AM ---
         ဒီေခါင္းစဥ္က သူမ်ားရဲ႔စာနဲ႔ တူေကာင္းတူေနပါလိမ္႔မယ္ ။ ကြ်န္ေတာ္က သူမ်ားေခါင္းစဥ္ကို ခုိးတာလည္း ျဖစ္ႏုိင္တယ္ ။ ဖတ္ဖူးတာကို မွတ္မိေသးတယ္ ။ ေခါင္းစဥ္ကို သေဘာက်လုိ႔ အဲဒါနဲ႔ပဲ ထပ္ေပးလုိက္တယ္ ။
       Notepad ဆုိတာက သိသေလာက္ေျပာရရင္ ။ ဟာ မသိေတာ႔ဘူး ။ ကြ်န္ေတာ္သိတာက Notepad ကေန လုပ္ႏုိင္ရင္ လုပ္ခ်င္သေလာက္ လုပ္လုိ႔ရတာပဲ ။ Virus ေရးခ်င္ေရးလုိ႔ရမယ္ ။ အမ်ားၾကီးပဲ ။ ကြ်န္ေတာ္ေတာင္ ကြန္ပ်ဴတာကို စကားေျပာခုိင္းတာကို ေရးေသးတယ္ေနာ္ ။ အဲဒါလည္း Notepad ပါပဲ ။ ခုလည္း Notepad နည္းေတြ တင္ေပးလုိက္ပါတယ္ ။ နည္းေတြ မ်ားလုိ႔ ပုံနဲ႔ျပေတာ႔ဘူး ။

      ေအာက္က Notepad နည္းေတြကို စမ္းခ်င္တယ္ဆုိရင္
Window + R ကို နိပ္ျပီး Run box မွာ notepad ကို ရုိက္ထည္႔ျပီး Enter လုိက္ပါ ။
ေအာက္က စာသားေတြကို ကူးျပီး ထည္႔လုိက္ပါ ။
ျပီးရင္ သိမ္းရင္ေတာ႔ သူ႔နာမည္ အလုိက္ရွိမယ္ ။ .Vbs နဲ႔ သိမ္းတာမ်ားမယ္ ။


         Convey your friend a message and shut down his/ her computer.
Type :

    @echo off
    msg * I don’t like you
    shutdown -c “Hahahah You are Doomed” -s
ဒါကို pc.bat နဲ႔ သိမ္းပါ ။ ေခါင္းစဥ္ကိုေတာ႔ ေသခ်ာၾကည္႔ေပါ႔ ။ ဖြင္႔သင္႔လား မသင္႔လား ဆုိတာ ။ ဘယ္လုိသုံးလဲဆုိတာကိုေပါ႔ ။ အေတြ႔မ်ားပါတယ္ ။
ေနာက္တစ္နည္း
Toggle your friend’s Caps Lock button simultaneously
Type :

    Set wshShell =wscript.CreateObject(“WScript.Shell”)
    do
    wscript.sleep 100
    wshshell.sendkeys “{CAPSLOCK}”
    loop
ဒါကိုေတာ႔ pc.vbs နဲ႔ သိမ္းေပးလုိက္ပါ ။ အက်ိဳးအာနိသင္ေတာ႔ ေခါင္းစဥ္တုိင္းသာ ။
 
       Cycle a message in your friend’s computer.
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
ဒီေကာင္႔ကို pc.bat နဲ႔ သိမ္းေပးလုိက္ပါ ။

      Make Keyboard Keys Type Continuously:
Type :

    MsgBox “stop me..! if you can”
    Set wshShell =wscript.CreateObject(“WScript.Shell”)
    do
    wscript.sleep 100
    wshshell.sendkeys “{bs}”
    loop
 ဒါေတာ႔ pc.vbs ပါ ။ ဒါနဲ႔ ေျပာပါဦးမယ္ ။ pc.vbs pc.bat ဆုိျပီးပဲ သိမ္းသိမ္းေနတာေနာ္ ။ အဲဒီ pc ေနရာမွာ ကိုယ္ၾကိဳက္တဲ႔ နာမည္ကို ေျပာင္းလုိ႔ရပါတယ္ ။ အဓိက .bat .vbs ပါေနဖုိ႔ပဲ ။

      Frustrate your friend by making their keyboard hit Enter simultaneously whenever they press a key :
Type :

    Set wshShell = wscript.CreateObject(“WScript.Shell”)
    do
    wscript.sleep 100
    wshshell.sendkeys “~(enter)”
    loop
 ဒါကို pc.vbs နဲ႔ သိမ္းပါ ။
ေနာက္တစ္နည္းက

        Open Notepad, slowly type anythingand freak your friends out:
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! “
pc.vbs နဲ႔ သိမ္းပါ ။ ဒီနည္းေလးက ေကာင္းတယ္ ။ စာတစ္ပုဒ္ျဖစ္ေအာင္ေတာင္ ေရးလုိ႔ရသား ;)
 
        Frustrate your friend by making their keyboard hit Backspace simultaneously whenever they press a key :
Type :

    MsgBox “Let’s rock and roll”
    Set wshShell =wscript.CreateObject(“WScript.Shell”)
    do
    wscript.sleep 100
    wshshell.sendkeys “{bs}”
    loop
ဒီေကာင္လည္း pc.vbs ပါပဲဗ်ာ ။

         Open Notepad continuously in your friend’s computer:
Type :

    @ECHO off
    :top
    START %SystemRoot%\system32\notepad.exe
    GOTO top
ဒါေတာ႔ pc.bat နဲ႔ပါ ။

Continuously pop out your friend’s CD or 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
ဒါကိုေတာ႔ pc.vbs ပါ ။ အားလုံးပဲ အဆင္ေျပမယ္လုိ႔ ေမွ်ာ္လင္႔ပါတယ္ ။
သတိဆုိတာ ပုိတယ္လုိ႔ကို မရွိပါဘူးဗ်ာ ။
 ခြန္ေမာင္ပန္
 

1 comments:

Anonymous said...

ေကာင္းမွေကာင္း .....

Post a Comment

သင္႔ရဲ႔ အၾကံေပးမႈဟာ ေနာက္စာတစ္ပုဒ္အတြက္ တြန္းအားပဲဗ်ာ။