Se agrega el tema final al usuario

This commit is contained in:
2025-05-26 18:51:07 +00:00
parent 37e69f22f7
commit 8166e5afd4

17
Políticas/Tema.cmd Normal file
View File

@@ -0,0 +1,17 @@
@echo off
echo Configurando tema personalizado...
:: Ruta base
set KEY="HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize"
:: Establece tema claro para apps
reg add %KEY% /v AppsUseLightTheme /t REG_DWORD /d 0 /f
:: Establece tema claro para sistema
reg add %KEY% /v SystemUsesLightTheme /t REG_DWORD /d 0 /f
:: Habilita el color de énfasis en barras y título
reg add %KEY% /v ColorPrevalence /t REG_DWORD /d 1 /f
echo Listo. Se recomienda cerrar sesión o reiniciar para aplicar completamente los cambios.
pause