Hi Community,
I am just sharing here another way of deploying silently a new Desktop Background to Mac computers without using Script install, Desktoppr or a Configuration Profile. This workflow is compatible from Catalina to Monterey Beta.
- Place your_image.png into /Users/Shared
- Open Automator app on macOS Big Sur
- Create New application project
- Choose in Library 'Get Specified Finder Items" and select your_image.png (located in /Users/Shared)
- Add "Set Desktop Picture" in Automator library
- Export your Automator project > Save (ideally sign it) into /Users/Shared
- Open Composer app
- Drag and Drop your Automator.app in it (from /Users/Shared)
- Add from Users/Shared folder in Composer your_image.png
- Select Script and Post-Install
- Copy paste this simple script below
- Build and sign your package
Create your Jamf Policy to deploy it
#!/bin/bash
open /Users/Shared/Your_Automator.app
sleep 10
rm -R /Users/Shared/Your_Automator.app
rm -rf /Users/Shared/Your_Image.png
Hope it may be useful!
