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

    • AMD is supported out of the box in linux because of their open source driver. Nvidia does not. All my systems are amd and all of them work nicely on linux arch without doing anything.
    • Never had a problem with TPM and started using that many years ago in Win10. Through several motherboards and OS versions, it just does what it does without complaint. My games library doesn't even know it's there. Secure boot does a lot more than support anti-cheat, as it came along long before anti-cheat software. I've used it religiously since before I started using TPM, and I always liked it for being able to nullify virus contagions that try their best to come in underneath the firmware during boot, so that the OS doesn't see them, etc. That is its purpose, imo. I'll never understand why people who elect to use another OS feel compelled to run down Windows... I guess they need to do that to feel secure about their choices? I run Windows because it supports all the software (including games) natively that I want to buy, and I've never had to run down another OS to make me feel better about it. (Although it's certainly possible to do that, of course...) Win10 is on a ventilator atm, and Win11 is very close to being free, and I finally got to stop running StartAllBack as I moved to the Experimental/Dev channel and my 26300.8553 build supports the moveable taskbar and it's running fine at the top of the screen! Finally, my last major dislike of Win11 is being rectified! So, I'm not at all surprised to see Win11's share of the Steam survey hitting 70%.
    • I can answer about the Linux bit. I only used AMD GPUs. I currently have a 9060XT (8GB) that fits my needs, I'm not a gamer, so I don't need that much GDDR. But lately, NVIDIA has grown a lot in the recent years. Oh, the horrors of NVIDIA drivers not working. But they have been getting better. I know a lot of members onm here that are running cachyOS and other distros, and are fine with a 4090/5090 variants. Really, though, I would stick with AMD variants.
    • Everything they say you can already do yourself on the registry by changing some things.
    • Artist's renderings are so much nicer to view than the real thing, don't you think?
  • 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.
      71
    4. 4
      +Edouard
      69
    5. 5
      FloatingFatMan
      68
  • Tell a friend

    Love Neowin? Tell a friend!