Microsoft "Required Data Notice" pop up

AlanSmith
Contributor

So as of today Friday 19 July, we have started seeing a rather large popup Window (See attached) appear when a user logs into one of our Macs.

We're not even starting any MS apps, it happens a few seconds after logging in.

Just wondering if anybody else has come across this and is there any way of preventing it?

6e6d22cfd54441af99af2abb05cfaf36

27 REPLIES 27

bannonk
New Contributor

Also seeing this today.

Looks like it is being triggered by "/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app/Contents/MacOS/Microsoft AutoUpdate"

lyubomir_hristo
New Contributor

Best Solution is to Make a Plist: 212d12f643f542c890783dc5312e8dc5

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!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> </dict>
</plist>

remus
New Contributor III

Apparently the .plist solution is not working. Tried it on a few Macs and the damn window still pops up.
90ce4e8149764f79ad96c8aff6aded11
1e8200f6387f49748aa527aa47291ff1

jmariani
Contributor

@remus Your Preference domain is incorrect. It needs to be set to com.microsoft.autoupdate2. Change that setting and redeploy.

remus
New Contributor III

@jmariani How embarrassing… I missed that. Thank you!
And thank YOU @lyubomir.hristov

remus
New Contributor III

It also works by using the defaults command.

/usr/bin/defaults write com.microsoft.autoupdate2 AcknowledgedDataCollectionPolicy RequiredDataOnly

joethedsa
Contributor II

@remus , I tried the defaults command and that didn't work. The way I tried to run the command was create a policy that is both triggered at check-in and login, used the "Files and Processes" payload, then use the execute command field to enter the command you posted:

/usr/bin/defaults write com.microsoft.autoupdate2 AcknowledgedDataCollectionPolicy RequiredDataOnly

Any idea why that wouldn't work? Doing the command as opposed to the Configuration Profile seems like a better solution to minimize clutter in Profiles. I'm still fairly new at managing Macs so I may be over thinking it.

talkingmoose
Moderator
Moderator

@joethedsa, managing plists is exactly what configuration profiles are for. I suggest trying a configuration profile instead. Much easier to manage than a policy and more immediate to apply to Macs too.

Hugonaut
Valued Contributor II

started testing this out this morning, latest Installer from Microsoft.

After a fresh install, that popup appears but I applied the command

defaults write com.microsoft.autoupdate2 AcknowledgedDataCollectionPolicy RequiredDataOnly

& boom it's gone so that is a go for the config profile, next I get this popup,

a0300b1179884cbda9b5d5026728b161

so, I applied

#This Enables the Check for Automatic Download & Updates button in the MAU GUI
defaults write com.microsoft.autoupdate2 HowToCheck -string 'AutomaticDownload'

#This Enables/disables the Check for Automatic Download & Updates button in the MAU GUI
defaults write com.microsoft.autoupdate2 EnableCheckForUpdatesButton -bool TRUE

but it still displays. what is the last command / string I need? how do I get rid of this popup so end users never see it? i must be missing something from software.macadmins preferences page.

________________
Looking for a Jamf Managed Service Provider? Look no further than Rocketman
________________


Virtual MacAdmins Monthly Meetup - First Friday, Every Month

Discher
New Contributor III

Thank you @lyubomir.hristov! Your solution worked perfectly!

joethedsa
Contributor II

@talkingmoose , thanks for the suggestion. I have deployed the configuration profile per your suggestion (Thank you @lyubomir.hristov ) and we are good.

talkingmoose
Moderator
Moderator

@Hugonaut, not sure how you’re running your command, but…

If you’re running it locally in Terminal, be sure to quit AutoUpdate before running the command. Don’t leave the app open.

If you’re running it from Jamf, that command will only affect root not all users.

A configuration profile for this really makes the most sense unless you have an unusual need to set this for some but not all users on the same Mac. If you’re not sure how to create the profile, @pbowden and I covered managing Office settings in our webinar in January. You can find the recording here:

https://www.jamf.com/resources/webinars/how-to-manage-microsoft-office-2019-for-mac/

cbd4s
Contributor II

The configuration profile can be either user level or computer level as pointed out by spalmer below. The default value for the AcknowledgedDataCollectionPolicy key is NotAcknowledged.

I've also noticed the configuration profile with this custom setting actually doesn't update the com.microsoft.autoupdate2 plist file as the AcknowledgedDataCollectionPolicy value is still NotAcknowledged when the profile is applied. But the message does stop popping up. So it appears the profile is simply overruling the plist.

Without the profile, this message should be one time only for each user. It does interrupt the logging out process. I'm not sure if the future version update of Microsoft AutoUpdate would reset this key's value in the plist.

There were also reports online on leaving this message up without clicking the OK button to dismiss it would result high CPU usage: https://answers.microsoft.com/en-us/msoffice/forum/all/microsoft-autoupdate-with-a-required-data/ab9979dd-ee6e-4f98-849d-95a15386b26c

I did experience that myself so I'm going to say some of the users will have this issue as well.

seraphina
Contributor II

Here are the preferences I use for managing Office 2019

com.microsoft.autoupdate2.plist

<?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>HowToCheck</key>
    <string>AutomaticDownload</string>
