Windows/BackgroundWallpaper

AWS Wallpaper

AWS Ec2LaunchSettings

Set for user

* https://superuser.com/questions/430508/how-to-change-desktop-background-of-a-specific-user-in-a-batch-file

#PowerShell:
$user = Get-WMIObject -Query "select * from Win32_UserAccount where Name='<username>'"
$path = 'Registry::HKEY_USERS\' + $user.SID + '\Control Panel\Desktop\'
Set-ItemProperty -path $path -name Wallpaper -value 'C:\path\to\wallpaper.jpg'
rundll32.exe user32.dll UpdatePerUserSystemParameters

Windows/BackgroundWallpaper (last edited 2021-09-08 05:32:22 by PieterSmit)