Skip to content

Commit 759d9a8

Browse files
authored
Merge branch 'main' into docs-editor/Set-CsTeamsMeetingPolicy-1713895276
2 parents d3505d9 + 7fc472e commit 759d9a8

File tree

6 files changed

+207
-5
lines changed

6 files changed

+207
-5
lines changed

skype/skype-ps/skype/Move-CsUser.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@ ms.reviewer:
1616

1717
Moves one or more user accounts enabled for Skype for Business Server to TeamsOnly (or the reverse). This cmdlet also can be used to move on-premises users from one pool to another.
1818

19+
**PRE-REQUISITES steps for running Move-CsUser**
20+
- Install or update the Microsoft Teams PowerShell module to version 6.2.1 or later
21+
1922
**PRE-REQUISITES steps for** [Office 365 operated by 21Vianet](/microsoft-365/admin/services-in-china/services-in-china?view=o365-21vianet)
20-
- Install or update the Microsoft Teams PowerShell module to version 5.2.0 or later
23+
- Install or update the Microsoft Teams PowerShell module to version 6.2.1 or later
2124
- Run Set-TeamsEnvironmentConfig -TeamsEnvironmentName TeamsChina
2225

2326
For more information, see [Set-TeamsEnvironmentConfig](/powershell/module/teams/set-teamsenvironmentconfig).
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
external help file: MicrosoftTeams-help.xml
3+
Module Name: MicrosoftTeams
4+
applicable: Microsoft Teams
5+
online version:
6+
title: Get-CsSdgBulkSignInRequestStatus
7+
schema: 2.0.0
8+
---
9+
10+
# Get-CsSdgBulkSignInRequestStatus
11+
12+
## SYNOPSIS
13+
Get the status of an active bulk sign in request.
14+
15+
## SYNTAX
16+
17+
```
18+
Get-CsSdgBulkSignInRequestStatus -Batchid <String> [<CommonParameters>]
19+
```
20+
21+
## DESCRIPTION
22+
Use this cmdlet to get granular device level details of a bulk sign in request. Status is shown for every username and hardware ID pair included in the device details CSV used as input to the bulk sign in request.
23+
24+
## EXAMPLES
25+
26+
### Example 1
27+
```powershell
28+
$newBatchResponse = New-CsSdgBulkSignInRequest  -DeviceDetailsFilePath .\Example.csv  -Region APAC
29+
$newBatchResponse.BatchId
30+
$getBatchStatusResponse = Get-CsSdgBulkSignInRequestStatus -Batchid $newBatchResponse.BatchId
31+
$getBatchStatusResponse | ft
32+
$getBatchStatusResponse.BatchItem
33+
```
34+
35+
This example shows how to read the batch status response into a new variable and print the status for every batch item.
36+
37+
## PARAMETERS
38+
39+
### -Batchid
40+
Batch ID is the response returned by the `New-CsSdgBulkSignInRequest` cmdlet. It is used as input for querying the status of the batch through `Get-CsSdgBulkSignInRequestStatus` cmdlet.
41+
42+
```yaml
43+
Type: String
44+
Parameter Sets: (All)
45+
Aliases:
46+
Required: True
47+
Position: Named
48+
Default value: None
49+
Accept pipeline input: False
50+
Accept wildcard characters: False
51+
```
52+
53+
### CommonParameters
54+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
55+
56+
## INPUTS
57+
58+
### None
59+
60+
## OUTPUTS
61+
62+
### Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestStatusResult
63+
64+
## NOTES
65+
66+
## RELATED LINKS
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
---
2+
external help file: MicrosoftTeams-help.xml
3+
Module Name: MicrosoftTeams
4+
online version: https://learn.microsoft.com/powershell/module/teams/grant-csteamsfilespolicy
5+
schema: 2.0.0
6+
---
7+
8+
# Grant-CsTeamsFilesPolicy
9+
10+
## SYNOPSIS
11+
Assigns an online teams files policy to a user account, to a group of users, or set the tenant Global instance.
12+
Online teams files policies manage usages of files-related features.
13+
14+
## SYNTAX
15+
16+
### GrantToTenant (Default)
17+
```
18+
Grant-CsTeamsFilesPolicy [-Global] [[-PolicyName] <String>]
19+
20+
```
21+
22+
### GrantToGroup
23+
```
24+
Grant-CsTeamsFilesPolicy [[-PolicyName] <String>] [-Group] <String>
25+
```
26+
27+
### Identity
28+
```
29+
Grant-CsTeamsFilesPolicy [[-PolicyName] <String>] [-Identity <String>]
30+
```
31+
32+
## DESCRIPTION
33+
This cmdlet assigns an existing user-specific online teams files policy to a user, a group of users, or the Global policy instance.
34+
35+
## EXAMPLES
36+
37+
### Example 1
38+
```
39+
Grant-CsTeamsFilesPolicy -Identity "[email protected]" -PolicyName NativeEntrypointDisabled
40+
```
41+
42+
The command shown in Example 1 assigns the per-user online teams files policy NativeEntrypointDisabled to a single user [email protected].
43+
44+
### Example 2
45+
```
46+
Grant-CsTeamsFilesPolicy -Group [email protected] -PolicyName NativeEntrypointDisabled
47+
```
48+
49+
The command shown in Example 2 assigns the online teams files policy NativeEntrypointDisabled to the members of the group [email protected].
50+
51+
## PARAMETERS
52+
53+
### -Global
54+
Sets the parameters of the Global policy instance to the values in the specified policy instance.
55+
56+
```yaml
57+
Type: SwitchParameter
58+
Parameter Sets: GrantToTenant
59+
Aliases:
60+
61+
Required: False
62+
Position: Named
63+
Default value: None
64+
Accept pipeline input: False
65+
Accept wildcard characters: False
66+
```
67+
68+
### -PolicyName
69+
A unique identifier(name) of the policy.
70+
71+
```yaml
72+
Type: String
73+
Parameter Sets: (All)
74+
Aliases:
75+
76+
Required: False
77+
Position: 1
78+
Default value: None
79+
Accept pipeline input: False
80+
Accept wildcard characters: False
81+
```
82+
83+
### -Group
84+
Specifies the group used for the group policy assignment.
85+
86+
```yaml
87+
Type: String
88+
Parameter Sets: GrantToGroup
89+
Aliases:
90+
91+
Required: True
92+
Position: 0
93+
Default value: None
94+
Accept pipeline input: False
95+
Accept wildcard characters: False
96+
```
97+
98+
### -Identity
99+
The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP address or an Object ID.
100+
101+
```yaml
102+
Type: String
103+
Parameter Sets: Identity
104+
Aliases:
105+
106+
Required: False
107+
Position: Named
108+
Default value: None
109+
Accept pipeline input: True (ByPropertyName, ByValue)
110+
Accept wildcard characters: False
111+
```
112+
113+
## INPUTS
114+
115+
## OUTPUTS
116+
117+
## NOTES
118+
The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later.
119+
120+
## RELATED LINKS
121+
122+
[Get-CsTeamsFilesPolicy]()
123+
124+
[Set-CsTeamsFilesPolicy]()
125+
126+
[New-CsTeamsFilesPolicy]()
127+
128+
[Remove-CsTeamsFilesPolicy]()
129+

