Skip to content

Commit f3578c2

Browse files
Fixing more broken links
1 parent 959f061 commit f3578c2

15 files changed

+884
-555
lines changed

.openpublishing.redirection.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7425,11 +7425,6 @@
74257425
"redirect_url": "/powershell/module/teams/Grant-CsApplicationAccessPolicy",
74267426
"redirect_document_id": false
74277427
},
7428-
{
7429-
"source_path": "skype/virtual-folder/skype/Grant-CsBroadcastMeetingPolicy.md",
7430-
"redirect_url": "/powershell/module/teams/Grant-CsBroadcastMeetingPolicy",
7431-
"redirect_document_id": false
7432-
},
74337428
{
74347429
"source_path": "skype/virtual-folder/skype/Grant-CsCallingLineIdentity.md",
74357430
"redirect_url": "/powershell/module/teams/Grant-CsCallingLineIdentity",

skype/skype-ps/skype/Get-CsTenantPublicProvider.md

Lines changed: 0 additions & 126 deletions
This file was deleted.

skype/skype-ps/skype/New-CsVoiceNormalizationRule.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,3 @@ This cmdlet creates an object of type Microsoft.Rtc.Management.WritableConfig.Po
383383
384384
[Get-CsDialPlan](Get-CsDialPlan.md)
385385
386-
[New-CsTenantDialPlan](New-CsTenantDialPlan.md)
387-
388-
[Set-CsTenantDialPlan](Set-CsTenantDialPlan.md)
Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
online version: https://learn.microsoft.com/powershell/module/skype/set-csteamsupgradeconfiguration
4+
applicable: Skype for Business Online
5+
title: Set-CsTeamsUpgradeConfiguration
6+
schema: 2.0.0
7+
manager: bulenteg
8+
author: tomkau
9+
ms.author: tomkau
10+
ms.reviewer:
11+
---
12+
13+
# Set-CsTeamsUpgradeConfiguration
14+
15+
## SYNOPSIS
16+
Administrators can use Set-CsTeamsUpgradeConfiguration to manage certain aspects of client behavior for users being upgraded from Skype for Business to Teams. TeamsUpgradeConfiguration should be used in conjunction with TeamsUpgradePolicy. The settings in TeamsUpgradeConfiguration allow administrators to configure whether users subject to upgrade and who are running on Windows clients should automatically download Teams. It allows administrators to determine which application end users should use to join Skype for Business meetings.
17+
18+
## SYNTAX
19+
20+
### Identity (Default)
21+
```
22+
Set-CsTeamsUpgradeConfiguration [-Tenant <Guid>] [-DownloadTeams <Boolean>] [-SfBMeetingJoinUx <String>]
23+
[[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
24+
```
25+
26+
### Instance
27+
```
28+
Set-CsTeamsUpgradeConfiguration [-Tenant <Guid>] [-DownloadTeams <Boolean>] [-SfBMeetingJoinUx <String>]
29+
[-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
30+
```
31+
32+
## DESCRIPTION
33+
TeamsUpgradeConfiguration is used in conjunction with TeamsUpgradePolicy. The settings in TeamsUpgradeConfiguration allow administrators to configure whether users subject to upgrade and who are running on Windows clients should automatically download Teams. It allows administrators to determine which application end users should use to join Skype for Business meetings.
34+
35+
The DownloadTeams property allows admins to control whether the Skype for Business client should automatically download Teams in the background. This setting is only honored on Windows clients, and only for certain values of the user's TeamsUpgradePolicy. If NotifySfbUser=true or if Mode=TeamsOnly in TeamsUpgradePolicy, this setting is honored. Otherwise it is ignored.
36+
37+
The SfBMeetingJoinUx property allows admins to specify which app is used to join Skype for Business meetings, even after the user has been upgraded to Teams. Allowed values are: SkypeMeetingsApp and NativeLimitedClient. "NativeLimitedClient" means the existing Skype for Business rich client will be used, but since the user is upgraded, only meeting functionality is available. Calling and Messaging are done via Teams. "SkypeMeetingsApp" means use the web-downloadable app. This setting can be useful for organizations that have upgraded to Teams and no longer want to install Skype for Business on their users' computers.
38+
39+
## EXAMPLES
40+
41+
### Example 1
42+
```
43+
PS C:\> Set-CsTeamsUpgradeConfiguration -DownloadTeams $true -SfBMeetingJoinUx SkypeMeetingsApp
44+
```
45+
46+
The above cmdlet specifies that users subject to upgrade should download Teams in the background, and that they should use the Skype For Business Meetings app to join Skype for Business meetings.
47+
48+
## PARAMETERS
49+
50+
### -Confirm
51+
Prompts you for confirmation before running the cmdlet.
52+
53+
```yaml
54+
Type: SwitchParameter
55+
Parameter Sets: (All)
56+
Aliases: cf
57+
Applicable: Skype for Business Online
58+
59+
Required: False
60+
Position: Named
61+
Default value: None
62+
Accept pipeline input: False
63+
Accept wildcard characters: False
64+
```
65+
66+
### -DownloadTeams
67+
The DownloadTeams property allows admins to control whether the Skype for Business client should automatically download Teams in the background. This Boolean setting is only honored on Windows clients, and only for certain values of the user's TeamsUpgradePolicy. If NotifySfbUser=true or if Mode=TeamsOnly in TeamsUpgradePolicy, this setting is honored. Otherwise it is ignored.
68+
69+
```yaml
70+
Type: Boolean
71+
Parameter Sets: (All)
72+
Aliases:
73+
Applicable: Skype for Business Online
74+
75+
Required: False
76+
Position: Named
77+
Default value: True
78+
Accept pipeline input: False
79+
Accept wildcard characters: False
80+
```
81+
### -SfBMeetingJoinUx
82+
The SfBMeetingJoinUx property allows admins to specify which app is used to join Skype for Business meetings, even after the user has been upgraded to Teams. Allowed values are: "SkypeMeetingsApp" and "NativeLimitedClient". "NativeLimitedClient" means the existing Skype for Business rich client will be used, but since the user is upgraded, only meeting functionality is available. Calling and Messaging are done via Teams. "SkypeMeetingsApp" means use the web-downloadable app. This setting can be useful for organizations that have upgraded to Teams and no longer want to install Skype for Business on their users' computers.
83+
84+
```yaml
85+
Type: string
86+
Parameter Sets: (All)
87+
Aliases:
88+
Applicable: Skype for Business Online
89+
90+
Required: False
91+
Position: Named
92+
Default value: NativeLimitedClient
93+
Accept pipeline input: False
94+
Accept wildcard characters: False
95+
```
96+
### -Force
97+
{{Fill Force Description}}
98+
99+
```yaml
100+
Type: SwitchParameter
101+
Parameter Sets: (All)
102+
Aliases:
103+
Applicable: Skype for Business Online
104+
105+
Required: False
106+
Position: Named
107+
Default value: None
108+
Accept pipeline input: False
109+
Accept wildcard characters: False
110+
```
111+
112+
### -Identity
113+
{{Fill Identity Description}}
114+
115+
```yaml
116+
Type: XdsIdentity
117+
Parameter Sets: (All)
118+
Aliases:
119+
Applicable: Skype for Business Online
120+
121+
Required: False
122+
Position: 1
123+
Default value: None
124+
Accept pipeline input: False
125+
Accept wildcard characters: False
126+
```
127+
128+
129+
130+
### -Tenant
131+
{{Fill Tenant Description}}
132+
133+
```yaml
134+
Type: Guid
135+
Parameter Sets: (All)
136+
Aliases:
137+
Applicable: Skype for Business Online
138+
139+
Required: False
140+
Position: Named
141+
Default value: None
142+
Accept pipeline input: False
143+
Accept wildcard characters: False
144+
```
145+
146+
### -WhatIf
147+
Shows what would happen if the cmdlet runs.
148+
The cmdlet is not run.
149+
150+
```yaml
151+
Type: SwitchParameter
152+
Parameter Sets: (All)
153+
Aliases: wi
154+
Applicable: Skype for Business Online
155+
156+
Required: False
157+
Position: Named
158+
Default value: None
159+
Accept pipeline input: False
160+
Accept wildcard characters: False
161+
```
162+
163+
## INPUTS
164+
165+
### System.Management.Automation.PSObject
166+
167+
168+
## OUTPUTS
169+
170+
### System.Object
171+
172+
## NOTES
173+
These settings are only honored by newer versions of Skype for Business clients.
174+
175+
## RELATED LINKS
176+
177+
[Get-CsTeamsUpgradeConfiguration](Get-CsTeamsUpgradeConfiguration.md)
178+
179+
[Get-CsTeamsUpgradePolicy](Get-CsTeamsUpgradePolicy.md)
180+
181+
[Grant-CsTeamsUpgradePolicy](Grant-CsTeamsUpgradePolicy.md)
182+
183+
[Migration and interoperability guidance for organizations using Teams together with Skype for Business](https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype)

0 commit comments

Comments
 (0)