Tuesday, 2 October 2012

Website Storage Settings panel

Website Storage Settings panel

By:mayur khokhar

 

AlertThis content requires Flash

Get Adobe Flash Player

Note: The Settings Manager that you see above is not an image; it is the actual Settings Manager. Click the tabs to see different panels, and click the options in the panels to change your Adobe Flash Player settings.
The list of websites above is stored on your computer only, so that you can view or change your local storage settings. Adobe has no access to this list, or to any of the information that the websites may have stored on your computer.
Use this panel to specify storage settings for any or all of the websites that you have visited. The list of Visited Websites displays the following information for each website:
  • The name of the website
  • The amount of disk space the website has used to store information on your computer
  • The maximum amount of disk space the website can use before requesting additional space

ip: Display Administrative Tools on the Windows 7 Start Menu

Tip: Display Administrative Tools on the Windows 7 Start Menu



The Administrative Tools menu is not displayed by default in Windows 7. If you want to display this menu on your computer or for a user with administrator privileges, you need to customize the Start menu.

You can add the Administrative Tools menu to either the Start menu or to the Start menu and the All Programs submenu of the Start menu by completing the following steps:

1. Right-click Start, and then click Properties.The Taskbar And Start Menu Properties dialog box is displayed with the Start Menu tab selected by default.
2. Click Customize.Scroll down the list until you can see the System Administra¬tive Tools heading.
3. At this point, you have two options:
  • If you want to display the Administrative Tools menu as a submenu of the All Programs menu, select Display On The All Programs Menu.
  • If you want to display the Administrative Tools menu directly on the Start menu and as a submenu of the All Programs menu, select Display On The All Programs Menu And The Start Menu.

4. Click OK twice.

Monday, 1 October 2012

Open the Command Prompt From Any Location

11. Open the Command Prompt From Any Location

Open Command Window Here - Command Prompt Tricks
If you've ever worked in the Command Prompt for very long, you know that it can be really frustrating executing the cd/chdir command over and over again to get to the right directory you want to work from.
Luckily, there's a super easy Command Prompt trick that will let you open a Command Prompt window from whatever folder you're viewing in Windows.
All you have to do is navigate, in Windows, to the folder you want to start working from in the Command Prompt. Once there, hold down your Shift key while you right-click anywhere in the folder. Once the menu pops up, you'll notice an entry that's not usually there: Open command window here.
Click it and you'll start a new instance of the Command Prompt, ready and waiting at the right location!
If you're a Command Prompt power user, you'll immediately recognize the value in this little trick.
Ads
Mobile Ads Redefined#2 Largest Mobile Ad Network. $10+ CPM's, Weekly Payments.Airpush.com
How can I hide my IP?With our simple award winning software. Easy. Special offer todayHideYourIPAddress.net
IP addressing made easyManage IPv4 & IPv6 Subnets - Keep track of your IP addresseswww.crypton.co.uk

12. Drag and Drop For Easy Path Name Entry

Command Prompt Drag and Drop - Command Prompt Tricks
Most Command Prompt commands require you, or have options, to specify full paths to files or folders but typing out a long path can be frustrating, especially when you miss a character and have to start over.
For example, in Windows 7, the path to the Accessories group in my Start Menu is C:\Users\Tim\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Accessories. Who wants to type that all in manually? Not me.
Luckily there's a Command Prompt trick that makes this much easier: drag and drop.
Just navigate to the folder you want the path for in Windows Explorer. Once there, drag the folder or file to the Command Prompt window and let go. Like magic, the full path is inserted, saving you a considerable amount of typing depending on the length and complexity of the path name.
Note: Unfortunately, the drag and drop feature does not work in an elevated Command Prompt.

13. Shut Down or Restart Another Computer

Remote Shutdown Dialog - Command Prompt Tricks
System administrators in a business environment do this all the time for lots of reasons, but you can also shut down or restart another computer on your network, all from your computer's Command Prompt.
The easiest way to shut down a computer remotely is to execute shutdown /i from the Command Prompt which will open the Remote Shutdown Dialog, shown here. Just enter the name of the remote computer (which you can get by running the hostname command on the other PC), choose what you want to do (restart or shutdown), select some other options and then click OK.
So whether you're brushing up on your command skills or just scaring a family member, this Command Prompt trick is a fun one.
You can also shut down or restart another computer strictly from the Command Prompt with the shutdown command, without using the Remote Shutdown Dialog.

14. Use Robocopy as a Backup Solution

