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:
Wallpaper Style | Value Data |
---|---|
Center | 0 |
Fill | 4 |
Fit | 3 |
Span | 5 |
Stretch | 2 |
Tile | 1 |
1 |
CMD /C REG ADD HKU\DU\Control Panel\Desktop /v "WallpaperStyle" /t REG_SZ /d "4" /f |
Rermember to replace <PATH>\background.jpg with the actual path of your file (No quote marks or the image wont be applied!)