Hi, @Mustaffa Abu-Sedira !
Windows stores the overlay power mode setting in the registry under:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\User\PowerSchemes
The available Overlay Power Modes correspond to these registry values:
Power Mode | Registry Value |
---|---|
Best Power Efficiency | 1 |
Balanced | 2 |
Best Performance | 3 |
You can Run PowerShell as Administrator and use one of the command:
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Power\User\PowerSchemes" -Name "ActiveOverlayAcPowerScheme" -Value 1
After setting the registry value, apply the new setting by running:
powercfg -update
You can schedule these commands to run at specific times of the day using Task Scheduler.