Skip to main content

Windows 8 Shorcuts




Using Windows 8 is painful unless you are on a touch screen device. If you feel Windows 8 is really complicated and it’s hard to find the things on it, then you must try some shortcuts instead of moving your mouse here and there and keeps on clicking to find them. Here is a list of shortcuts you might find useful:


  • Press the Windows key to enter the tiled Start screen.

  • When on start screen, to search a setting or file or app, just type its name. If you are in Desktop mode, just press Windows Key and start typing.

  • Windows Key + C: Displays Charms menu.

  • Windows Key + X: Brings up a menu of advanced system options, including Windows Control Panel, Command Prompt, Task Manager and File Explorer.

  • Windows Key + I: Displays the Settings menu for the current app. For example, if you’re in Internet Explorer 10, this key shows Internet options. If you’re on the Start menu, it shows general OS settings.

  • Windows Key + Q: Brings up the apps search menu that allows you to search your list of installed programs.

  • Windows Key + D: Activates desktop mode.

  • Windows Key + Tab: Brings up the Task Switcher and toggles between Windows 8-style apps.

  • Windows Key + H: Brings up Share menu for the current app. For example, hitting Windows Key + H in Bing Maps, lets you email or share map information on social networks.

  • Windows Key + M: Opens desktop mode and minimizes all windows.

  • Windows Key + W: Opens universal search menu and sets it to search settings.

  • Windows Key + F: Opens universal search menu and sets it to search files.

  • Windows Key + R: Opens Run menu where you can launch programs by typing in their executable file names.

  • Windows Key + E: Opens File Explorer to the “My Computer” view which shows all your drives.

  • Windows Key +Number Key (1-9): Switch to desktop mode and make the Nth application on the task bar active where N is the number key you hit and 1 is the furthest taskbar icon to the left.

  • Windows Key + . (period key): Docks the current Windows 8-style application to the right or left, depending on how many times you hit it.

  • The Windows key + "," (that's the comma sign!) makes all current windows transparent, giving you a peek at the desktop as long as you hold down the Windows key.

  • Windows Key + Z: Brings up app menu, which shows contextual options for the active app.

  • Windows Key + L: Locks your computer and shows the lock screen.

  • Alt + F4: Close currant app.

  • The Windows key + Print Screen takes a screenshot and saves it in a Screenshots folder nested in your Pictures folder.

  • To take a screenshot on a Windows 8 tablet, simultaneously press the Windows button and the volume-down button on the tablet chassis.

  • The Windows key + Pause opens the system properties page to show you a quick rundown of your specs

  • Windows key + K - List available devices, for example a second screen.

  • Press Ctrl + Shift + Esc to start exploring the new Task Manager.

Comments

Popular posts from this blog

Reverse Engineering : Extract contents from .img file

Unyaffs is a program to extract files from a YAFFS2 file system image. Currently it can only extract images created by mkyaffs2image. Download the source from here . Compiling : Extract the contents into a suitable place and run the following command make Usage : unyaffs [options] <image_file_name> [<extract_directory>] Options: -d detection of flash layout, no extraction -b spare contains bad block information -c <chunk size> set chunk size in KByte (default: autodetect, max: 16) -s <spare size> set spare size in Byte (default: autodetect, max: 512) -t list image contents -v verbose output -V print version Source: Official github repository

Mac Yosemite : Ugly turned out to be Uglier and Ugliest

You might have read my review on Mac OSX Yosemite , The Good, bad and ugly. Now it turned out to be UGLIEST. No more words. Here's the image. If you are on Yosemite, you might be familiar with it. Most of the times, you get stuck on boot logo. I've seen complaints regarding it saying that fellow members are ignorant of it and they deny such possibility, even though many are still facing it. Workarounds suggested by our online friends: Just reboot your mac as many times it takes to your desktop. Boot into safe mode, by holding SHIFT and then reboot. Comment your workaround below, mine is the first one. If you are still on Mavericks, be there till Apple provides a fix for this.

Reverse Engineering : Android Dex files to Class files

In my previous post, we have seen how to extract the contents of img file . After extraction, you will find that most of the files have ".dex" extension. These are Compiled Android application code files. In order to convert them into executable format (.class or .jar), you can use dex2jar tool. Extract it to a proper location and open the terminal to this location. Now run the following command: ./d2j-dex2jar.sh <Path-to-dex_file> It will bundle the dex files into a jar file, and stores it in the current directory. dex2jar can also be used to convert dex files into variuos other formats. For detailed info, click here .