Posted on 12-21-2021 04:47 PM
Hey everyone - currently I am using this guide to deploy MS Defender on all our macs in our environment:
Now while this deploys MS Defender all good, I still get a prompt requesting the user to Allow MS Defender to filter network content and another requiring them to click OK on a MS Autoupdate "Required Data Notice" message.
Anyway to make it so these are always agreed to without user intervention and therefore making the deployment completely silent?
12-22-2021 12:10 AM - edited 12-22-2021 04:45 AM
For the filter network content you are missing the following configuration.
For AutoUpdate try this as custom preference under the pref domain com.microsoft.autoupdate2:
<?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>AcknowledgedDataCollectionPolicy</key>
<string>RequiredDataOnly</string>
<key>IgnoreUIOpenAfterInstall</key>
<true />
</dict>
</plist>
You can replace RequiredDataOnly with RequiredAndOptionalData if you desire.
Posted on 12-22-2021 01:06 PM
I actually left this configuration policy out completely due to the fact that in my JAMF Pro I do not seem to have a Content Filter tab at all...it's pretty strange. Not sure if there is a legacy method of doing this?