Currently I'm having to do some registry modifications during post-setup, which applies only to the currently logged-in user. In a perfect world, I could add these to my wim so all users would have these changes by default.
1. Default Lock Screen
I want to use the super-secret hidden 6th lock screen image Microsoft gives us in %SYSTEMROOT%\Web\Screen and still allow the user to change their Lock Screen image (i.e. no group policies).
I found a way to change the default used by modifying this key (just rearrange the letters, default is ZYXWVU):
You can see the problem is the user's SID; this key is created dynamically.
Anyone know where this default "ZYXWVU" is stored? Probably impossible to change.
2. Always show all systray icons on Win11
If there was some way to add the following to all newly created keys inside, I could have my "Always show all icons in the systray" back on Win11
Again, probably impossible to change.
1. Default Lock Screen
I want to use the super-secret hidden 6th lock screen image Microsoft gives us in %SYSTEMROOT%\Web\Screen and still allow the user to change their Lock Screen image (i.e. no group policies).
I found a way to change the default used by modifying this key (just rearrange the letters, default is ZYXWVU):
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\S-1-5-21-0000000000-1001\AnyoneRead\LockScreen]
@="UZYXWV"
You can see the problem is the user's SID; this key is created dynamically.
Anyone know where this default "ZYXWVU" is stored? Probably impossible to change.
2. Always show all systray icons on Win11
If there was some way to add the following to all newly created keys inside, I could have my "Always show all icons in the systray" back on Win11
Code:
[HKEY_CURRENT_USER\Control Panel\NotifyIconSettings\SomeSystrayIconKey]
"IsPromoted"=dword:1
Again, probably impossible to change.