Social Icons

Pages

Showing posts with label Tips and Tricks. Show all posts
Showing posts with label Tips and Tricks. Show all posts

Thursday, 16 June 2011

Shortcut Icon for Run...

Shortcut Icon for Run...

You can put the Run... command found in the Start Menu on the desktop or anywhere else you want
1)Click on the Start Menu
2)Drag the Run... command to the desktop
3)You can then cut and paste it anywhere you like.
I put it in my Quick launch toolbar, it saves you a mouse click and possibly a little time.
(Works only in XP style Start Menu not in the classic, and make sure "Enable dragging and dropping" is activated in Start Menu properties.)


Powered by Qumana


10 Scripts Tricks

Given below are some freaky tricks to prank your friends. Just type the given code in Notepad and save it accordingly. 



1) Convey your friend a little message and shut down his / her computer:


Type :
Code:
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s

Save it as "Anything.BAT" in All Files and send it.



2) Toggle your friend's Caps Lock button simultaneously:
Type :
Code:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.



3) Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

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 5000
loop

Save it as "Anything.VBS" and send it.



4) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :
Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.



5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
Type :

Code:
WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "

Save it as "Anything.VBS" and send it.



6) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :

Code:
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

Save it as "Anything.VBS" and send it.



7) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.

8. Open Notepad continually in your friend's computer:
Type :

Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as "Anything.BAT" and send it.



9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :

Code:
@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two

Save it as "Anything.BAT" and send it.



Given below are some freaky tricks to prank your friends. Just type the given code in Notepad and save it accordingly.


1) Convey your friend a little message and shut down his / her computer:


Type :
Code:
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s

Save it as "Anything.BAT" in All Files and send it.



2) Toggle your friend's Caps Lock button simultaneously:
Type :
Code:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.



3) Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

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 5000
loop

Save it as "Anything.VBS" and send it.



4) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :
Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.



5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
Type :

Code:
WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "

Save it as "Anything.VBS" and send it.



6) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :

Code:
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

Save it as "Anything.VBS" and send it.



7) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.

8. Open Notepad continually in your friend's computer:
Type :

Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as "Anything.BAT" and send it.



9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :

Code:
@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two

Save it as "Anything.BAT" and send it.



1) Convey your friend a little message and shut down his / her computer:


Type :
Code:
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s

Save it as "Anything.BAT" in All Files and send it.



2) Toggle your friend's Caps Lock button simultaneously:
Type :
Code:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.



3) Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

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 5000
loop

Save it as "Anything.VBS" and send it.



4) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :
Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.



5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
Type :

Code:
WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "

Save it as "Anything.VBS" and send it.



6) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :

Code:
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

Save it as "Anything.VBS" and send it.



7) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.

8. Open Notepad continually in your friend's computer:
Type :

Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as "Anything.BAT" and send it.



9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :

Code:
@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two

Save it as "Anything.BAT" and send it.


enjoy with www.itfunia.tk * www.quettainfo.com



Powered by Qumana


Wednesday, 15 June 2011

Close all open applications one click

How to Close all open applications with only just one click







We always wish to close all the open applications at the end of the day. Since Our habbits are of rarely rebooting our desktop, we manually close each application. Depending on the number of open applications this can be a waste of time.

Thus, The people at NTWind Software have a perfect utility for this situation aptly called Close All Windows. Rather than manually closing each application, Only click the Close All Windows button on your taskbar.

 

In this article, We will show you how to install and configure Close All Windows on your computer for easy access on the taskbar.
To get started head over to NTWind Software and download the latest version of Close All Windows.
After the file is downloaded extract the CloseAll folder to a permanent location on your computer.  Since Close All Windows is an application I extracted the folder to C:\Program Files\ where applications are typically installed.




For easy access it is best to pin the application to the taskbar. Drag the Close All Windows application from the CloseAll folder onto the taskbar.




Hey, You are now most efficient. Keep Enjoying.



Powered by Qumana


Changing Startup and Log-off screens

Windo ws Tricks : Changing Startup and Log-off screens 





Startup Screen


  1. Create a 320x400 bitmap in the root directory and name it LOGO.SYS

  2. Yo u can use LOGOW.SYS file in the Windows directory as a starter   



Logoff Screens



  1. There are many system file that constitutes Lofoff screen.

  2. They are actually bitmaps 320x400 that just have a different extension

  3. The hidden file in the root directory LOGO.SYS is the startup logo.

  4. There are two files in the Windows directory.

  5. LOGOW.SYS is the Wait while Shutting down ... screen.

  6. LOGOS.SYS is the You may now shut-off or Reboot screen.

  7. Make two new image files of your chice in Paint and name it as LOGOW.SYS and LOGOS.SYS and replce the actual windows file by this two.

  8. But make sure they should be of the same size





Powered by Qumana


Tuesday, 14 June 2011

Shorcut Keys IE9


Internet Explorer 9 sports all new look with jazzed up interface. New browser version has improved features and is faster than before. You can make web browsing more fast by using quick keyboard shortcuts in Internet Explorer 9 browser. You can perform most frequent and essential tasks quickly using the keyboard in IE9. [via Microsoft Help]


IE9: Top Keyboard shortcuts


Alt Show the menu bar. After the selection menu bar goes away.


Alt+C View your favorites, feeds, and browsing history.


Alt+L Opens Help menu


Alt+M Go to your homepage.


Alt+X Open Tools menu


Ctrl+B Organize your favorites.


Ctrl+D Add a webpage to your favorites.


Ctrl+J Open Download Manager.


Ctrl+K Duplicates the current tab


Ctrl+L Highlight the text in the Address bar.


Ctrl+N Open a new window.


Ctrl+T Open a new tab.


Powered by Qumana


Monday, 13 June 2011

Calculate Weight on Planet



If you are 20 years old on planet Earth, your age will be almost half (about 10 martian years) on planet Mars. Even your birthday date will come quicker on Mars than it comes on Earth. How is this possible and does this sound confusing? Well, if you live on other planet (except Earth) your age, birthday date will be different and even your body weight figure will vary. There is no need for complex research, you can use online tool to calculate your probable age, birthday date and weight on different planets of the solar system.

Calculate age & birthday date on other planets
1. Open your age on other worlds webpage. There you should see photos of different planets and few text boxes.

2. Enter your birthday date in (month – date – year) format and click Calculate button. This web tool will calculate your age and birthday date on other planets based on your birthday date on planet Earth.



3. Once you click Calculate button, you should see your birthday date and age on other planets like Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto. Calculations are interesting, as you will have different age on different planets.

Earth takes one year or 365 days to complete one revolution around the Sun. Other planets take different number of days to complete one revolution around the Sun, this results in different age figure. For example: Mercury takes 88days while Pluto takes 248years to complete one revolution around the Sun. Since your age is different, the birthday date will also be different. So, now you want to travel to a different planet?

Calculate weight on other planets
1. Open your weight on other planets webpage. It has options to show calculation for different planets, stars and moons of Jupiter.

2. Enter your current weight figure and click Calculate button to see your possible weight figure on other planets.



3. Your weight figure will be displayed for each planet. Your weight will be maximum on Jupiter planet and least on the Moon.

Weight calculation different on each planet due to different level of gravity. This in turns effect the mass and distance of object resulting in varying weight on each planet. Want to travel to different planet to feel lighter?

More Hot Pages