Forum Discussion
AB21805
Jan 24, 2024Bronze Contributor
Issue with Intune Script: Successful Report, but Ineffective Removal of Personal Teams on Windows 11
Hello everyone, I've encountered an issue with a script that performs flawlessly when executed manually on the device. However, when running the same script via Intune, it reports success but doesn'...
- Jan 24, 2024Found a fix : #Kill Teams Personal EXE if running
TASKKILL /IM msteams.exe /f
#Remove it
Get-AppxPackage MicrosoftTeams -allusers | Remove-AppxPackage -allusers
Exit 0
AB21805
Jan 24, 2024Bronze Contributor
Found a fix : #Kill Teams Personal EXE if running
TASKKILL /IM msteams.exe /f
#Remove it
Get-AppxPackage MicrosoftTeams -allusers | Remove-AppxPackage -allusers
Exit 0
TASKKILL /IM msteams.exe /f
#Remove it
Get-AppxPackage MicrosoftTeams -allusers | Remove-AppxPackage -allusers
Exit 0