Posted on 03-10-2025 08:55 AM
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
Solved! Go to Solution.
Posted on 03-11-2025 08:25 AM
use the below path to deploy your templates
~/Library/Group Containers/UBF8T346G9.Office/User Content.localized/Templates.localized/
03-11-2025 12:40 AM - edited 03-11-2025 12:47 AM
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.
Posted on 03-11-2025 03:43 AM
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
Posted on 03-11-2025 08:11 PM
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.
Posted on 03-11-2025 08:23 AM
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/
Posted on 04-07-2025 11:59 PM
Thank you for the suggestion. However, I am saving the image at this location, but it still does not appear under video effects during the video call.
Posted on 03-11-2025 08:25 AM
use the below path to deploy your templates
~/Library/Group Containers/UBF8T346G9.Office/User Content.localized/Templates.localized/
Posted on 03-11-2025 08:30 AM
Refer to this for setting up a default font
https://github.com/pbowden-msft/OutlookFontPoke/blob/master/README.md