Inquiry on Intune Reports for Unsuccessful Teams Personal App Installations

J-3804 1,556 Reputation points
2024-05-13T16:30:53.2666667+00:00

Hi there,

We are in the process of deploying a remediation script via Intune to uninstall the Teams Personal app across user devices. We’ve noticed that the uninstallation was successful on some devices but not on others. Could you guide us on where to find reports or logs within Intune that detail the reasons for these unsuccessful uninstallations?

Thank you for your assistance

Microsoft Intune Application management
Microsoft Intune Application management
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Application management: The process of creating, configuring, managing, and monitoring applications.
895 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,487 questions
0 comments No comments
{count} votes

Accepted answer
  1. Pavel yannara Mirochnitchenko 12,066 Reputation points MVP
    2024-05-13T18:11:15.54+00:00

    If you are using remediation script to do the uninstallation and check, monitoring feedback of that remediation object will only show you, what scripts input will do and that will depend, how it will end. I think you have 2 options here;

    1. If you continue to use remediation script, you could add a option that it will log locally somewhere but then you will need to connect to that device.
    2. Try to use Intune Application to do the uninstallation but you then need to wrap that app first into Win32 app, unless you have proper MSI file of that Teams version. With that, you could monitor better that process from monitoring and investigate only first of failures. This might be more solid solution of app uninstall rather than using remediation script.

    Myself, I use this line to remove MS Teams consumer version during Autopilot (might work to on-field computers as well):

    Get-AppxProvisionedPackage -online | where-object {$_.packagename -like "MicrosoftTeams"} | Remove-AppxProvisionedPackage -online -LogLevel "3" -LogPath "C:\Windows\Debug\ProvisionedAppsRemoval-Teams.log" -ErrorAction SilentlyContinue**

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful