Search This Blog

Tuesday, 20 November 2012

GOD MODE IN WINDOWS 7.

To Enable 'God Mode' in Windows 7
This trick is running on OS Windows 7, To enter the "GodMode" we need to create a new folder.
Then rename the folder to:

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

The folder icon will change to Control Panel icon and will contain hundreds of Control options Access
............................................................................................................

Friday, 14 September 2012

ACCESS UR FOLDER AS A DRIVE.

Just follow the steps as given below :-

Go to start> run> cmd
In command prompt,
Type:  subst Z: D:\folder 
and hit Enter...
You can replace Z: with your desired New Drive Letter (Except existing Drive letters)
You can replace D:\folder with the path of your favorite folder
Now, Type: exit

This will creates a new drive... When you open this , it will open your folder.

NOTE: On Restart the Virtual Drive Disappears .
............................................................................................................

Monday, 27 August 2012

CREATING OWN RUN COMMAND IN WINDOWS.

Just follow the steps as given below :-

Step 1: Create the shortcut for the folder or tool for which you need to create the shortcut.
Right-click on your Desktop and select New -> Shortcut.
You will see a “Create Shortcut” Dialog box
Type notepad.exe then press next.
Then type any name for the shortcut.

Step 2: Open the run command and goto \Windows

Step 3: Paste the shortcut to that folder and change the name of the shortcut to run command as we want.

Now we can open the folder or tool from run command using the name we have given for the shortcut.
.....................................................................................................

Tuesday, 21 August 2012

SECURE FOLDER BY MAKING INACCESSIBLE AND UNDELETABLE.

Want to lock a folder without using any software / password in Windows,
Just follow the steps as given below :- 
Go to start> run> cmd
In command prompt,

Type:    cacls "path_of_folder" /E /P everyone:n
To regain access

Type:    cacls "path_of_folder" /E /P everyone:f

Note: Do not lock C:\ drive using this trick otherwise Windows will not boot next time.

........................................................................................................

Wednesday, 1 August 2012

GOOGLE TRICKS.

List of some google operators....

1. Google trick to search different file formats (keyword filetype:doc)

2. Google trick to search educational resources (keyword site:.edu) example (computer site:.edu)

3. Finding the time of any location (time romania)

4. Finding the weather of any location (boston weather)

5. Finding faces (add imgtype=face to the URL)

6. Using Google as a calculator (9 * 10)(143+234)(119-8)

7. Converting currencies (1 USD in INR)(10 US Dollars in Indian Rupee)

8. Find how many teaspoons are in a quarter cup (quarter cup in teaspoons)

9. How many seconds there are in a year (seconds in a year)

10. Tracking stocks (stocks:MSFT)
..........................................................................................................

HIDE THE DATA IN A NOTEPAD.

Here is a very interesting trick to hide text inside your windows default text editor i.e. Notepad using command prompt, but this trick works only on NTFS file system.

Steps:
1. Go to your command prompt Start–>Run and Type cmd
2. Type cd.. to move to C:\> drive or Type cd desktop to move to your desktop.
3. Type the below code in your command prompt
notepad file.txt: hidden
4. Write some data and save (Ctrl+s) the file.
5. Browse to the file location and Open file.txt you cannot see any data in the file.
6. To retrieve the hidden data open command prompt and type the same command.
Notepad file.txt:hidden
............................................................................................................

Saturday, 14 July 2012

LOCK A FOLDER WITHOUT ANY SOFTWARE

LOCK A FOLDER WITHOUT ANY SOFTWARE:
STEPS:

1. Open notepad and paste the following code in it.
2. Change the password in place of (qwerty)
3. Save the notepad as: Locker.bat
4. At first time start it will create folder with Locker automatically for u.
5. After creation of Locker folder again click on the Locker.bat
6. It will ask.press Y then Locker folder will be disappeared.
7. Again to get it click on locker.bat. and give ur password u will get the folder again.

note: current password is qwerty

CODE:

cls
@color A
@echo off
if EXIST "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" goto

unlock
if NOT EXIST locker goto mdfolder

:confirm
echo Are you sure want to lock the locker(Y/N)
set/p "ch="
if %ch%==y goto lock
if %ch%==Y goto lock
if %ch%==n goto end
if %ch%==N goto end
echo invalid choice
goto confirm

:lock
ren locker "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
attrib +s +h "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
echo lock successfully
goto end

:unlock
echo Enter password for unlock
set/p "pass="
if NOT %pass%==qwerty goto fail
attrib -s -h "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
ren "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" locker
echo Unlock successfully
goto end

:fail
echo Invalid Password
goto end

:mdfolder
md locker
echo Locker created successfully
goto end

:end
echo Locker generated by xtreme hackers
echo www.xtremehackers.blogspot.com
pause:

.....................................................................................................