This is the first time I've encountered .msix files and I want to get in front of them with our internal scripting so I'll know how to do it whenever it's required.
First attempt was:
Add-AppxPackage -Path "%UserProfile%\Downloads\MSTeams-x64.msix"
This was tricky because on the 4 computers I tested this on 2 did nothing and the other 2 showed a screen from the installer. More info on that below.
Second attempt I found here:
So I made a script somewhere on the lines of:
msiexec /i %UserProfile%\Downloads\msixmgrSetup.msi /qn /norestart
"C:\Program Files\msixmgr\msixmgr.exe" -AddPackage "%UserProfile%\Downloads\MSTeams-x64.msix" -quietUX
But I cannot get the -quietUX to work, the furthest I got was dropping that at the end and I was able to press the Install Teams button that comes up.
with the -QuietUX I just get explanation of how to use the app
I tried playing around with the order of it and it looks like it did something but the darn thing didn't install (installing manually after you've installed it once is super fast so I would know if it installed or not)
Does anyone know how to do this?