A default requirement from any organisation will be to add some level of customised appearance to their desktop infrastructure. Within Workspace One UEM we have the ability to easily push out custom XML that will do just that!
Create a new profile within the Workspace One UEM console for a Windows Desktop machine and select device profile.
Now all we need to do is name the profile, assign it and add the custom XML:
The last payload on the left, provides us the ability to pass custom settings directly to the Windows 10 OMA client on the device. This opens the door to apply an extensive set of CSP configurations that can be found on the Microsoft website. VMware has also built a tool to allow you to use a friendly GUI to build out the CSP XML over at https://vmwarepolicybuilder.com (free MyVMware Account required).
To set the background and the lock screen we need to add our custom XML.
As you can see, the ‘Install Settings’ replace the current configuration on the device and the ‘Remove Settings’ does the opposite, it deletes the settings that we’ve pushed out.
My example XML will set the background and lock screen after the user logs off and logs back in:
<Replace>
<CmdID>1</CmdID>
<Item>
<Target>
<LocURI>
./Vendor/MSFT/Personalization/LockScreenImageUrl
</LocURI>
</Target>
<Meta>
<Format xmlns=”syncml:metinf”>chr</Format>
<Type>text/plain</Type>
</Meta>
<Data>https://blog.eucse.com/wp-content/uploads/2018/11/EUCSEWallpaper.jpg</Data>
</Item>
</Replace>
<Replace>
<CmdID>2</CmdID>
<Item>
<Target>
<LocURI>
./Vendor/MSFT/Personalization/DesktopImageUrl
</LocURI>
</Target>
<Meta>
<Format xmlns=”syncml:metinf”>chr</Format>
<Type>text/plain</Type>
</Meta>
<Data>https://blog.eucse.com/wp-content/uploads/2018/11/EUCSEWallpaper.jpg</Data>
</Item>
</Replace>
Sales Engineer specialising in Unified Endpoint Management (UEM) and Identity Management.
Technical Expertise:
o Okta – Identity Management – Providing single sign on services to applications
o VMware Workspace ONE – Configuring and managing AirWatch components across all device types.
o Digital Transformation – Helping organisations implement and deploy a modern strategy for UEM
o Networking – VPN, DNS, DHCP
o Device Management – macOS, iOS, Android, Windows and Rugged Devices
o Cloud Solutions – Azure, Office 365, Identity Providers, VMware AirWatch
o Server – Windows Server, Active Directory, Exchange
John Wilkinson
March 4, 2019Charlie,
We also provide the same functionality in the VMware Policy Builder GUI for this and other custom XML configurations : https://www.vmwarepolicybuilder.com/#/login
Adam Matthews
March 7, 2019Thanks John! I’ve updated the post to include a link to this as its a great tool!
amontague78
August 26, 2021Don’t forget everybody, there is now a profile to achieve this, so it’s now even eaiser!
Gowdaman
April 7, 2023how i do use local image instead of URL?