<# Author: Gabe Kerntke Company: UFS LLC Date: 10-04-2024 .Synopsis .Modified 2024-10-04 (GabeK) - Original script created #> $Name = Get-AppxPackage -name *Teams* -AllUsers -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Name If ($Name -eq "MSTeams") { If (Test-Path "C:\Program Files\WindowsApps\*MSTeams*") { Write-Host "MS Store Version of Teams is installed" } } Else { Write-Host "New Teams not installed" }