Skip to main content

INCREASE BATTERY LIFE OF LAPTOP EASILY

INCREASE BATTERY LIFE OF LAPTOP EASILY


Every laptop or Netbook user these days have the same headache of limited backup time of batteries. As far as your system is new , you will have a good backup time but when it becomes a few months old you will definitely face problem of limited battery life.
So here I am giving you a solution to Increase battery life of laptop upto a sufficient extent.
There is an inbuilt command in your computer to Increase battery life as well as the performance of the system but not all users are aware of it. Some laptops directly provide an interface with option termed as “ POWER SAVING MODE ” but  if your laptop is old or don’t have this feature by default , you need not to worry because you can do the same task manually.
If you have a laptop with Windows 7 installed, you can use the ‘powercfg‘ command . It will display useful information about your laptop’s energy consumption and usage. If  you can understand and maintain  it correctly then you can extend your Battery life and performance by great amount.

STEPS TO INCREASE BATTERY LIFE OF  LAPTOP


Step 1: Click on the Start Menu and type “ CMD ” in the Start Search bar.
Step 2: The search will start and it will then display an icon of “ CMD ” . simply right click on it and select Run as administrator.
Step 3: It will open command line, now simply run the command “powercfg -energy” without quotes. (For windows 7 users.)
Windows 8 users can Simply run the command “powercfg /energy” without quotes.
Step 4: Now Press “Enter”.
Once you successfully execute this command , Windows  will run a complete scan of  your system and it will find some ways to improve performance and power efficiency.
The results of this process will be saved to an HTML file, which is commonly  present  in the “System32” folder of most of the systems.
To access this file, simply follow the path which will be displayed in command prompt window after completion of the command. Read This file to understand that what program in your system is consuming more power and degrading the performance. Fix the Problem to Increase battery life of laptop.

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">