We have an issue where clients are receiving a “try the new outlook” popup that came from Feb 2025 updates. This popup is separate from the toggle swtich, which we are currently hiding. New Outlook breaks several in-house apps needed to do business. I can easily find users actively running New Outlook and those that have New Outlook installed. What I can’t find is those devices that have the AppX packages present and ready to install. We can use PowerShell to query for the AppX packages but need help creating relevance statement(s) to find them using BigFix.
PowerShell queries:
Get-AppxPackage -Allusers | select Name | select-string “outlook”
Get-AppxProvisionedPackage -Online | Select DisplayName | select-string “outlook”
Thanks!