Monday
Hello There, Can someone give me a suggestion for below configuration profiles and policies.
1- Lock screen wallpaper (screensaver after 5 minutes idle time)
2- MS teams background image
3- A custom PowerPoint templates
4- Custom Outlook Signature
5- Deploy a custom font and set as a default
Tuesday - last edited Tuesday
Hi @saniyadav ,
Here is the answer to question no. 1:
You can set up the wallpaper by following the steps in the attached link.
https://learn.jamf.com/en-US/bundle/jamf-pro-documentation-current/page/Best_Practices_for_Computer_...
Below is the script to set the screensaver timeout to 5 minutes.
#!/bin/bash
#Create by Agung sujiwo 11/03/2025
#Function to set Screen Saver 5 Minutes
loggedInUser=$(stat -f %Su /dev/console)
if [[ "$loggedInUser" != "root" ]]; then
sudo -u "$loggedInUser" defaults -currentHost write com.apple.screensaver idleTime -int 300
echo "Screensaver idle time set for user: $loggedInUser"
else
echo "No user logged in. Exiting..."
exit 1
fi
or you can create a Screen Saver plist, but if you create that then the user cannot change it.
Tuesday
Hello @agungsujiwo , Thank you for the suggestion, but i need to whole process how do i configure a custom lock screen pic, could you please help
Tuesday
You can set the wallpaper image on enrolled computers by using a combination of Composer and Jamf Pro.
A computer with Composer. See Composer User Guide.
An image in JPEG, PICT, TIFF, PNG, or HEIC format
You can obtain the path to the image file by dragging the image file into a Terminal window.
The image file appears under the Sources heading.
.
The package will appear in the sidebar under the Packages heading.
For more information, see Package Management.
Ensure the Level is set to "Computer Level" and the Distribution Method is set to "Install Automatically".
On computers that have successfully run the policy, the desktop wallpaper is set to the packaged image and cannot be changed by the end user.
I have tried the steps above, and it works.
Tuesday
Deploy your images in the below path to be visible in the MS Teams background
~/Library/Containers/com.microsoft.teams2/Data/Library/Application Support/Microsoft/MSTeams/Backgrounds/Uploads/
Tuesday
use the below path to deploy your templates
~/Library/Group Containers/UBF8T346G9.Office/User Content.localized/Templates.localized/
Tuesday
Refer to this for setting up a default font
https://github.com/pbowden-msft/OutlookFontPoke/blob/master/README.md