Thursday, October 18th, 2007...11:02 am

NO MORE ICONS


If you are new to the site, sign up for the RSS Feed. All new sign ups get punch and pieRSS feed. Thanks for visiting!


I wrote this one this morning and I have to say it was one of my favorites. The script is designed to create icons on some ones desktop, how many is really up to you. This can be sorta funny or just down write malicious. In all fairness I tested this on my self first.

( Click to image to enlarge)

desktop.jpg

Click here to download the script ( ICON PRANK )

As you can see there is a whole lot of icons, what you dont see is that they keep going and going, 2900 to be exact. I wasn’t sure if the script was working, but I found it was the hard way. Now you probably want to know how to do it:

Step 1:

Open notepad

Step2:

Copy this code into notepad

Dim WSHShell, fs, i

Set WSHShell = WScript.CreateObject(”WScript.Shell”)

Set fs = WScript.CreateObject(”Scripting.FileSystemObject”)

Function MakeDesktopShortcut( name, target )

Dim Shortcut,DesktopPath,StartupPath

DesktopPath = WSHShell.SpecialFolders(”Desktop”)

Set Shortcut = WSHShell.CreateShortcut(DesktopPath & “\” & name & “.lnk”)

Shortcut.TargetPath = target

StartupPath = fs.GetParentFolderName( target )

If fs.FolderExists( StartupPath ) then

Shortcut.WorkingDirectory = StartupPath

End If

Shortcut.Save

End Function

i=1
do until i=100
MakeDesktopShortcut “Shortcut to Notepad”& i, “C:\Windows\-Notepad.exe”
i=i+1
loop

Step 3

Decide how many icons. You can do this by changing the value of I. By default I set it to 100, you can go as high as you want, and as evil as you want.

Step 4

Save the file. The name should end in .vbs

Step 5

Unleash hell. Send it to your friends or family, and have them double click on it. Some email servers will block vbs files thinking they are viruses, so zipping it up usually does the trick. If that doesn’t work your will have to find a way to gain access to there computer and click it your self.

That is it. Create am ass load of icons and drive your friends crazy.

, , , , ,

StumbleUpon It!

11 Comments

  • Anyone with basic CLI knowledge could fix this in a matter of seconds, even in the dumb windoze cmd. Just put all the important shortcuts somewhere else and run `del *.lnk` then move the ones you wanted back. :)

  • Woo hoo. I think I’ve stumbled upon the stupid script-kiddy blog. What’s next, starting the spin-dry cycle in the optical drive?

  • HACKER GANGS ROAMING THE INTERNET, SPREADING THEIR DEVILISH CODE THAT NOBODY HAS EVER USED BEFORE AND THAT CAN NEVER BE REVERSED

  • you could write a bash file ot do that wiht liek 4 lines, i’ve done it b4, you just need to make empty files, tehy don’t need to be shortcuts, i feel bad for ppl who spend the time to write that mess and you could do the same thing in aobut 4 lines of batch file.

  • In my defense, I simply modified the code from Microsoft. So very little work for me

  • this could be interesting…..

  • okay, and one more thing. whenever i try 2 open this file, i get an error stating “line 3, char, 37 invalid character” any ideas on wats going wrong?

  • okay, new error. it tells me i cannot use a parentheses when calling a Sub
    Code: 800A0414
    Source: Microsoft VBScript compilation error

    help anybody?

  • Koth did you download the file I provided or did you copy and paste to make your own?

    If you copied it, you might have to re-type the ” they seem to cause some people errors.

    Otherwise just download what I provided. It should work as is. Just un-compress the file and click on it to test. Press Control-Alt-Del and go to task manager. There is a wsscript file running in the processes. End the taskt to stop the program.

  • dude wtf how do i take it off?????

  • @Jake…

    How do you stop it Jake… well you can restart your computer… or press ctrl alt del and look for a wsscript program running.

    Jake why did you run it against your self?

Leave a Reply