diff --git a/Get Scripts/Get if MS New Teams is installed.ps1 b/Get Scripts/Get if MS New Teams is installed.ps1 new file mode 100644 index 0000000..c27426a --- /dev/null +++ b/Get Scripts/Get if MS New Teams is installed.ps1 @@ -0,0 +1,18 @@ +<# +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" } \ No newline at end of file