This gist contains Windows batch files for setting monitor brightness and contrast presets using ControlMyMonitor.
Included presets:
- 10
- 25
- 50
- 75
This gist contains Windows batch files for setting monitor brightness and contrast presets using ControlMyMonitor.
Included presets:
| @echo off | |
| setlocal | |
| set "CMM=%~dp0ControlMyMonitor.exe" | |
| set "BRIGHTNESS=10" | |
| set "CONTRAST=25" | |
| if not exist "%CMM%" ( | |
| echo ControlMyMonitor.exe was not found in: | |
| echo %~dp0 | |
| pause | |
| exit /b 1 | |
| ) | |
| echo Setting Primary monitor brightness=%BRIGHTNESS% contrast=%CONTRAST%... | |
| "%CMM%" /SetValue Primary 10 %BRIGHTNESS% /SetValue Primary 12 %CONTRAST% | |
| echo Setting Secondary monitor brightness=%BRIGHTNESS% contrast=%CONTRAST%... | |
| "%CMM%" /SetValue Secondary 10 %BRIGHTNESS% /SetValue Secondary 12 %CONTRAST% | |
| echo Done. | |
| endlocal |
| @echo off | |
| setlocal | |
| set "CMM=%~dp0ControlMyMonitor.exe" | |
| set "BRIGHTNESS=25" | |
| set "CONTRAST=30" | |
| if not exist "%CMM%" ( | |
| echo ControlMyMonitor.exe was not found in: | |
| echo %~dp0 | |
| pause | |
| exit /b 1 | |
| ) | |
| echo Setting Primary monitor brightness=%BRIGHTNESS% contrast=%CONTRAST%... | |
| "%CMM%" /SetValue Primary 10 %BRIGHTNESS% /SetValue Primary 12 %CONTRAST% | |
| echo Setting Secondary monitor brightness=%BRIGHTNESS% contrast=%CONTRAST%... | |
| "%CMM%" /SetValue Secondary 10 %BRIGHTNESS% /SetValue Secondary 12 %CONTRAST% | |
| echo Done. | |
| endlocal |
| @echo off | |
| setlocal | |
| set "CMM=%~dp0ControlMyMonitor.exe" | |
| set "BRIGHTNESS=50" | |
| set "CONTRAST=50" | |
| if not exist "%CMM%" ( | |
| echo ControlMyMonitor.exe was not found in: | |
| echo %~dp0 | |
| pause | |
| exit /b 1 | |
| ) | |
| echo Setting Primary monitor brightness=%BRIGHTNESS% contrast=%CONTRAST%... | |
| "%CMM%" /SetValue Primary 10 %BRIGHTNESS% /SetValue Primary 12 %CONTRAST% | |
| echo Setting Secondary monitor brightness=%BRIGHTNESS% contrast=%CONTRAST%... | |
| "%CMM%" /SetValue Secondary 10 %BRIGHTNESS% /SetValue Secondary 12 %CONTRAST% | |
| echo Done. | |
| endlocal |
| @echo off | |
| setlocal | |
| set "CMM=%~dp0ControlMyMonitor.exe" | |
| set "BRIGHTNESS=75" | |
| set "CONTRAST=75" | |
| if not exist "%CMM%" ( | |
| echo ControlMyMonitor.exe was not found in: | |
| echo %~dp0 | |
| pause | |
| exit /b 1 | |
| ) | |
| echo Setting Primary monitor brightness=%BRIGHTNESS% contrast=%CONTRAST%... | |
| "%CMM%" /SetValue Primary 10 %BRIGHTNESS% /SetValue Primary 12 %CONTRAST% | |
| echo Setting Secondary monitor brightness=%BRIGHTNESS% contrast=%CONTRAST%... | |
| "%CMM%" /SetValue Secondary 10 %BRIGHTNESS% /SetValue Secondary 12 %CONTRAST% | |
| echo Done. | |
| endlocal |