Teams Settings
4 TopicsThe Format of Teams Setting File desktop-config.json
Hello, I have a question on Teams setting file desktop-config.json. In the company, after installing Teams we must do some preset settings, for example, prevent Teams from auto-starting with system. I think there's an easy way: $settings = Get-Content "$env:APPDATA\Microsoft\Teams\desktop-config.json" | ConvertFrom-Json $disable_autostart = "{`"openAtLogin`": false}" | ConvertFrom-Json $settings | Add-Member -MemberType NoteProperty -Name "appPreferenceSettings" -Value $disable_autostart $settings | ConvertTo-Json | Set-Content "$env:APPDATA\Microsoft\Teams\desktop-config.json" But the new desktop-config.json doesn't work, I have to deal with it as a string, like this: $Teams_config_file = "$env:APPDATA\Microsoft\Teams\desktop-config.json" $disable_auto_start = ",`"appPreferenceSettings`":{`"openAtLogin`":false}}" (Get-Content $Teams_config_file -Raw) -replace "}$",$disable_auto_start | Set-Content -LiteralPath $Teams_config_file Is there a way to modify the configurations as real json codes rather than plain strings? Thank you. Regards, C. L23KViews0likes2CommentsGenerate a web link to a Teams settings.
I am trying to generate a link from within my application to a specific Teams settings page. The sections I don't understand is after the team name. It is not the team ID and looks like a thread ID. Example page: https://teams.microsoft.com/_?lm=deeplink&lmsrc=homePageWeb&cmpid=WebSignIn#/teamDashboard/Derek's%20Team%20Of%20Wonders/19:65d8ee8a57e547aca36da52b8855dcb0@thread.tacv2/td.settings I have no idea what the section of the link hi lighted in red is. I would like to generate that section of the link using graph api if possible. Thank you -D2.6KViews0likes3CommentsMultiple users parked call
Hi, if an admin puts a call on Park it gives a park code.....is there a way for multiple users to pickup the same parked call to be in the call together from with the person who called in originally? If not, what's the best way to handle something like this? Thanks.1.4KViews0likes1CommentSettings by user/license type : Turn Microsoft Teams on or off for all users of this type
Relatively simple question relating to this setting; If I turn Teams off for all users, will I still be able to manually enable the license/application on a user to user basis? The scenario is I would access to Teams to be "off" by default, with only certain users within the organization to have access.9.6KViews0likes4Comments