## Get the correct URL If ( Test-Path "${Env:ProgramFiles(x86)}" ) { $URL = 'https://emberkom.s3.amazonaws.com/management/installers/Teams_windows_x64.msi' } Else { $URL = 'https://emberkom.s3.amazonaws.com/management/installers/Teams_windows_x86.msi' } ## Install Microsoft Teams Start-Process -FilePath "msiexec.exe" -ArgumentList "/i ${URL} /qn /norestart" -Wait