Change the color of the login screen in Windows 8.1 Pro?


Recommended Posts

On the Start Screen, go to the Charms Bar and select Settings, then click Personalise. :)

Already tried that and there is not login screen color choose option on there. You probably confuse with the lock screen picture, I know that you can choose a picture for the lock screen. I am looking for the color in the login screen.

The background color will be your login screen color if you don't use an image.  On my work PC with two screens, monitor 1 has an image, and monitor has my background color.

Could it be that it uses the default color until someone logs in?  So if macoman has a green theme and I have a red theme it will show the default blue until either one of us logs in, which is when the background color gets applied.  With this logic the login screen would always be the default blue.

  • Like 2

Could it be that it uses the default color until someone logs in?  So if macoman has a green theme and I have a red theme it will show the default blue until either one of us logs in, which is when the background color gets applied.  With this logic the login screen would always be the default blue.

I remember when I was installing Windows 8.1, there was an option to select the default color... it is a way to change that default color?

You can force a specific color combination using Group Policy.

 

Run gpedit.msc as admin. Go to Computer Configuration > Administrative Templates > Control Panel > Personalization. Enable "Force a specific background and accent color" and type in the colors in hex (you can test #FFFF00 and #00FF00 if you want it to be very obvious that it's working). Log out, and you should see it.

 

Edit: There are color combinations that are disallowed (see the description in gpedit). This change applies to all users and when a user is not logged in. If you want some place to look up hex codes for colors, this site is reasonable.

 

http://www.color-hex.com/color-palettes/

OK, I just changed my background color to red (I actually have blue as my normal background color) and when I lock the computer (Win+L) my login screen is red.  Since I'm already logged in it uses my colors, but only after I'm logged in,

OK, I just changed my background color to red (I actually have blue as my normal background color) and when I lock the computer (Win+L) my login screen is red.  Since I'm already logged in it uses my colors, but only after I'm logged in,

That's not what I am looking for... I looking for to change the default color of Windows 8.1 login screen. Like I said before, there was a default color that you need to choose before finishing installing and setting the OS. I do not understand why Microsoft make it so difficult to switch to another default color when you are not logon. 

I think the option you're thinking of just sets your color as the first user, not a system-wide default color.

 

It's not like it's new behavior:

Windows 7 had a default login screen:
windows-7-login-screen-default-450.jpg

 

As did Windows XP:

xp_welcome_screen.jpg

 

You can change it via registry hacks, but that's how you had to do it in the past also.

It sounds like you're trying to set the colors on the 8.1 login screen and not the personal lock screen. If I'm right...
 

First you need to get the colors you want to have set on the login screen. The easy way is to set the colors for the logged in user via Personalize then retrieve the hex value for each color from the registry:

:: get colors for windows 8.1 current user
for /f "tokens=1,2 delims==" %s in ('wmic path win32_useraccount where name^='%username%' get sid /value ^| find /i "SID"') do set SID=%t
:: pause for WMIC oddity
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\%SID%\AnyoneRead\Colors /v AccentColor
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\%SID%\AnyoneRead\Colors /v StartColor

Once you have the values, set the colors for the system in the registry. This changes the colors on the actual login screen.

:: set login colors for windows 8.1
:: the hex values are ABGR (alpha, blue, green, red)
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v AccentColor /t REG_DWORD /d 0xff606263 /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v StartColor /t REG_DWORD /d 0xff23221e /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v DefaultAccentColor /t REG_DWORD /d 0xff606263 /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v DefaultStartColor /t REG_DWORD /d 0xff23221e /f

Hope that helps.

...and since that topic is usually followed by "...can I change the wallpaper too?"  The answer is also yes!

 

The first step is to grant Administrators rights to the necessary folders:

:: grant Administrators ownership and full control of the parent folder of SYSTEM's background folder
takeown /a /f C:\ProgramData\Microsoft\Windows\SystemData
icacls C:\ProgramData\Microsoft\Windows\SystemData /grant *S-1-5-32-544:F

:: grant Administrators ownership and full control of the SYSTEM's background folder
takeown /a /f C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18 /r /d y 
icacls C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18 /grant *S-1-5-32-544:F /T /C

:: grant Administrators ownership and full control of the default backgrounds directory
takeown /a /f C:\Windows\Web\Screen /r /d y
icacls C:\Windows\Web\Screen /grant *S-1-5-32-544:F /T /C

The next step removes the actual lock screen images...which are actually copies!

:: remove all copies of the SYSTEM's background
del /q C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18\ReadOnly\LockScreen_Z\*
Next, remove any copies we previously made of the default background and then rename the file
:: remove any copies made of the default lock screen and make a new copy.
del /q C:\Windows\Web\Screen\img100a.jpg
ren C:\Windows\Web\Screen\img100.jpg img100a.jpg

Copy a new lock screen into the default lock screen directory with the same name as the original

:: replace default lock screen
copy /y LockScreen.jpg C:\Windows\Web\Screen\img100.jpg

Reset the important permissions

:: reset ownership of all restricted files and folders
icacls C:\Windows\Web\Screen /setowner "NT Service\TrustedInstaller" /T /C
icacls C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18 /setowner *S-1-5-18 /T /C

Lock out and view your handiwork.

 

If the lock screen image is missing and just have the single color background, your lock screen image is likely too big. Shrink it down and try again.

 

 

It sounds like you're trying to set the colors on the 8.1 login screen and not the personal lock screen. If I'm right...
 

First you need to get the colors you want to have set on the login screen. The easy way is to set the colors for the logged in user via Personalize then retrieve the hex value for each color from the registry:

:: get colors for windows 8.1 current user
for /f "tokens=1,2 delims==" %s in ('wmic path win32_useraccount where name^='%username%' get sid /value ^| find /i "SID"') do set SID=%t
:: pause for WMIC oddity
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\%SID%\AnyoneRead\Colors /v AccentColor
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\%SID%\AnyoneRead\Colors /v StartColor

Once you have the values, set the colors for the system in the registry. This changes the colors on the actual login screen.

:: set login colors for windows 8.1
:: the hex values are ABGR (alpha, blue, green, red)
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v AccentColor /t REG_DWORD /d 0xff606263 /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v StartColor /t REG_DWORD /d 0xff23221e /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v DefaultAccentColor /t REG_DWORD /d 0xff606263 /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v DefaultStartColor /t REG_DWORD /d 0xff23221e /f

Hope that helps.

 

Or use this app: http://winaero.com/comment.php?comment.news.216

  • Like 2
  • 11 months later...

hey macoman i tell u just try this this will 100% work 

just go on start or press win button then take cursor in corner then click on setting and click personalize then u will see on upper background and background colour and accent colour u should choose background colour to change sign in back ground and enjoy 

 

  • 7 months later...
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • NVIDIA officially supports Ubuntu, as linked above with the GeForce NOW Hands on I did in collaboration with Paul Hill.
    • TO be clear I am not running linux today, however I keep thinking about it. And I want to make sure there are minimal obstacles if I decide to make that switch in the coming months.
    • Yes, I actually glossed over the Linux part from the OP. You could always go for a 9070 XT and if you really want to play Ray Traced games in the future, GeForce Now is pretty damn good on Linux https://www.neowin.net/news/nvidias-native-geforce-now-app-for-linux-bridges-the-gaming-gap-hands-on/
    • One reason it might be running hotter is dust build up within the cooling or perhaps the paste has dried out. You could always try repasting your old GPU and cleaning the cooler. Your experience in Linux will be much better with an AMD GPU; the performance in gaming is much closer to Windows than nVidia would be. I personally think on Windows, AMD drivers are junk.
    • I reviewed it back in March, but I didn't have a 5070 at the time https://www.neowin.net/reviews/amd-rx-9070-review-vs-rtx-5070-4070-and-rx-9070-xt-7800-xt--just-good-enough/ When I reviewed the 9070 I did have a 5070 to compare it against, so the scores are there for the 9070 XT. it outperforms the 5070 in raster, and is barely neck and neck in Ray Tracing. So it's better than a 5070 in everything but Ray Tracing where it is neck and neck, or just under. To be honest, the uplift from 3080 when it was new to the 9070 XT is not as great a step up. If you can find a used 4080 Super for around the same money, you would probably be better off, but if you only want to buy new then the 16GB 9070 XT is the best value for money in its category.
  • Recent Achievements

    • Proficient
      Eric Biran went up a rank
      Proficient
    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
  • Popular Contributors

    1. 1
      +primortal
      479
    2. 2
      PsYcHoKiLLa
      252
    3. 3
      Steven P.
      72
    4. 4
      +Edouard
      69
    5. 5
      Skyfrog
      67
  • Tell a friend

    Love Neowin? Tell a friend!