Skip to main content

HOW TO ENABLE HIBERNATE IN WINDOWS 8

HOW TO ENABLE HIBERNATE IN WINDOWS 8


Lot of Things Changed in Windows 8 as Compared to Windows 7, Start Screen Was One of the Addition to Windows 8, And Couple of things have Even Disappeared From Windows 8 like Start Button and Hibernate Option. Probably the Reason Microsoft Disabled Hibernate option is Because Windows 8  Boots up and Shuts down Faster then The Older Versions. But if you Wish to Enable Hibernate In Windows 8 then Continue Reading.


WHAT IS HIBERNATE ?


Before Moving Forward let us have a Short Explanation About What Hibernate actually is.
Hibernation is powering down a computer while retaining its state. Upon hibernation, the computer saves the contents of its random access memory (RAM) to a hard disk or other non-volatile storage. Upon resumption, the computer is exactly as it was upon entering hibernation. When used to save power, hibernation is similar to sleep mode and saves more power at the cost of slower resumption.

STEPS TO ENABLE HIBERNATE IN WINDOWS 8


Hibernate Option is Actually Hidden in Windows 8, We Can easily Un hide it and Enable it. Just Follow The Below Simple Steps to Enable Hibernate In Windows 8
Step 1: Press Win + W key ie: Windows key and “W” key to open up Setting search menu. Then Type “Power” , Windows will Show you Few Results, You have to Click on “Power Option”
Step 2: Now From the Left Pane, Click on Choose What the Power Button do.
Step 3: Then on Next Screen Click on  Change Settings that are currently Unavailable.
Step 4:  Now Scroll Down to “Shutdown Settings” Section, and Check  Hibernate box to Enable it and Click on Save Changes.
Step 5: Everything is done, Now next time whenever you need to Hibernate your PC, just Move your Mouse pointer to right corner of your screen to Show up Charm screen, Click on Setting> Power.
You will notice Hibernate Option added there. So in this Tutorial we Saw What Hibernate is and how to Enable Hibernate In Windows 8, Hope this Helps you .

Popular posts from this blog

CONVERTING TORRENT FILE TO ZIP FILE

HOW TO CONVERT TORRENT FILE TO ZIP FILE 1>>click the link below  http://www.zbigz.com   2>>upload your .torrent file  3>>wait until conversion, after conversion your  file can be downloadable in .zip format.

Responsive PanelGrid in JSF Primeface

Here, we are going to learn about responsive PanelGrid in JSF Primeface component. As we know primefaces providing lots of good stuffs for JSF. In Primeface, there is a component name Panel Grid which we are going to use for our convenience. In most of the cases, PanelGrid used for making our content in a proper way. If users opens our website which we have made in jsf using panelGrid component that not in responsive manner, that could be really ugly as for as user concern, So here we are going to break it just by using Layout attribute in the panel Grid component. for exaple, < h3 >Responsive</ h3 > < p:panelGrid columns = "3" layout = "grid" >                 < h:outputText value = "Content" />      < h:outputText value = "Content" />      < h:outputText value = "Content" />      < h:outputText value = "Content" />      < h:outputText value = "Content" />

How to clear Filter value in Primefaces Datatable?

As we Know, primefaces provides plenty of components for JSF. In this discussion, we are going to uncover filter attribute mystery in Datatable. Above the pic represents the filter option which is available in primeface . we can easily inherit filter option to datatable. PROBLEM WE FACE: while doing filter in datatable primeface, if we want to go further action. for example, you have 1000 of records, you're filtering option to filter those records. while filtering, you have seen your records and you need to go another action, at the time filter wont be clear. it will be remains same. Inorder to overcome that issue, we need to use below scripts, RequestContext.getCurrentInstance().execute("PF('any_name').clearFilters()"); Add widgetwar attribute in your datatable component <p:datatable id="d_id"   widgetVar ="any_name">