Mar 13 2024 06:06 AM
Hi..
We are starting to add the new Teams app to our Intune autopilot deployment sequence. We are using the teamsbootstrapper.exe file to install
The problem is that while we know it does install as we can see the Teams folder in c:\ProgramFiles\WindowsApps directory, Teams icon/shortcut does not get added to the Windows start menu nor is it listed in add/remove programs.
In Intune we've tried the following install commands:
1: teamsbootstrapper.exe -p
2: and this powershell script:
function ProvisionTeams {
param (
[string]$ProvisionMode
)
if ($ProvisionMode -eq "AllUsers") {
Start-Process -FilePath ".\teamsbootstrapper.exe" -ArgumentList "-p" -Wait -WindowStyle Hidden
}
elseif ($ProvisionMode -eq "CurrentUser") {
Start-Process -FilePath ".\teamsbootstrapper.exe" -ArgumentList "-p" -Wait -WindowStyle Hidden
}
else {
Write-Host "Invalid ProvisionMode specified. Use 'AllUsers' or 'CurrentUser'."
}
}
# Provision for all users
ProvisionTeams -ProvisionMode "AllUsers"
# Provision for the current user
ProvisionTeams -ProvisionMode "CurrentUser"
And neither yield allow for Teams to show up in start menu for users to access.
Anyone got any ideas????
Mar 13 2024 12:26 PM
Mar 13 2024 04:40 PM
@NicklasOlsen No sir, it does not.
Mar 14 2024 02:48 AM
Mar 14 2024 06:52 AM
Mar 15 2024 12:07 AM
Mar 18 2024 08:09 AM
Mar 18 2024 08:59 AM
Mar 25 2024 06:47 AM
Mar 26 2024 12:48 PM
Mar 29 2024 10:35 AM
We deploy as a win32 app with the system behavior.
the install command is teamsbootstrapper.exe -p
May 24 2024 05:01 AM
we have the same issue and i think its related to the detection script. the script from this link only checks
if the package is under C:\Program Files\WindowsApps.
This doesnt check if its actually installed and useable for the user. if the check only checks the presence of the bootstrapper or the appx file but doesnt check if its installed for the user -> useless script.
i work on a detection based on the install status of a Appx product. it must be in the list of installed software products. thats what i would check against
Jun 26 2024 02:34 AM
Oct 03 2024 06:05 AM