Robocopy Command Backup - Command Prompt Tricks
Thanks to the robocopy command, you don't need to use Window's backup software or install a third party program to manage your backups.
Just execute robocopy c:\users\tim\documents f:\backup\documents /copyall /e /r:0 /dcopy:t /mir, obviously replacing the source and destination folders with whatever you'd like to backup and where. The robocopy command with these options functions identically to an incremental backup software tool, keeping both locations in sync.
You don't have the robocopy command if you're using Windows XP or earlier. However, you do have the xcopy command, which can be used to do something very similar: xcopy c:\users\tim\documents f:\backup\documents /c /d /e /h /i /k /q /r /s /x /y.
No matter which command you choose to use, just create a script file containing the command and schedule it to run in Task Scheduler and you'll have your own custom made backup solution.
I've chosen to use the robocopy command on my personal computers as my only local backup solution because I like the level of control it gives me. Hopefully you take that as a vote of confidence in this incredibly useful Command Prompt trick.

15. View Your Computer's Important Network Information

Ipconfig Command - Command Prompt Tricks
Maybe just for your own information, but certainly when you're troubleshooting a network or Internet problem, you'll probably at some point need to know details about your computer's network connection.
Everything you'd want to know about your network connection is available somewhere in the Control Panel in Windows, but it's much easier to find, and much better organized, in the results from the ipconfig command.
Open Command Prompt and execute ipconfig /all. What displays on screen next is everything important about your network connection: your IP address, hostname, DHCP server, DNS information, and much, much more.
Combine this hack with Command Prompt Trick #7 and you've got a very easy way to get information about your connection to someone helping you with a problem.

16. Map a Local Folder Just Like a Network Drive

Subst Command - Command Prompt Tricks
The net use command is used to assign shared drives on a network to your own computer as a drive letter, but did you know there's another command that can be used to do the same thing to any folder on any of your local hard drives?
There is and it's called the subst command. Just execute the subst command, followed by the path of the folder you wish to appear as a drive. For example, let's say you want your C:\Windows\Fonts folder to appear as the Q: drive. Just execute subst q: c:\windows\fonts and you're set!
This Command Prompt trick makes accessing a particular location from the Command Prompt much easier.

17. Access Previously Used Command with the Arrow Keys

Arrow Keys - Command Prompt Tricks
Another great Command Prompt trick has to be the use of the keyboard arrow keys to cycle through previously executed commands. The up and down arrow keys cycle through the commands you've entered and the right arrow automatically enters, character by character, the last command you executed.
This might not sound that interesting, but there are several situations where the arrow keys become huge time savers.
Consider this example: You've typed out 75 characters of a command and then try to execute it, only to find that you forgot to add an option at the very end. No problem, just hit the up arrow and the entire command is automatically entered in the Command Prompt window, ready for you to edit to make it work.

18. Automatically Complete Commands with Tab Completion

Tab Completion - Command Prompt Tricks
Tab completion is another Command Prompt trick that can save you lots of time, especially if your command has a file or folder name in it that you're not completely sure of.
To use tab completion in the Command Prompt, just enter the command and then the portion of the path that you do know, if at all. Then press the tab key over and over to cycle through all of the available possibilities.
For example, let's say you want to change directories to some folder in the Windows directory but you're not sure what it's named. Type cd c:\windows\ and then press tab until you see the folder you're looking for. The results cycle or you can use Shift+Tab to step through the results in reverse.
Ads
⇒ Trace IP Address1) Enter IP Address 2) See location, ISP & morewhatismyipaddress.com
Free CCNA TCP/IP Tutorial800+ Free Tutorials for A+, CCNA, Security+ Certs!www.inetdaemon.com/tcp-ip.shtml

19. Find a Website's IP Address

Website IP Address - Command Prompt Tricks
Like to know the IP address of a website? There are a few different commands you can use to find it.
Let's use the nslookup command to find the IP address of About.com. Just execute nslookup about.com and view the result. Make sure you don't confuse any private IP addresses that also show up in the nslookup results alongside About.com's public IP address.
Another way to find a site's IP address is to use the ping command. Execute ping about.com and then look at the IP address between the brackets in the results shown.
Using either Command Prompt trick, the result is 207.241.148.80.

20. Copy & Paste Easier with QuickEdit Mode

QuickEdit Mode - Command Prompt Tricks
How about an even easier way to copy from the Command Prompt? And a secret way to easily paste?
Just right-click on the Command Prompt title bar and select Properties. On the Options tab, in the Edit Options section, check the QuickEdit Mode box and then click OK.
Enabling QuickEdit Mode is like having Mark enabled all the time so selecting text to copy is really easy.
But it also enables an easy way to paste into the Command Prompt: just right click once and whatever is in the clipboard is pasted in the Command Prompt window. Normally, pasting involves right-clicking and selecting Paste.