</dict>
</plist>

com.microsoft.office.plist

<?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>OfficeAutoSignIn</key>
    <true/>
    <key>ShowWhatsNewOnLaunch</key>
    <false/>
    <key>kCUIThemePreferencesThemeKeyPath</key>
    <false/>
</dict>
</plist>

spalmer
Contributor III

@ccsben Based on the response from @pbowden in the #microsoft-autoupdate channel on the MacAdmins Slack team it can be either user level or computer level.

sdpalmer 11:34 AM @macbm @pbowden Does the AcknowledgedDataCollectionPolicy for com.microsoft.autoupdate2 need to be user or computer level config profile? pbowden 11:34 AM @sdpalmer either is fine

cbd4s
Contributor II

@mlizbeth Thanks for that. Mind to share a bit more on the rationale behind these settings?

seraphina
Contributor II

@ccsben

Sure. The goal is to allow the user to simply start using the software without the need for any dialog interaction. The more dialogs the users are presented with, the more likely it is they get confused. Since we are using Perpetual/Volume Licensing, we can safely skip the Office 365 sign in dialog (when you have a Perpetual License the dialog will popup but has a "skip sign in option", for regular Office 365 it is mandatory to sign in.)
RequiredDataOnly will bypass the new MAU privacy agreement, because we have had people call help desk over it because it's something "new" popping up. AutomaticDownload is enabled because we had users running extremely outdated versions.
ShowWhatsNewOnLaunch, bypasses changelog notice on first launch
kCUIThemePreferencesThemeKeyPath will choose default system theme and take them straight to the main window where they can select the template they want to use.

anch-in-nk
New Contributor

Quick update: I followed the link in the post from bannonk, force-quit the update notice and deleted the file. Somehow I doubt that this will last long.... but at least I haven't got the thing flashing at me constsntly.
A

anch-in-nk
New Contributor

Good morning all
We have seen this on our three Macs as well today. Out of curiosity I clicked "Learn more" and opted to download the list of "things" Microsoft grabs as a PDF. It's 195 pages long. Worrying to say the least.

I have deactivated all the options possible on our one Windows 10 machine.

If there's any way to get round this on the Macs I'd be pleased to hear about it.

A

stephaniemm77
Contributor

Sorry to be so dumb...but you created a new configuration profile? and add the info under custom settings? is there anything else in there i should be configuring?

mark_mahabir
Valued Contributor

@stephaniemm77 Yes, we created a plist just like the one @lyubomir.hristov mentioned above.

Go to the Configuration profile you created for this, click Custom Settings, Configure and then click Upload PLIST file and select the plist you just created. Double check that it has added the preference domain as com.microsoft.autoupdate2 and click Save.

Give me a shout if you get stuck!

DFree
New Contributor III

I just wanted to thank @mlizbeth and @mark.mahabir for their posts that helped me quickly knock this out with a config profile. The automatically update config was a bonus.

kwoodard
Contributor III

Thanks all, especially @lyubomir.hristov! Very helpful. Had a faculty go to her dean saying that someone was hacking our computers...because of this pop-up. :|

scerazy
New Contributor III

Thanks

Gascolator
New Contributor III

I'm having trouble getting this to work. I've tested on 10.14 and 10.15 and get the same results. Attached is a screenshot of my config profile. I'm testing this on my DEP machines. The machine flows out of enrollment, and then DEP Notify triggers and installs software, including Office. I have DEP Notify setup to show a restart button once it is finished. If I hit the restart button, it closes DEP Notify, but the machine wont restart because the Microsoft Required Data Notice window has popped up and requires action. Am I doing something wrong here? The auto update portion of the config profile does appear to be working. b0957642c01c486191b7b07dda13d309

daniel_ross
Contributor III

Still running into issues with this myself as well @Gascolator. My settings are even more simplified as right now from what I had before which also wasn't working. I used PlistEdit Pro to make my file if that matters any?
19ffcb549f4d4cbe86fe1911a46d2ed0

Found the issue to be an old profile that I had missed now seems to be working flawlessly!

Thanks for the great info here and on https://macadmins.software!

Cyberbof
New Contributor II

My xml
<?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>ChannelName</key> <string>Production</string> <key>DisableInsiderCheckbox</key> <true/> <key>EnableCheckForUpdatesButton</key> <true/> <key>ExtendedLogging</key> <true/> <key>HowToCheck</key> <string>AutomaticDownload</string> <key>IOCRestoreFailCount</key> <string>0</string> <key>InstallLockedBy</key> <integer>0</integer> <key>OptionalDataCollectionEnabled</key> <false/> <key>SendAllTelemetryEnabled</key> <false/> <key>SendCriticalTelemetryEnabled</key> <false/> <key>StartDaemonOnAppLaunch</key> <true/> <key>UpdateCheckFrequency</key> <integer>720</integer> <key>UpdateDeadline.DaysBeforeForcedQuit</key> <integer>3</integer> <key>WindowsAzureMobileServicesInstallationId</key> <string>AE199F90-6BD6-4428-BA0C-C5D21B3F19F2</string> <key>ApplicationsForcedUpdateSchedule</key> <dict/> </dict>
</plist>