Posted on 08-02-2022 08:37 AM
Hi,
I was just wondering if anyone has had any experience with this and would be able to guide me in the right direction to deploy this. Any help would be appreciated.
https://chromeenterprise.google/policies/#CertificateTransparencyEnforcementDisabledForUrls
08-02-2022 08:48 AM - edited 08-02-2022 08:50 AM
would it be a plist file I create under custom settings that look like this
<?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>
CertificateTransparencyEnforcementDisabledForUrls
</key>
<false/>
<array> <string>example.com</string> <string>.example.com</string> </array>
</dict> </plist>
Posted on 08-02-2022 01:17 PM
Consider using a Jamf manifest to make this easier.
There’s one available here:
https://github.com/Jamf-Custom-Profile-Schemas/ProfileManifestsMirror/blob/main/manifests/ManagedPre...
You can find instructions for using it here:
https://github.com/Jamf-Custom-Profile-Schemas/jamf-manifests/wiki
I suggest adding it to your new configuration profile and then immediately remove all the automatically enabled properties. Then add back only what you need.
Posted on 08-04-2022 03:48 AM
Thank you.