Search This Blog

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