21. Watch Star Wars Episode IV

ASCII Star Wars - Command Prompt Tricks
Yes, you read that correctly, you can watch an ASCII version of the full Star Wars Episode IV movie right in the Command Prompt window!
Just open Command Prompt and execute telnet towel.blinkenlights.nl. The movie will start immediately. This isn't a terribly productive use of the Command Prompt, nor is it really a trick of the Command Prompt or any command, but it sure is fun!
Note: The telnet command is not enabled by default in Windows 7 or Windows Vista but can be turned on by enabling Telnet Client from Windows Features in the Programs and Features applet in Control Panel. If you'd rather not enable Telnet but would like to see the movie, you can also watch it in your browser here

How To Boot Into Safe Mode On Windows 8

How To Boot Into Safe Mode On Windows 8 (The Easy Way)

image
Once of the most common steps when troubleshooting a PC is to boot into safe mode. For a long time this has been achieved by pressing the F8 key, this all changes with Windows 8 and its Automatic Repair mode. But what if we want Safe Mode?
You can still have Safe Mode, however, it is buried deep into the recovery options of Windows 8. While just mashing the F8 key as we all know will boot you into automatic recovery mode, you can still manually access the recovery options by pressing the Shift+F8 key combination.

Booting Into Safe Mode on Windows 8

The trick is to hold the Shift button and mash the F8 key, this will sometimes boot you into the new advanced “recovery mode”,  where you can choose to see advanced repair options.

You will need to click on the Troubleshoot option.

No select Advanced Options.

Now choose the Windows Startup Settings option, by the looks of things we were never meant to find Safe Mode.

Finally hit the Restart button.

Like magic, when your PC reboots you will be able to boot into Safe Mode from the familiar looking Advanced Boot Options screen.

Getting To Safe Mode From Within Windows 8

You have a second option, however, this requires you to be booted into Windows already. Press the Win+R key combination and type msconfig in the run box and hit enter.

Switch over to the boot tab, and click on the Safe Boot check box.

You can also choose the type of Safe Mode you want to boot into:
  • Minimal is normal safe mode.
  • Alternate Shell is safe mode with command prompt
  • Network is safe mode with networking.
The Active Directory option pertains to restoring a server that is a Domain Controller for your network. Once you have chosen your option click the ok button and restart your machine.

You PC will be booted into Safe Mode automatically.

If you restart you PC you will just keep getting booted into Safe Mode, to stop this open msconfig again and uncheck the Safe Boot option, then hit the ok button.

Access Hidden Regional Themes

Access Hidden Regional Themes in Windows 7

Windows 7 offers you location specific Aero themes based on the language and location you pick during installation.  Here we will take a look at accessing other hidden themes from different countries.
When you first start the Windows 7 installation the first thing you will do is select a language, time and currency format.  This is where Windows determines what themes you’re presented with by default.
2Inst
Being from the US I’m presented with location specific themes from the United States with desktop backgrounds such as scenery from Maine, Idaho, Oregon etc.

To access the other international themes copy and paste the following path into the search box and hit Enter.
C:\Windows\Globalization\MCT

In the MCT folder you will find additional themes for Canada, Australia, South Africa, and Great Britain.

You can go in and grab just the Wallpapers…

Or go into the Theme folder double click on the the thumbnail to add it. 

Here you can see I added all of them and now they will be available under the My Themes section for when you want to change them around.

This is a neat little trick that will let you customize Windows 7 with hidden themes already available.  Also if you want to get more themes head over to the Microsoft site.

Get an Aero-Styled Classic Start Menu in Windows 7 Are you missing the Classic Start Menu in your new Windows 7 installation? Now you can get it back and enjoy the Aero-Glass look as well. Before Here is the regular “Start Menu” on one of our example systems. Organized and nice but it would be nicer to be able to switch back and forth between the regular and classic styles whenever we wanted. cwsm-01 Setup When you download the app it will be in a zip file and once you have unzipped the contents here is what is included. At this point you will need to create a “Program Files” folder, place the contents inside, and create a convenient shortcut. Now you are ready to have the “Classic Menu” back. After As soon as you start the app your menu will be automatically converted over to the classic style. The rounded corners and Aero-Glass effect make it look very nice. And access for the classic style menu is just the same as for the regular style menu (i.e. Windows Key, Ctrl + Esc, or left clicking the mouse button). At the moment “drag & drop, add, remove, rename, and sort items” features are not available in Classic Windows Start Menu. You can make these changes in your regular style menu and the changes will be reflected in the classic style menu when you switch back. A nice built-in trick is the “Original menu…” listing. Click on it to temporarily view and use the regular menu and then click on the “Start Menu Orb Icon” to return to the classic style menu. If you want (or need) to exit the classic style menu simply right click on the “Start Menu Orb Icon” to open the “Exit Window”. Note: If you would like for Classic Windows Start Menu to auto-start with Windows each time you will need to add the appropriate shortcut to the “Start Folder”. Conclusion Classic Windows Start Menu provides a quick and easy way to have the classic style menu back in Windows 7 while letting you enjoy the Aero-Glass look as well. NOTICE: The download link has been updated to a new source.

