Provide Example, Add Support for 'New' Teams
- Dominant language
- PowerShell
- Stars
- 524
- Forks
- 610
- PR merge metrics
- No merged PRs in 30d
Description
It's only a few months until new teams is the law of the land.
I've been using your awesome scripts as follows for the existing "old" teams which works great...
```
{
destination = "C:\\AVDImage\\TeamsOptimization.ps1",
name = "avdBuiltInScript_teamsOptimization",
sha256Checksum = "586f824ae79916322287f69a4daaf9a91939272509cdd39d4b032bd0fa8eb8b2",
sourceUri = "https://raw.githubusercontent.com/Azure/RDS-Templates/master/CustomImageTemplateScripts/CustomImageTemplateScripts_2023-11-20/TeamsOptimization.ps1",
type = "File"
},
{
inline = [
"C:\\AVDImage\\TeamsOptimization.ps1 -TeamsDownloadLink \"https://teams.microsoft.com/downloads/desktopurl?env=production&plat=windows&arch=x64&managedInstaller=true&download=true\" -WebRTCInstaller \"https://aka.ms/msrdcwebrtcsvc/msi\" -VCRedistributableLink \"https://aka.ms/vs/17/release/vc_redist.x64.exe\""
],
name = "avdBuiltInScript_teamsOptimization-parameter",
runAsSystem = true,
runElevated = true,
type = "PowerShell"
},
```
BUT, I don't want to have to update this image in a few months. I would like to get started with new teams.....
SO, I took a guess at how to do it using the existing infra
```
{
destination = "C:\\AVDImage\\TeamsOptimization.ps1",
name = "avdBuiltInScript_teamsOptimization",
sha256Checksum = "586f824ae79916322287f69a4daaf9a91939272509cdd39d4b032bd0fa8eb8b2",
sourceUri = "https://raw.githubusercontent.com/Azure/RDS-Templates/master/CustomImageTemplateScripts/CustomImageTemplateScripts_2023-11-20/TeamsOptimization.ps1",
type = "File"
},
{
inline = [
"C:\\AVDImage\\TeamsOptimization.ps1 -TeamsDownloadLink \"https://go.microsoft.com/fwlink/?linkid=2196106\" -WebRTCInstaller \"https://aka.ms/msrdcwebrtcsvc/msi\" -VCRedistributableLink \"https://aka.ms/vs/17/release/vc_redist.x64.exe\""
],
name = "avdBuiltInScript_teamsOptimization-parameter",
runAsSystem = true,
runElevated = true,
type = "PowerShell"
},
```
And it did 'install' new teams but it's not really there or installed from what I can tell. The Icon is there in the start menu, but new teams doesn't start automatically nor can I start it from clicking the icon.
I would appreciate the update or at least some direction on how to install NEW teams
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.