Advertisement

How To Change Screen Brightness in Windows 10

Having the correct screen brightness is very important. If you are working a lot in front of your computer, an incorrect screen brightness level can cause eye strain and drain the device battery if it's not running on an AC power source. Changing the brightness is also important if you are changing your environment from a room in your office to outdoors on a sunny day. There are a number of ways to change the screen brightness in Windows 10. Let's review them.

Advertisеment


Note: While most portable devices like laptops or tablets support changing the brightness of the screen out of the box, most Desktop PCs come without this ability because the display hardware has its own brightness control. For the method described below to work, you need to have a display with the appropriate hardware support. Also, you may need to update your display drivers. For example, the software brightness settings which directly alter the display's backlight may not work if you have an old CRT monitor.

Change Screen Brightness in Windows 10 in Settings

Settings is a modern Control Panel replacement available in Windows 10. It comes with a number of display settings including brightness.

To change the screen brightness in Windows 10, do the following.

  1. Open Settings.Open Settings in Windows 10 Creators Update
  2. Go to System - Display.Windows 10 Creators Update Display Settings
  3. There, adjust the Change brightness slider's position to set the desired screen brightness level.Change Brightness In Settings In Windows 10

You are done.

Here are alternative ways to adjust screen brightness in Windows 10.

Change Screen Brightness in Windows 10 with Hotkeys

Some devices come with special keyboard hotkeys which allow the user to adjust display brightness with a combination of one or more keystrokes. For example, if you are using a laptop, it may come with an Fn key which along with a Function key (F1/F2) may be used to adjust the display brightness.Laptop Brightness Buttons

Change Screen Brightness in Windows 10 with Battery Flyout

On supported devices, you can use the Battery flyout to change the screen brightness.

  1. Click on the battery icon in the notification area of the taskbar to open the Battery flyout. It looks as follows.Battery Flyout Brightness
  2. There, you can see the brightness button. Click it to change the brightness level to the desired value.

Change Screen Brightness in Windows 10 using Action Center

The Action Center pane in Windows 10 comes with the same brightness button like the one in the Battery flyout. Here it how to access it.

  1. Click on the Action Center icon in the system tray.
  2. The Action Center pane will open. Look for the Brightness button in Quick Actions. If you cannot see it, click the Expand link to see more quick action buttons like Project, All settings, Connect, Night light, Location, Note, Quiet hours, Tablet Mode, VPN, and so on.
  3. Click the Brightness quick action button to toggle between various brightness levels.Action Center Brightness

Change Screen Brightness in Power Options

  1. Open Control Panel.
  2. Go to Control Panel\Hardware and Sound\Power Options.Windows 10 Screen Brightness Control Panel
  3. In the bottom right, adjust the position of the Screen brightness slider and you are done.
  4. If you click on the Change plan settings link, you will be able to customize the brightness level for both On battery and Plugged in modes individually.Change Plan Settings Link See the following screenshot:Change Brightness In Power Plan Settings Windows 10

Also, you can open advanced settings of a power plan directly. In the Power Options dialog, set the desired brightness level for both On battery and Plugged in values in percentages.

Change Screen Brightness in PowerShell

You can use PowerShell to change the screen brightness level in Windows 10. Here is how.

  1. Open PowerShell.
  2. Type or copy-paste the following command:
    (Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,DESIRED_BRIGHTNESS_LEVEL)

    In the command above, replace the DESIRED_BRIGHTNESS_LEVEL portion with the percentage value from 0 to 100. For example, this command will set screen brightness to 50%:

    (Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,50)
  3. Press the Enter key and you are done.

That's it.

Support us

Winaero greatly relies on your support. You can help the site keep bringing you interesting and useful content and software by using these options:

If you like this article, please share it using the buttons below. It won't take a lot from you, but it will help us grow. Thanks for your support!

Advertisеment

Author: Sergey Tkachenko

Sergey Tkachenko is a software developer who started Winaero back in 2011. On this blog, Sergey is writing about everything connected to Microsoft, Windows and popular software. Follow him on Telegram, Twitter, and YouTube.

7 thoughts on “How To Change Screen Brightness in Windows 10”

  1. Hello

    May you please write this command for changing dimmed screen brightness?
    and also if may also a command for disabling adaptive brightness

    Thank you

  2. Hi,
    Is there a way to change the screen brightness relative to current brightness level?
    Something like the below command:
    (Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,-15)

    But of course this fails, as the parameter (-15) is not recognised. What I want is to reduce the brightness by 15%, and not set it to 15%.

    1. if 100 means 100% and 0 means 0%
      then reducing the brightness by 15% means 85
      but dynamically reducing the brightness by 15% regardless of the current settings requires you to read the current setting and applying a bit of math to come up with a new number that is 15% less
      sounds like too much work
      if current brightness equals 50 then 42.5% will be the result of reducing 50 by 15%

  3. First you need to get the current brightness, minus 15, and then set the brightness. Example code:

    $Brightness = Get-Ciminstance -Namespace root/WMI -ClassName WmiMonitorBrightness | Select -ExpandProperty “CurrentBrightness”
    $Brightness -= 15
    if ($Brightness -lt 0) { $Brightness = 0 } elseif ($Brightness -gt 100) { $Brightness = 100 }
    (Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1, $Brightness)
    Write-Host “Brightness: $Brightness”

Leave a Reply

Your email address will not be published.

css.php
Using Telegram? Subscribe to the blog channel!
Hello. Add your message here.