teams/teams-ps/teams/New-CsTeamsEmergencyCallingPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Accept wildcard characters: False
155155
```
156156
157157
### -NotificationGroup
158-
NotificationGroup is an email list of users and groups to be notified of an emergency call via Teams chat. Individual users or groups are separated by ";", for instance, "[email protected];[email protected]". A maximum of 10 e-mail addresses can be specified and a maximum of 50 users in total can be notified.
158+
NotificationGroup is an email list of users and groups to be notified of an emergency call via Teams chat. Individual users or groups are separated by ";", for instance, "[email protected];[email protected]". A maximum of 10 e-mail addresses can be specified and a maximum of 50 users in total can be notified. Both UPN and SMTP address are accepted when adding users directly.
159159
160160
```yaml
161161
Type: String

teams/teams-ps/teams/Set-CsTeamsEmergencyCallingPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Accept wildcard characters: False
149149
```
150150
151151
### -NotificationGroup
152-
NotificationGroup is an email list of users and groups to be notified of an emergency call via Teams chat. Individual users or groups are separated by ";", for instance, "[email protected];[email protected]". A maximum of 10 e-mail addresses can be specified and a maximum of 50 users in total can be notified.
152+
NotificationGroup is an email list of users and groups to be notified of an emergency call via Teams chat. Individual users or groups are separated by ";", for instance, "[email protected];[email protected]". A maximum of 10 e-mail addresses can be specified and a maximum of 50 users in total can be notified. Both UPN and SMTP address are accepted when adding users directly.
153153
154154
```yaml
155155
Type: String

teams/teams-ps/teams/Set-CsTeamsMeetingPolicy.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,10 +1202,14 @@ Accept wildcard characters: False
12021202
```
12031203

12041204
### -SpeakerAttributionMode
1205+
Determines if users are identified in transcriptions and if they can change the value of the _Automatically identify me in meeting captions and transcripts_ setting.
1206+
12051207
Possible values:
12061208

1207-
- EnabledUserOverride
1208-
- Disabled
1209+
- **Enabled**: Speakers are identified in transcription.
1210+
- **EnabledUserOverride**: Speakers are identified in transcription. If enabled, users can override this setting and choose not to be identified in their Teams profile settings.
1211+
- **DisabledUserOverride**: Speakers are not identified in transcription. If enabled, users can override this setting and choose to be identified in their Teams profile settings.
1212+
- **Disabled**: Speakers are not identified in transcription.
12091213

12101214
```yaml
12111215
Type: String

0 commit comments

Comments
 (0)