Thursday, June 13, 2013

Top 10 Tips for Using Windows 8 With a Keyboard and Mouse

How To Add A Shut-Down Button To the Windows 8 Start Menu

As Microsoft dropped the Start menu from Windows 8 Modern UI, many users found options such as Shut down, Restart or Log off hardly accessible. If you are one of them, here is a quite useful tutorial which will show you how to add Shut down, Restart or Log off buttons directly into your Start screen.

To get started follow the steps below.
Step 1: Press Win+Q when you are in the Start screen to launch Windows 8 Search. When the search option opens, inside search bar type notepad.

Step 2: From the results window open Notepad app.

Step 3: When Notepad window opens up, copy and paste the following code inside a Notepad document.
set WshShell = WScript.CreateObject("WScript.Shell")
strStartMenu = WshShell.SpecialFolders("StartMenu")
set oShellLink = WshShell.CreateShortcut(strStartMenu & "\Shutdown.lnk")
oShellLink.TargetPath = "%systemroot%\System32\shutdown.exe"
oShellLink.Arguments = "-s -t 0"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%\System32\shell32.dll,27"
oShellLink.Description = "Shutdown Computer (Power Off)"
oShellLink.WorkingDirectory = "%systemroot%\System32\"
oShellLink.Save
Set oShellLink = Nothing
set oShellLink = WshShell.CreateShortcut(strStartMenu & "\Log Off.lnk")
oShellLink.TargetPath = "%systemroot%\System32\shutdown.exe"
oShellLink.Arguments = "-l"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%\System32\shell32.dll,44"
oShellLink.Description = "Log Off (Switch User)"
oShellLink.WorkingDirectory = "%systemroot%\System32\"
oShellLink.Save
Set oShellLink = Nothing
set oShellLink = WshShell.CreateShortcut(strStartMenu & "\Restart.lnk")
oShellLink.TargetPath = "%systemroot%\System32\shutdown.exe"
oShellLink.Arguments = "-r -t 0"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%\System32\shell32.dll,176"
oShellLink.Description = "Restart Computer (Reboot)"
oShellLink.WorkingDirectory = "%systemroot%\System32\"
oShellLink.Save
Set oShellLink = Nothing
Wscript.Echo "Created Shutdown, Restart and Log Off buttons in your Programs Menu. You can now pin them to the Start Screen of your Windows 8 computer."
Step 4: Click File and then from drop down menu choose Save As.

Step 5: From new window that opens up give the name Shortcuts.vbs and save it on your Desktop.

MY NOTE: CHANGE THE TYPE TO ALL FILES.  YOU WANT THE FILE TO BE CALLED SHORTCUTS.VBS NOT SHORTCUTS.VBS.TXT.

Step 6: Go to your Desktop and double click on the newly created file calledShortcuts.vbs.

Step 7: Now go to your Start screen and scroll it all the way to the end where you will see three new tiles. Sort them as you wish.

Let us know, whether you found this tutorial helpful or not.

MY NOTE: Create a new group of tiles
You can create a new group of tiles by dragging one tile to an open space. When a gray bar appears, release the tile—this will create a new group, and you can drag more tiles to it. 
 MY NOTE: Naming a group of tiles
After you’ve grouped your tiles together, you can name the group. Here's how: 
  • Touch the Start screen with two or more fingers, and then pinch them toward each other to zoom out. 
  • (Or, if you’re using a mouse, click zoom in the lower-right corner of your screen.) 
  • Swipe down on or right-click a group of tiles to select it, and then tap or click Name group.

MY NOTE: CHANGING DOUBLE CLICK TO SINGLE CLICK



Top 10 Tips


You don’t need a touchscreen to use Windows 8. Here are ten tips that will make using Windows 8 with a keyboard and mouse easier than you ever imagined.


1. The Essential Windows Key

The fastest way to get to the Start screen is to press the Windows key on the keyboard. If you press the Windows key when you are at the Start screen, it will take you to your last-used app or program. Make this your go-to key. You will use it often.
Windows 8 Secret Start Menu

2. Windows 8 Secret Start Menu

Yes, the traditional Start button has been eliminated, but you can bring up a similar menu quite easily. Just put your cursor in the lower left corner of the screen and right-click. A menu with 15 important options will pop up. These options include a link to the Desktop, Task Manager, Control Panel, File Explorer, Event Viewer, Power Options, and more.

3. Make Tiles Smaller

If you move your cursor to the bottom of the Start screen, a scroll bar will appear with a small square with a dash at the bottom right corner. Click on that square and all the tiles will get smaller so you can see them all on one screen, making it easier to organize your tiles.

4. Cycle through Running Apps

Hold down the Windows key and press Tab. Press Tab again to cycle through the currently running apps. You will be taken to whichever app is highlighted when you release the Windows key.
Windows 8 Desktop

5. Shortcut to the Desktop

When you are at the Start screen, if you drag the Desktop tile to the first position (upper left) anytime you are on the Start page, you will be able to simply hit the Enter key to get to the traditional desktop.

6. Charms Shortcut

Press Windows + C to bring up the Charms panel with quick access to searching, sharing, and settings functions.

7. Screenshots Made Easy

Press the Windows + Print Screen (Prt Scrn) to take a snapshot of your current screen. The picture will be saved in your Pictures library. Simply hitting Print Screen copies an image of the screen to the Clipboard.

8. Pin Websites

One cool trick is that when using the Internet Explorer app, you can pin favorite Web pages to the Start screen. With the page displayed, just click the pin icon in the app bar, and then click Pin to Start.
Windows 8 People Search

9. Searching Made Easy

Just start typing in any app that supports the built-in search and a Search box will appear on the right side of the screen with the app preselected. For instance, in the People App start to type any name in your address book and press enter and the People App will find that person.

10. Navigate the Start Screen

Navigate the Start screen by using the wheel on your mouse. Move it in a downward motion to scroll to the right and an upward motion to scroll to the left. You can also use the arrow keys to navigate the tiles.

No comments:

Post a Comment