OSD – Enforce Default User Background
To ensure that the same background is applied to all users when they log in, you can add two Task Sequence steps that will automatically set their background to whatever you specificy it to be..
1 |
CMD /C REG ADD HKU\DU\Control Panel\Desktop /v "Wallpaper" /t REG_SZ /d "<PATH>\background.jpg" /f |
Then we can set the style, or how it will apply… There are 6 possible values:
1 |
CMD /C REG ADD HKU\DU\Control Panel\Desktop /v "WallpaperStyle" /t REG_SZ /d "4" /f |
Rermember to… Read More »