Get an Aero-Styled Classic Start Menu in Windows 7

Are you missing the Classic Start Menu in your new Windows 7 installation? Now you can get it back and enjoy the Aero-Glass look as well.
Before
Here is the regular “Start Menu” on one of our example systems. Organized and nice but it would be nicer to be able to switch back and forth between the regular and classic styles whenever we wanted.
cwsm-01
Setup
When you download the app it will be in a zip file and once you have unzipped the contents here is what is included. At this point you will need to create a “Program Files” folder, place the contents inside, and create a convenient shortcut. Now you are ready to have the “Classic Menu” back.

After
As soon as you start the app your menu will be automatically converted over to the classic style. The rounded corners and Aero-Glass effect make it look very nice. And access for the classic style menu is just the same as for the regular style menu (i.e. Windows Key, Ctrl + Esc, or left clicking the mouse button).

At the moment “drag & drop, add, remove, rename, and sort items” features are not available in Classic Windows Start Menu. You can make these changes in your regular style menu and the changes will be reflected in the classic style menu when you switch back.

A nice built-in trick is the “Original menu…” listing. Click on it to temporarily view and use the regular menu and then click on the “Start Menu Orb Icon” to return to the classic style menu.

If you want (or need) to exit the classic style menu simply right click on the “Start Menu Orb Icon” to open the “Exit Window”.
Note: If you would like for Classic Windows Start Menu to auto-start with Windows each time you will need to add the appropriate shortcut to the “Start Folder”.

Conclusion
Classic Windows Start Menu provides a quick and easy way to have the classic style menu back in Windows 7 while letting you enjoy the Aero-Glass look as well.

NOTICE: The download link has been updated to a new source.

Get an Aero-Styled Classic Start Menu in Windows 7 Are you missing the Classic Start Menu in your new Windows 7 installation? Now you can get it back and enjoy the Aero-Glass look as well. Before Here is the regular “Start Menu” on one of our example systems. Organized and nice but it would be nicer to be able to switch back and forth between the regular and classic styles whenever we wanted. cwsm-01 Setup When you download the app it will be in a zip file and once you have unzipped the contents here is what is included. At this point you will need to create a “Program Files” folder, place the contents inside, and create a convenient shortcut. Now you are ready to have the “Classic Menu” back. After As soon as you start the app your menu will be automatically converted over to the classic style. The rounded corners and Aero-Glass effect make it look very nice. And access for the classic style menu is just the same as for the regular style menu (i.e. Windows Key, Ctrl + Esc, or left clicking the mouse button). At the moment “drag & drop, add, remove, rename, and sort items” features are not available in Classic Windows Start Menu. You can make these changes in your regular style menu and the changes will be reflected in the classic style menu when you switch back. A nice built-in trick is the “Original menu…” listing. Click on it to temporarily view and use the regular menu and then click on the “Start Menu Orb Icon” to return to the classic style menu. If you want (or need) to exit the classic style menu simply right click on the “Start Menu Orb Icon” to open the “Exit Window”. Note: If you would like for Classic Windows Start Menu to auto-start with Windows each time you will need to add the appropriate shortcut to the “Start Folder”. Conclusion Classic Windows Start Menu provides a quick and easy way to have the classic style menu back in Windows 7 while letting you enjoy the Aero-Glass look as well. NOTICE: The download link has been updated to a new source.

Get an Aero-Styled Classic Start Menu in Windows 7

Are you missing the Classic Start Menu in your new Windows 7 installation? Now you can get it back and enjoy the Aero-Glass look as well.
Before
Here is the regular “Start Menu” on one of our example systems. Organized and nice but it would be nicer to be able to switch back and forth between the regular and classic styles whenever we wanted.
cwsm-01
Setup
When you download the app it will be in a zip file and once you have unzipped the contents here is what is included. At this point you will need to create a “Program Files” folder, place the contents inside, and create a convenient shortcut. Now you are ready to have the “Classic Menu” back.

