Skip to content

Commit 1f812f7

Browse files
authored
Merge pull request #13332 from sreekavya022003/add-linksinteams-parameter
Add LinksInTeams parameter to TeamsMobilityPolicy cmdlets
2 parents b0aa46c + d65dc93 commit 1f812f7

2 files changed

Lines changed: 33 additions & 4 deletions

File tree

teams/teams-ps/MicrosoftTeams/New-CsTeamsMobilityPolicy.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users.
1919

2020
```
2121
New-CsTeamsMobilityPolicy [-Tenant <System.Guid>] [-Description <String>] [-IPVideoMobileMode <String>]
22-
[-IPAudioMobileMode <String>] [-Identity] <XdsIdentity>] [-MobileDialerPreference <String>] [-InMemory] [-Force] [-WhatIf] [-Confirm]
22+
[-IPAudioMobileMode <String>] [-Identity] <XdsIdentity>] [-MobileDialerPreference <String>] [-LinksInTeams <String>] [-InMemory] [-Force] [-WhatIf] [-Confirm]
2323
[<CommonParameters>]
2424
```
2525

@@ -145,6 +145,21 @@ Accept pipeline input: False
145145
Accept wildcard characters: False
146146
```
147147
148+
### -LinksInTeams
149+
Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults.
150+
151+
```yaml
152+
Type: String
153+
Parameter Sets: (All)
154+
Aliases:
155+
156+
Required: False
157+
Position: Named
158+
Default value: OfferBrowserOptions
159+
Accept pipeline input: False
160+
Accept wildcard characters: False
161+
```
162+
148163
### -WhatIf
149164
Shows what would happen if the cmdlet runs.
150165
The cmdlet is not run.

teams/teams-ps/MicrosoftTeams/Set-CsTeamsMobilityPolicy.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users.
2020
### Identity (Default)
2121
```
2222
Set-CsTeamsMobilityPolicy [-Tenant <System.Guid>] [-Description <String>] [-IPVideoMobileMode <String>]
23-
[-IPAudioMobileMode <String>] [[-Identity] <XdsIdentity>] [-MobileDialerPreference <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
23+
[-IPAudioMobileMode <String>] [[-Identity] <XdsIdentity>] [-MobileDialerPreference <String>] [-LinksInTeams <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2424
```
2525

2626
### Instance
2727
```
2828
Set-CsTeamsMobilityPolicy [-Tenant <System.Guid>] [-Description <String>] [-IPVideoMobileMode <String>]
29-
[-IPAudioMobileMode <String>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
29+
[-IPAudioMobileMode <String>] [-Instance <PSObject>] [-LinksInTeams <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3030
```
3131

3232
## DESCRIPTION
@@ -38,7 +38,7 @@ The Set-CsTeamsMobilityPolicy cmdlet allows administrators to update teams mobil
3838

3939
### Example 1
4040
```powershell
41-
PS C:\> Set-CsTeamsMobilityPolicy -Identity SalesPolicy -IPVideoMobileMode "WifiOnly
41+
PS C:\> Set-CsTeamsMobilityPolicy -Identity SalesPolicy -IPVideoMobileMode "WifiOnly"
4242
```
4343
The command shown in Example 1 uses the Set-CsTeamsMobilityPolicy cmdlet to update an existing teams mobility policy with the Identity SalesPolicy. This SalesPolicy will not have IPVideoMobileMode equal to "WifiOnly".
4444

@@ -149,6 +149,20 @@ Accept pipeline input: False
149149
Accept wildcard characters: False
150150
```
151151
152+
### -LinksInTeams
153+
Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults.
154+
155+
```yaml
156+
Type: String
157+
Parameter Sets: (All)
158+
Aliases:
159+
Required: False
160+
Position: Named
161+
Default value: OfferBrowserOptions
162+
Accept pipeline input: False
163+
Accept wildcard characters: False
164+
```
165+
152166
### -WhatIf
153167
Shows what would happen if the cmdlet runs.
154168
The cmdlet is not run.

0 commit comments

Comments
 (0)