Skip to main content

Windows 8 & Windows RT tutorial || Shut down, lock your PC, or sign out

When you’re done using your PC for a while, you can sign out, lock it, put it to sleep, or shut it down.

Shut down

In Windows 8 and Windows RT, there's really no need to shut down your PC completely. Instead, you can put it to sleep. This uses very little power, your PC starts up faster, and you’re instantly back to where you left off. You don’t have to worry that your battery will be drained because Windows automatically saves all your work and turns off the PC if the battery is too low.
For most laptops and tablets, sleep is the default shutdown mode, so all you need to do is close your lid or press the power button. But, if you’re going to be away from your PC for a long time, you might want to turn it off completely. Here's how:
How to shut down
Swipe in from the right edge of the screen, and then tapSettings.
(If you're using a mouse, point to the upper-right corner of the screen, move the mouse pointer down, and then click Settings.)
Find out more about shutting down your PC.

Lock your PC

Locking your PC is a good option if you’ll be back soon. You'll have to enter your password when you come back, which helps keep your work more secure. The apps you were using will still be running, and everything will be just like you left it. Here’s how to lock your PC:
  1. Open Start by swiping in from the right edge of the screen (or if you're using a mouse, pointing to the upper-right corner of the screen and moving the mouse pointer down), and then tapping or clicking Start.
  2. Tap or click your account picture in the upper-right corner, and then tap or click Lock.

Tip

  • You can also use the keyboard shortcut (Windows logo key+L) to lock your PC at any time.
To unlock your PC, swipe up from the bottom edge of the screen (or press any key if you're using a keyboard) and then sign in.

Sign out

If you share a PC and someone else might be using it after you, you can sign out. Other people can still sign in if you just lock your PC, but signing out is a good idea if you might not be back right away. When you sign out of Windows, all of the apps you were using are closed, but the PC isn't shut down. Here's how to sign out:
How to sign out
Open Start by swiping in from the right edge of the screen (or if you're using a mouse, pointing to the upper-right corner of the screen and moving the mouse pointer down), and then tapping or clicking Start.
Find out more about signing in and out of Windows.

Comments

Popular posts from this blog

Microsoft office 2007 tutorial Pdf

Click Here Download Links [PDF] Microsoft Office 2007 Training Manual [PDF] Microsoft Word 2007 [PDF] ESSENTIAL MICROSOFT OFFICE 2007™ Tutorials for Teachers [PDF] Introduction to MS Excel 2007 - West Virginia University [PDF] Microsoft Word 2007 A Beginners' Guide - University of Reading

Electronic color code (B.B. Roy of Great Britain Has a Very Good Wife) Availablestudy.blogspot.in

The  electronic color code  is used to indicate the values or ratings of electronic components, very commonly for  resistors , but also for  capacitors ,  inductors , and others. A separate code, the  25-pair color code , is used to identify wires in some  telecommunications  cables. The electronic color code was developed in the early 1920s by the Radio Manufacturers Association (now part of  Electronic Industries Alliance [1]  (EIA)), and was published as EIA-RS-279. The current international standard is IEC 60062. [2] Colorbands were commonly used (especially on  resistors ) because they were easily printed on tiny components, decreasing construction costs. However, there were drawbacks, especially for color blind  people. Overheating of a component, or dirt accumulation, may make it impossible to distinguish brown from red from orange. Advances in printing technology have made printed numbers practical for small compo...

Functions _(c++ programming language)

Now that you should have learned about variables, loops, and conditional statements it is time to learn about functions. You should have an idea of their uses as we have already used them and defined one in the guise of main. cin.get() is an example of a function. In general, functions are blocks of code that perform a number of pre-defined commands to accomplish something productive.  Functions that a programmer writes will generally require a prototype. Just like a blueprint, the prototype tells the compiler what the function will return, what the function will be called, as well as what arguments the function can be passed. When I say that the function returns a value, I mean that the function can be used in the same manner as a variable would be. For example, a variable can be set equal to a function that returns a value between zero and four.  For example: #include <cstdlib> // Include rand() using namespace std; // Make rand() visible int a = rand(); ...