I have little problem. I have created Change_Color.bat script.
But this is not working currently. Can someone say what is problem?
Script is needed change Windows color pink. But is still blue.
:: Set wallpapper
Reg Add "HKEY_CURRENT_USERControl PanelDesktop" /v Wallpaper /t REG_SZ /d %~DP0Eevee.jpg /f
Reg Add "HKEY_CURRENT_USERControl PanelDesktop" /v WallpaperStyle /t REG_SZ /d 2 /f
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters ,1 ,True
:: Highlight color
Reg Add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAccent" /v AccentColorMenu /t REG_DWORD /d 0xff8c00e3 /f
Reg Add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsDWM" /v AccentColor /t REG_DWORD /d 0xff8c00e3 /f
Reg Add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsDWM" /v AccentColorInactive /t REG_DWORD /d 0xff8c00e3 /f
:: Transparency effects
Reg Add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionThemesPersonalize" /v EnableTransparency /t REG_DWORD /d 1 /f
:: Start, taskbar, and action center
Reg Add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionThemesPersonalize" /v ColorPrevalence /t REG_DWORD /d 1 /f
:: Title bars and window borders
Reg Add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsDWM" /v ColorPrevalence /t REG_DWORD /d 1 /f
:: Default app mode
Reg Add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionThemesPersonalize" /v AppsUseLightTheme /t REG_DWORD /d 1 /f
:: Restart Windows Exploder
Taskkill /F /Im Explorer.exe
Start Explorer.exe
Pause
Windows say corrext color
Even if it is wrong
New contributor
Luotaju is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.