Skip to content
This repository was archived by the owner on Feb 20, 2022. It is now read-only.

Commit 3e94d89

Browse files
committed
fix: CsTeamsUpgradePolicy
- adminstrators -> administrators - adminsitrators -> administrators - remove raw GitHub links
1 parent 893cfcd commit 3e94d89

File tree

3 files changed

+61
-68
lines changed

3 files changed

+61
-68
lines changed

skype/skype-ps/skype/New-CsTeamsUpgradePolicy.md

Lines changed: 22 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -13,40 +13,37 @@ ms.reviewer:
1313
# New-CsTeamsUpgradePolicy
1414

1515
## SYNOPSIS
16-
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables adminstrators to control whether user see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download Teams based on the value of CsTeamsUpgradeConfiguration.
17-
18-
1916

17+
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether user see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download Teams based on the value of CsTeamsUpgradeConfiguration.
2018

2119
## SYNTAX
2220

2321
```
24-
New-CsTeamsUpgradePolicy [-Identity] <XdsIdentity> [-NotifySfbUsers <Boolean>] [-Description <String>]
25-
22+
New-CsTeamsUpgradePolicy [-Identity] <XdsIdentity> [-NotifySfbUsers <Boolean>] [-Description <String>]
2623
```
2724

2825
## DESCRIPTION
29-
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables adminstrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The new-CsTeamsUpgradePolicy lets the adminstrator create a policy that can be assigned to users homed in Skype for Business on-premises to notify of them of a pending upgrade to Teams. Notifications are enabled by the boolean parameter NotifySfBUsers.
26+
27+
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The new-CsTeamsUpgradePolicy lets the administrator create a policy that can be assigned to users homed in Skype for Business on-premises to notify of them of a pending upgrade to Teams. Notifications are enabled by the boolean parameter NotifySfBUsers.
3028

3129
For users with Win32 versions of Skype for Business, if DownloadTeams=true in CsTeamsUpgradeConfiguration, users who are assigned an instance of TeamsUpgradePolicy with NotifySfBUsers=true will have Teams automatically downloaded in the background.
3230

33-
Notes:
34-
* Instances of TeamsUpgradePolicy created in on-premises will not apply to any users that are already homed online.
31+
Notes:
32+
* Instances of TeamsUpgradePolicy created in on-premises will not apply to any users that are already homed online.
3533
* Skype for Business Online already provides built-in instances of TeamsUpgradePolicy, so there is no New-CsTeamsUpgradePolicy cmdlet for the online environment by design.
3634

37-
38-
39-
4035
## EXAMPLES
4136

4237
### Example 1: Create a site-level policy
38+
4339
```powershell
4440
PS C:\> new-CsTeamsUpgradePolicy -identity site:Redmond1 -NotifySfBUsers $true
4541
```
46-
This creates a policy for users in the site Redmond1.
4742

43+
This creates a policy for users in the site Redmond1.
4844

4945
### Example 2: Create a policy not specific to a site.
46+
5047
```powershell
5148
PS C:\> new-CsTeamsUpgradePolicy -identity EnableNotifications -NotifySfBUsers $true
5249
```
@@ -56,6 +53,7 @@ This creates a policy for users that can be granted as desired to individual use
5653
## PARAMETERS
5754

5855
### -NotifySfbUsers
56+
5957
Determines whether users who are assigned this policy will see a notification in their Skype for Business client about a pending upgrade to Teams. In addition, if NotifySfBUsers=true and TeamsUpgradeConfiguration has DownloadTeams=true, Win32 versions of Skype for Business will silently download the Teams client.
6058

