Skip to main content

Get a power efficiency report in Windows

                                                  Get a power efficiency report

                      If you have a laptop, you can use the efficiency calculator to get Windows to generate
the useful information  about its power consumption. Used in the right way, this can
help you make huge gains in terms of battery life and performance.

Steps :
o  Open  a command  prompt  as  an  administrator  by typing  'CMD'  in Start  Search,
and when the cmd icon appears, right-click it and choose Run as administrator or Type CMD in start search press ctrl+shift+enter
o  Then at the command line, just type in powercfg -energy and hit Enter, Windows 7 will
scan your system looking for ways to improve power efficiency.
o  It  will  then  publish  the  results  in  an  HTML  file,  usually  in  the  System32  folder.  Just
follow the path it gives you to find your report.
o  In  the  given  location  you  will  find  the  energy-report.html  file.  Now  open  that  file  in
internet explorer.

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv