You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TeamsUpgradePolicy allows administrators to manage the transition from Skype for Business to Teams. This cmdlet returns the set of instances of this policy. As an organization with Skype for Business starts to adopt Teams, administrators can manage client behavior for their end user using the concept of "mode", which defines where routing behavior (e.g in which client do chats and calls land). In the future, mode will also be used to define client behavior in Teams client in terms of what functionality will be available. TeamsUpradePolicy can be granted either on a per user basis or on a tenant-wide basis. In addition, prior to upgrading to TeamsOnly mode administrators can use TeamsUpgradePolicy to trigger notifications in the Skype for Business client to inform users of the pending upgrade.
29
+
TeamsUpgradePolicy allows administrators to manage the transition from Skype for Business to Teams. This cmdlet returns the set of instances of this policy. As an organization with Skype for Business starts to adopt Teams, administrators can manage client behavior for their end user using the concept of "mode", which defines where routing behavior (e.g in which client do chats and calls land). In the future, mode will also be used to define client behavior in Teams client in terms of what functionality will be available. TeamsUpgradePolicy can be granted either on a per user basis or on a tenant-wide basis. In addition, prior to upgrading to TeamsOnly mode, administrators can use TeamsUpgradePolicy to trigger notifications in the Skype for Business client to inform users of the pending upgrade.
30
30
31
31
NOTES:
32
-
All relevant instances of TeamsUpgradePolicy are built into the system, so there is no corresponding New cmdlet.
33
-
34
-
Instances with mode set to SfBWithTeamsCollab are not yet functional. From a routing perspective, this will behave like SfBOnly mode.
32
+
- Except for on-premise versions of Skype for Business Server, all relevant instances of TeamsUpgradePolicy are built into the system, so there is no corresponding New cmdlet.
33
+
- If you are using Skype for Business Server, there are no built-in instances and you'll need to create one. Also, only the NotifySfBUsers property is available. Mode is not present
34
+
- Instances with mode set to SfBWithTeamsCollab are not yet functional. From a routing perspective, this will behave like SfBOnly mode.
35
+
- Action property is redundnant with the combination of NotifySfBUsers and Mode. It will eventually be removed.
35
36
36
37
IMPORTANT: TeamsUpgradePolicy will replace TeamsInteropPolicy. Components that previously honored TeamsInteropPolicy are being updated to honor TeamsUpgradePolicy instead. During the transition, use of these 2 policies must be coordinated during the transition. After transition is complete, TeamsInteorpPolicy will be removed.
37
38
38
39
39
40
## EXAMPLES
40
41
41
-
### Example 1: List all instances of TeamsUpgradePolicy
42
+
### Example 1: List all instances of TeamsUpgradePolicy (Skype for Business Online)
42
43
```
43
44
PS C:\> Get-CsTeamsUpgradePolicy
44
45
@@ -121,6 +122,17 @@ Action : None
121
122
122
123
List the global instance of TeamsUpgradePolicy
123
124
125
+
### Example 3: List all instances of TeamsUpgradePolicy in an on-premises environment
126
+
```
127
+
PS C:\> Get-CsTeamsUpgradePolicy -Identity Global
128
+
129
+
Identity : Global
130
+
Description : Notifications are disabled
131
+
NotifySfbUsers : False
132
+
133
+
```
134
+
135
+
List all on-premises instances (if any) of TeamsUpgradePolicy
0 commit comments