6159
```yaml
@@ -70,11 +68,9 @@ Accept pipeline input: False
7068
Accept wildcard characters: False
7169
```
7270
73-
74-
75-
7671
### -Description
77-
Free form text that can be used as needed by adminsitrators.
72+
73+
Free form text that can be used as needed by administrators.
7874
7975
```yaml
8076
Type: String
@@ -88,11 +84,10 @@ Accept pipeline input: False
8884
Accept wildcard characters: False
8985
```
9086
87+
### -Identity
9188
89+
The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:\<name>" where \<name> is the name of the site. To specify a policy that can be assigned as needed to any users, simply specify a name of your choosing.
9290
93-
### -Identity
94-
The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:<name>" where <name> is the name of the site. To specfy a policy that can be assigned as needed to any users, simply specify a name of your choosing.
95-
9691
```yaml
9792
Type: XdsIdentity
9893
Parameter Sets: (All)
@@ -105,19 +100,15 @@ Accept pipeline input: False
105100
Accept wildcard characters: False
106101
```
107102
108-
109-
110-
111-
112103
### CommonParameters
104+
113105
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
114106
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
115107
116108
## INPUTS
117109
118110
### None
119111
120-
121112
## OUTPUTS
122113
123114
### System.Object
@@ -128,16 +119,16 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
128119
129120
[Migration and interoperability guidance for organizations using Teams together with Skype for Business](https://docs.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype)
130121
131-
[Grant-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Grant-CsTeamsUpgradePolicy.md)
122+
[Grant-CsTeamsUpgradePolicy](Grant-CsTeamsUpgradePolicy.md)
132123
133-
[Get-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Get-CsTeamsUpgradePolicy.md)
124+
[Get-CsTeamsUpgradePolicy](Get-CsTeamsUpgradePolicy.md)
134125
135-
[New-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/New-CsTeamsUpgradePolicy.md)
126+
[New-CsTeamsUpgradePolicy](New-CsTeamsUpgradePolicy.md)
136127
137-
[Remove-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Remove-CsTeamsUpgradePolicy.md)
128+
[Remove-CsTeamsUpgradePolicy](Remove-CsTeamsUpgradePolicy.md)
138129
139-
[Set-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Set-CsTeamsUpgradePolicy.md)
130+
[Set-CsTeamsUpgradePolicy](Set-CsTeamsUpgradePolicy.md)
140131
141-
[Get-CsTeamsUpgradeConfiguration](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Get-CsTeamsUpgradeConfiguration.md)
132+
[Get-CsTeamsUpgradeConfiguration](Get-CsTeamsUpgradeConfiguration.md)
142133
143-
[Set-CsTeamsUpgradeConfiguration](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Set-CsTeamsUpgradeConfiguration.md)
134+
[Set-CsTeamsUpgradeConfiguration](Set-CsTeamsUpgradeConfiguration.md)

skype/skype-ps/skype/Remove-CsTeamsUpgradePolicy.md

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ ms.reviewer:
1313
# Remove-CsTeamsUpgradePolicy
1414

1515
## SYNOPSIS
16-
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables adminstrators to control whether users see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download the Teams app based on the value of TeamsUpgradeConfiguration.
16+
17+
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download the Teams app based on the value of TeamsUpgradeConfiguration.
1718

1819
## SYNTAX
1920

@@ -22,13 +23,15 @@ Remove-CsTeamsUpgradePolicy [-Identity] <XdsIdentity>
2223
```
2324

2425
## DESCRIPTION
25-
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables adminstrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The Remove-CsTeamsUpgradePolicy lets the adminstrator remove instances of TeamsUpgradePolicy that were previously created by the administrator.
26+
27+
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The Remove-CsTeamsUpgradePolicy lets the administrator remove instances of TeamsUpgradePolicy that were previously created by the administrator.
2628

2729
Instances of TeamsUpgradePolicy created on-premises will not apply to any users that are already homed online. This cmdlet cannot be used to remove the built-in instances of TeamsUpgradePolicy provided in Office 365. There is no Remove-CsTeamsUpgradePolicy cmdlet for the online environment by design.
2830

2931
## EXAMPLES
3032

3133
### Example 1
34+
3235
```powershell
3336
PS C:\> Remove-CsTeamsUpgradePolicy -Identity Site:Redmond1
3437
```
@@ -37,11 +40,9 @@ This removes the TeamsUpgradePolicy for site named Redmond1.
3740

3841
## PARAMETERS
3942

40-
41-
42-
4343
### -Identity
44-
The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:" where is the name of the site. To specfy a policy that can be assigned as needed to any users, simply specify a name of your choosing.
44+
45+
The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:\<name>" where "\<name>" is the name of the site. To specify a policy that can be assigned as needed to any users, simply specify a name of your choosing.
4546

4647
```yaml
4748
Type: XdsIdentity
@@ -55,12 +56,10 @@ Accept pipeline input: True (ByPropertyName)
5556
Accept wildcard characters: False
5657
```
5758
58-
5959
## INPUTS
6060
6161
### Microsoft.Rtc.Management.Xds.XdsIdentity
6262
63-
6463
## OUTPUTS
6564
6665
### System.Object
@@ -71,16 +70,16 @@ Accept wildcard characters: False
7170
7271
[Migration and interoperability guidance for organizations using Teams together with Skype for Business](https://docs.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype)
7372
74-
[Grant-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Grant-CsTeamsUpgradePolicy.md)
73+
[Grant-CsTeamsUpgradePolicy](Grant-CsTeamsUpgradePolicy.md)
7574
76-
[Get-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Get-CsTeamsUpgradePolicy.md)
75+
[Get-CsTeamsUpgradePolicy](Get-CsTeamsUpgradePolicy.md)
7776
78-
[New-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/New-CsTeamsUpgradePolicy.md)
77+
[New-CsTeamsUpgradePolicy](New-CsTeamsUpgradePolicy.md)
7978
80-
[Remove-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Remove-CsTeamsUpgradePolicy.md)
79+
[Remove-CsTeamsUpgradePolicy](Remove-CsTeamsUpgradePolicy.md)
8180
82-
[Set-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Set-CsTeamsUpgradePolicy.md)
81+
[Set-CsTeamsUpgradePolicy](Set-CsTeamsUpgradePolicy.md)
8382
84-
[Get-CsTeamsUpgradeConfiguration](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Get-CsTeamsUpgradeConfiguration.md)
83+
[Get-CsTeamsUpgradeConfiguration](Get-CsTeamsUpgradeConfiguration.md)
8584
86-
[Set-CsTeamsUpgradeConfiguration](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Set-CsTeamsUpgradeConfiguration.md)
85+
[Set-CsTeamsUpgradeConfiguration](Set-CsTeamsUpgradeConfiguration.md)

skype/skype-ps/skype/Set-CsTeamsUpgradePolicy.md

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,39 @@ ms.reviewer:
1313
# Set-CsTeamsUpgradePolicy
1414

1515
## SYNOPSIS
16-
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables adminstrators to control whether users see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download the Teams app based on the value of TeamsUpgradeConfiguration.
16+
17+
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download the Teams app based on the value of TeamsUpgradeConfiguration.
1718

1819
## SYNTAX
1920

2021
### Identity (Default)
22+
2123
```
2224
Set-CsTeamsUpgradePolicy [-Tenant <Guid>] [-Description <String>] [-NotifySfbUsers <Boolean>]
2325
[[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2426
```
2527

2628
### Instance
29+
2730
```
2831
Set-CsTeamsUpgradePolicy [-Tenant <Guid>] [-Description <String>] [-NotifySfbUsers <Boolean>]
2932
[-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3033
```
3134

3235
## DESCRIPTION
33-
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables adminstrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The Set-CsTeamsUpgradePolicy lets the adminstrator modify an existing instance of TeamsUpgradePolicy for users homed in Skype for Business on-premises. Notifications are enabled by the boolean parameter NotifySfBUsers.
34-
35-
For users with Win32 versions of Skype for Business, if DownloadTeams=true in TeamsUpgradeConfiguration, users who are assigned an instance of TeamsUpgradePolicy with NotifySfBUsers=true will have Teams automatically downloaded in the background.
3636

37-
Notes:
38-
* Instances of TeamsUpgradePolicy created in on-premises will not apply to any users that are already homed online.
39-
* Office 365 already provides built-in instances of TeamsUpgradePolicy, so there is no New-CsTeamsUpgradePolicy cmdlet for the online environment by design.
37+
In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The Set-CsTeamsUpgradePolicy lets the administrator modify an existing instance of TeamsUpgradePolicy for users homed in Skype for Business on-premises. Notifications are enabled by the boolean parameter NotifySfBUsers.
38+
39+
For users with Win32 versions of Skype for Business, if DownloadTeams=true in TeamsUpgradeConfiguration, users who are assigned an instance of TeamsUpgradePolicy with NotifySfBUsers=true will have Teams automatically downloaded in the background.
4040

41+
Notes:
42+
* Instances of TeamsUpgradePolicy created in on-premises will not apply to any users that are already homed online.
43+
* Office 365 already provides built-in instances of TeamsUpgradePolicy, so there is no New-CsTeamsUpgradePolicy cmdlet for the online environment by design.
4144

4245
## EXAMPLES
4346

4447
### Example 1
48+
4549
```powershell
4650
PS C:\> Set-CsTeamsUpgradePolicy -Identity Site:Redmond1 -NotifySfbUsers $false
4751
```
@@ -50,9 +54,9 @@ This disables notifications for users in the Redmond1 site.
5054

5155
## PARAMETERS
5256

53-
5457
### -Description
55-
Free form text that can be used by administrators as desired.
58+
59+
Free form text that can be used by administrators as desired.
5660

5761
```yaml
5862
Type: String
@@ -66,10 +70,9 @@ Accept pipeline input: False
6670
Accept wildcard characters: False
6771
```
6872
69-
70-
7173
### -Identity
72-
The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:<name>" where <name> is the name of the site. To specfiy any other policy provide the name of that policy.
74+
75+
The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:\<name>" where \<name> is the name of the site. To specify any other policy provide the name of that policy.
7376
7477
```yaml
7578
Type: XdsIdentity
@@ -83,8 +86,8 @@ Accept pipeline input: False
8386
Accept wildcard characters: False
8487
```
8588
86-
8789
### -NotifySfbUsers
90+
8891
If true, users with this policy see a notification in their Skype for Business client indicating that Teams is coming soon.
8992
9093
```yaml
@@ -100,6 +103,7 @@ Accept wildcard characters: False
100103
```
101104
102105
### -Tenant
106+
103107
{{Fill Tenant Description}}
104108
105109
```yaml
@@ -114,16 +118,15 @@ Accept pipeline input: False
114118
Accept wildcard characters: False
115119
```
116120
117-
118121
### CommonParameters
122+
119123
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
120124
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
121125
122126
## INPUTS
123127
124128
### System.Management.Automation.PSObject
125129
126-
127130
## OUTPUTS
128131
129132
### System.Object
@@ -134,16 +137,16 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
134137
135138
[Migration and interoperability guidance for organizations using Teams together with Skype for Business](https://docs.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype)
136139
137-
[Grant-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Grant-CsTeamsUpgradePolicy.md)
140+
[Grant-CsTeamsUpgradePolicy](Grant-CsTeamsUpgradePolicy.md)
138141
139-
[Get-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Get-CsTeamsUpgradePolicy.md)
142+
[Get-CsTeamsUpgradePolicy](Get-CsTeamsUpgradePolicy.md)
140143
141-
[New-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/New-CsTeamsUpgradePolicy.md)
144+
[New-CsTeamsUpgradePolicy](New-CsTeamsUpgradePolicy.md)
142145
143-
[Remove-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Remove-CsTeamsUpgradePolicy.md)
146+
[Remove-CsTeamsUpgradePolicy](Remove-CsTeamsUpgradePolicy.md)
144147
145-
[Set-CsTeamsUpgradePolicy](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Set-CsTeamsUpgradePolicy.md)
148+
[Set-CsTeamsUpgradePolicy](Set-CsTeamsUpgradePolicy.md)
146149
147-
[Get-CsTeamsUpgradeConfiguration](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Get-CsTeamsUpgradeConfiguration.md)
150+
[Get-CsTeamsUpgradeConfiguration](Get-CsTeamsUpgradeConfiguration.md)
148151
149-
[Set-CsTeamsUpgradeConfiguration](https://github.com/MicrosoftDocs/office-docs-powershell/blob/master/skype/skype-ps/skype/Set-CsTeamsUpgradeConfiguration.md)
152+
[Set-CsTeamsUpgradeConfiguration](Set-CsTeamsUpgradeConfiguration.md)

0 commit comments

Comments
 (0)