Firefox Configuration Profile (don't work)

PE
Contributor

Build an Configuration Profile for test purpose set home folder to https://www.apple.com 

Profile is installed but Firefox don't react to it at all.

Used the policies.json from here https://github.com/Jamf-Custom-Profile-Schemas/JSON-Schema-for-Jamf-Pro-Applications-and-Settings-MD...

FireFox is installed with Installomator

Screenshot:

Screenshot 2024-02-07 at 13.42.16.png

 

What am I missing?

 

4 REPLIES 4

sdagley
Esteemed Contributor II

@PE Here's the .plist I use to set the Firefox home page (and enable auto update):

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>EnterprisePoliciesEnabled</key>
		<true/>
		<key>AppAutoUpdate</key>
		<true/>
		<key>Homepage</key>
		<dict>
			<key>URL</key>
			<string>https://apple.com</string>
			<key>Locked</key>
			<true/>
			<key>StartPage</key>
			<string>homepage</string>
		</dict>
	</dict>
</plist>

 

PE
Contributor

@sdagley thanks for reply but I prefer the json file

 

sdagley
Esteemed Contributor II

@PE When you send the Configuration Profile to the Mac it's going to be a .plist like I provided. The application for JSON in this case is to configure the Jamf Pro payload editor to create that .plist, and based on your original post you're not able to create a payload that does what you want using it. I can't help you with that because I don't use that method to create Firefox Configuration Profiles. What I'd suggest based on what I do know works is change to the Upload option for the Application & Custom Settings payload then paste in the .plist I provided and edit it for the homepage you want.

PE
Contributor

@sdagley  I will try your suggestion first and see if that works - thanks for your time