TimRedBeard
New Member
- Messages
- 3
- Reaction score
- 1
- Points
- 3
Good morning, I'm running into an issue where we have packaged MS New Teams (the MSIx version) using the PSADT, the package installs fine stand alone. However, when I put it in the task sequence as a package to install, logs shows that it was installed successful, however when the user logs into the computer New Teams is showing in the start menu but clicking on it does nothing and reviewing the apps install shows it's not installed anywhere on the machine.
We've tried various ways to have it install through the task sequence. Packaging just the the bootstrapper and MSIx file and running a command line to install it during the Task Sequence. My last resort I've been thinking about it having it install on all newly imaged computers based on a collection and query as it will install via Software Center perfectly fine as well.
We want to include the New Teams version on all our newly imaged machines vs. the Classic teams with the switch to change over. Below is a copy of how the program installs via the PSADT.
$ExePath = Get-ChildItem -Path "$dirFiles" -Include "teamsbootstrapper.exe" -File -Recurse -ErrorAction SilentlyContinue
$MsixPath = Get-ChildItem -Path "$dirFiles" -Include "MSTeams-x64.msix" -File -Recurse -ErrorAction SilentlyContinue
If($Exepath.Exists) {Write-Log -Message "Found $($ExePath.FullName), now attempting to install $installTitle (EXE)."
Show-InstallationProgress "Installing Microsoft Teams. This may take some time. Please wait..."
Execute-Process -Path "$ExePath" -Parameters "-p -o $MSIxPath" -PassThru -WaitForMsiExec
Start-Sleep -Seconds 15
}
Any help to get it to install via the Task sequence would be welcomed. I will be trying a few additional things today. Thanks!
We've tried various ways to have it install through the task sequence. Packaging just the the bootstrapper and MSIx file and running a command line to install it during the Task Sequence. My last resort I've been thinking about it having it install on all newly imaged computers based on a collection and query as it will install via Software Center perfectly fine as well.
We want to include the New Teams version on all our newly imaged machines vs. the Classic teams with the switch to change over. Below is a copy of how the program installs via the PSADT.
$ExePath = Get-ChildItem -Path "$dirFiles" -Include "teamsbootstrapper.exe" -File -Recurse -ErrorAction SilentlyContinue
$MsixPath = Get-ChildItem -Path "$dirFiles" -Include "MSTeams-x64.msix" -File -Recurse -ErrorAction SilentlyContinue
If($Exepath.Exists) {Write-Log -Message "Found $($ExePath.FullName), now attempting to install $installTitle (EXE)."
Show-InstallationProgress "Installing Microsoft Teams. This may take some time. Please wait..."
Execute-Process -Path "$ExePath" -Parameters "-p -o $MSIxPath" -PassThru -WaitForMsiExec
Start-Sleep -Seconds 15
}
Any help to get it to install via the Task sequence would be welcomed. I will be trying a few additional things today. Thanks!