After
As soon as you start the app your menu will be automatically converted over to the classic style. The rounded corners and Aero-Glass effect make it look very nice. And access for the classic style menu is just the same as for the regular style menu (i.e. Windows Key, Ctrl + Esc, or left clicking the mouse button).

At the moment “drag & drop, add, remove, rename, and sort items” features are not available in Classic Windows Start Menu. You can make these changes in your regular style menu and the changes will be reflected in the classic style menu when you switch back.

A nice built-in trick is the “Original menu…” listing. Click on it to temporarily view and use the regular menu and then click on the “Start Menu Orb Icon” to return to the classic style menu.

If you want (or need) to exit the classic style menu simply right click on the “Start Menu Orb Icon” to open the “Exit Window”.
Note: If you would like for Classic Windows Start Menu to auto-start with Windows each time you will need to add the appropriate shortcut to the “Start Folder”.

Conclusion
Classic Windows Start Menu provides a quick and easy way to have the classic style menu back in Windows 7 while letting you enjoy the Aero-Glass look as well.

NOTICE: The download link has been updated to a new source.

Get an Aero-Styled Classic Start Menu in Windows 7 Are you missing the Classic Start Menu in your new Windows 7 installation? Now you can get it back and enjoy the Aero-Glass look as well. Before Here is the regular “Start Menu” on one of our example systems. Organized and nice but it would be nicer to be able to switch back and forth between the regular and classic styles whenever we wanted. cwsm-01 Setup When you download the app it will be in a zip file and once you have unzipped the contents here is what is included. At this point you will need to create a “Program Files” folder, place the contents inside, and create a convenient shortcut. Now you are ready to have the “Classic Menu” back. After As soon as you start the app your menu will be automatically converted over to the classic style. The rounded corners and Aero-Glass effect make it look very nice. And access for the classic style menu is just the same as for the regular style menu (i.e. Windows Key, Ctrl + Esc, or left clicking the mouse button). At the moment “drag & drop, add, remove, rename, and sort items” features are not available in Classic Windows Start Menu. You can make these changes in your regular style menu and the changes will be reflected in the classic style menu when you switch back. A nice built-in trick is the “Original menu…” listing. Click on it to temporarily view and use the regular menu and then click on the “Start Menu Orb Icon” to return to the classic style menu. If you want (or need) to exit the classic style menu simply right click on the “Start Menu Orb Icon” to open the “Exit Window”. Note: If you would like for Classic Windows Start Menu to auto-start with Windows each time you will need to add the appropriate shortcut to the “Start Folder”. Conclusion Classic Windows Start Menu provides a quick and easy way to have the classic style menu back in Windows 7 while letting you enjoy the Aero-Glass look as well. NOTICE: The download link has been updated to a new source.

Get an Aero-Styled Classic Start Menu in Windows 7

Are you missing the Classic Start Menu in your new Windows 7 installation? Now you can get it back and enjoy the Aero-Glass look as well.
Before
Here is the regular “Start Menu” on one of our example systems. Organized and nice but it would be nicer to be able to switch back and forth between the regular and classic styles whenever we wanted.
cwsm-01
Setup
When you download the app it will be in a zip file and once you have unzipped the contents here is what is included. At this point you will need to create a “Program Files” folder, place the contents inside, and create a convenient shortcut. Now you are ready to have the “Classic Menu” back.

After
As soon as you start the app your menu will be automatically converted over to the classic style. The rounded corners and Aero-Glass effect make it look very nice. And access for the classic style menu is just the same as for the regular style menu (i.e. Windows Key, Ctrl + Esc, or left clicking the mouse button).

At the moment “drag & drop, add, remove, rename, and sort items” features are not available in Classic Windows Start Menu. You can make these changes in your regular style menu and the changes will be reflected in the classic style menu when you switch back.

A nice built-in trick is the “Original menu…” listing. Click on it to temporarily view and use the regular menu and then click on the “Start Menu Orb Icon” to return to the classic style menu.

If you want (or need) to exit the classic style menu simply right click on the “Start Menu Orb Icon” to open the “Exit Window”.
Note: If you would like for Classic Windows Start Menu to auto-start with Windows each time you will need to add the appropriate shortcut to the “Start Folder”.

Conclusion
Classic Windows Start Menu provides a quick and easy way to have the classic style menu back in Windows 7 while letting you enjoy the Aero-Glass look as well.

NOTICE: The download link has been updated to a new source.