Showing posts with label windows 7 tricks. Show all posts
Showing posts with label windows 7 tricks. Show all posts

Wednesday, 16 April 2014

Access all system management tools in Windows effortlessly

In Windows, there is a hidden function which allows all system management tools (usually spread through control panel, computer management, administration tools etc) to be conveniently accessed from a single place. It is called as GodMode.

GodMode is not a plugin, or a software. To activate a GodMode shortcut, you just need to create a new folder and rename it to a specific file name with a code.

Create a new folder anywhere on your Desktop and rename the folder from 'New Folder' to this exact code:

GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}


You can also rename the folder to anything you want by replacing 'GodMode' by the desired name in the above code.




















Just hit enter and your GodMode shortcut will get created. The folder icon will resemble like that of Control Panel.














You can now access all the functions and tools from one place which are originally intended to be available only to Microsoft developers.





















An expanded list of GodMode is shown below in the screenshot. This code works for all Windows OS including XP, Win 7 as well as Win 8.  
PS: In case you wish to know how I printed this whole list in the scrolling window, read this.

Sunday, 30 March 2014

Use Your Pendrive As Your System RAM

1) First Insert the Pen Drive atleast having a memory of 1GB ,( Preferably 4GB) in the Given USB port of the Computer.
2) Wait for the Pen Drive Detection and see whether it is detected or not. After detection of Pen Drive, you should do the following things carefully.
3) Go to My Computer and right click it, then go to Properties.
4) Now go to Advanced and then to the Performance settings.
5) Now again Advanced, and go to Change.
6) In Change, select the pen drive which you have inserted. Then click on the Custom size and " check the value of space available ".
7) Please Enter the Same in the Initial and Maximum Columns also.

Now your Pen drive space is used for the System Virtual Memory , Just Restart and enjoy the Faster and Furious PC.

10 Notepad Tricks To Puzzle Your Friends

1. Toggle your friend's Caps Lock button simultaneously:

Open Notepad and Type :

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop


Save it as "Anything.VBS" and send it.
2. Continuously pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

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.
3. 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.
4. Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :

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 :

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 :

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. Cycle a message in your friend's computer:

Type :

@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN


Save it as "Anything.BAT" and send it.
8. Convey your friend a lil' message and shut down his / her computer:
Type :

@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.
9. Open Notepad continually in your friend's computer:
Type :

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


Save it as "Anything.BAT" and send it.
10. 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 :

@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.