Skip to content

Commit ca4a946

Browse files
authored
Merge branch 'master' into master
2 parents e9679a1 + e91d83d commit ca4a946

10 files changed

+121
-116
lines changed

skype/skype-ps/skype/Get-CsTeamsComplianceRecordingApplication.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ Get-CsTeamsComplianceRecordingApplication [-Tenant <System.Guid>] [-Filter <Stri
3232

3333
## DESCRIPTION
3434
Policy-based recording applications are used in automatic policy-based recording scenarios.
35-
When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams compliance recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity.
35+
When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to enforce compliance with the administrative set policy.
3636

37-
Instances of these applications are created using CsOnlineApplicationInstance cmdlets and are then associated with Teams compliance recording policies.
37+
Instances of these applications are created using CsOnlineApplicationInstance cmdlets and are then associated with Teams recording policies.
3838

39-
Note that application instances of policy-based recording applications must be associated with a Teams compliance recording policy using the CsTeamsComplianceRecordingApplication cmdlets.
40-
Once the association is done, the Identity of these application instances becomes \<Identity of the associated Teams compliance recording policy\>/\<ObjectId of the application instance\>.
41-
For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams compliance recording policy with Identity ContosoPartnerComplianceRecordingPolicy.
39+
Note that application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets.
40+
Once the association is done, the Identity of these application instances becomes \<Identity of the associated Teams recording policy\>/\<ObjectId of the application instance\>.
41+
For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy.
4242

43-
Note that if neither the Identity nor the Filter parameters are specified, then Get-CsTeamsComplianceRecordingApplication returns all application instances of policy-based recording applications that are associated with a Teams compliance recording policy.
43+
Note that if neither the Identity nor the Filter parameters are specified, then Get-CsTeamsComplianceRecordingApplication returns all application instances of policy-based recording applications that are associated with a Teams recording policy.
4444

4545
Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application.
4646
Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application.
@@ -53,7 +53,7 @@ Please also refer to the documentation of CsTeamsComplianceRecordingPolicy cmdle
5353
PS C:\> Get-CsTeamsComplianceRecordingApplication
5454
```
5555

56-
The command shown in Example 1 returns information for all the application instances of policy-based recording applications associated with Teams compliance recording policies.
56+
The command shown in Example 1 returns information for all the application instances of policy-based recording applications associated with Teams recording policies.
5757

5858
### Example 2
5959
```powershell
@@ -67,22 +67,22 @@ In Example 2, information is returned for a single application instance of a pol
6767
PS C:\> Get-CsTeamsComplianceRecordingApplication -Filter 'Tag:*'
6868
```
6969

70-
The command shown in Example 3 returns all the application instances associated with Teams compliance recording policies at the per-user scope.
70+
The command shown in Example 3 returns all the application instances associated with Teams recording policies at the per-user scope.
7171
To do this, the command uses the Filter parameter and the filter value "Tag:\*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "Tag:".
7272

7373
### Example 4
7474
```powershell
7575
PS C:\> Get-CsTeamsComplianceRecordingApplication -Filter 'Tag:ContosoPartnerComplianceRecordingPolicy*'
7676
```
7777

78-
The command shown in Example 4 returns all the application instances associated with Teams compliance recording policy with Identity ContosoPartnerComplianceRecordingPolicy.
78+
The command shown in Example 4 returns all the application instances associated with Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy.
7979
To do this, the command uses the Filter parameter and the filter value "Tag:ContosoPartnerComplianceRecordingPolicy\*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "Tag:ContosoPartnerComplianceRecordingPolicy".
8080

8181
## PARAMETERS
8282

8383
### -Filter
8484
Enables you to use wildcards when retrieving one or more application instances of policy-based recording applications.
85-
For example, to return all the application instances associated with Teams compliance recording policies at the per-user scope, use this syntax:
85+
For example, to return all the application instances associated with Teams recording policies at the per-user scope, use this syntax:
8686

8787
-Filter "Tag:\*"
8888

@@ -103,9 +103,9 @@ Unique identifier of the application instance of a policy-based recording applic
103103
104104
You cannot use wildcard characters when specifying the Identity.
105105
106-
Note that application instances of policy-based recording applications must be associated with a Teams compliance recording policy using the CsTeamsComplianceRecordingApplication cmdlets.
107-
Once the association is done, the Identity of these application instances becomes \<Identity of the associated Teams compliance recording policy\>/\<ObjectId of the application instance\>.
108-
For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams compliance recording policy with Identity ContosoPartnerComplianceRecordingPolicy.
106+
Note that application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets.
107+
Once the association is done, the Identity of these application instances becomes \<Identity of the associated Teams recording policy\>/\<ObjectId of the application instance\>.
108+
For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy.
109109
110110
```yaml
111111
Type: XdsIdentity
@@ -135,7 +135,7 @@ Accept wildcard characters: False
135135
```
136136
137137
### -Tenant
138-
Globally unique identifier (GUID) of the tenant account whose Teams compliance recording policies are being queried.
138+
Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried.
139139
For example:
140140
141141
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"

skype/skype-ps/skype/Get-CsTeamsComplianceRecordingPolicy.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,19 @@ Get-CsTeamsComplianceRecordingPolicy [-Tenant <System.Guid>] [-Filter <String>]
3131
```
3232

3333
## DESCRIPTION
34-
Teams compliance recording policies are used in automatic policy-based recording scenarios.
35-
When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams compliance recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity.
34+
Teams recording policies are used in automatic policy-based recording scenarios.
35+
When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity.
3636

37-
Note that if neither the Identity nor the Filter parameters are specified, then Get-CsTeamsComplianceRecordingPolicy returns all the Teams compliance recording policies configured for use in the tenant.
37+
Note that if neither the Identity nor the Filter parameters are specified, then Get-CsTeamsComplianceRecordingPolicy returns all the Teams recording policies configured for use in the tenant.
3838

39-
Note that simply assigning a Teams compliance recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in.
39+
Note that simply assigning a Teams recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in.
4040
Among other things, you will need to create an application instance of a policy-based recording application i.e. a bot in your tenant and will then need to assign an appropriate policy to the user.
4141

4242
Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application.
4343
Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application.
4444

45-
Assigning your Microsoft Teams users a Teams compliance recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in.
45+
Assigning your Microsoft Teams users a Teams recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in.
46+
The system will load the recording application and join it to appropriate calls and meetings in order for it to enforce compliance with the administrative set policy.
4647
Existing calls and meetings are unaffected.
4748

4849
## EXAMPLES
@@ -52,27 +53,27 @@ Existing calls and meetings are unaffected.
5253
PS C:\> Get-CsTeamsComplianceRecordingPolicy
5354
```
5455

55-
The command shown in Example 1 returns information for all the Teams compliance recording policies configured for use in the tenant.
56+
The command shown in Example 1 returns information for all the Teams recording policies configured for use in the tenant.
5657

5758
### Example 2
5859
```powershell
5960
PS C:\> Get-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy'
6061
```
6162

62-
In Example 2, information is returned for a single Teams compliance recording policy: the policy with the Identity ContosoPartnerComplianceRecordingPolicy.
63+
In Example 2, information is returned for a single Teams recording policy: the policy with the Identity ContosoPartnerComplianceRecordingPolicy.
6364

6465
### Example 3
6566
```powershell
6667
PS C:\> Get-CsTeamsComplianceRecordingPolicy -Filter 'Tag:*'
6768
```
6869

69-
The command shown in Example 3 returns information about all the Teams compliance recording policies configured at the per-user scope.
70+
The command shown in Example 3 returns information about all the Teams recording policies configured at the per-user scope.
7071
To do this, the command uses the Filter parameter and the filter value "Tag:\*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "Tag:".
7172

7273
## PARAMETERS
7374

7475
### -Filter
75-
Enables you to use wildcards when retrieving one or more Teams compliance recording policies.
76+
Enables you to use wildcards when retrieving one or more Teams recording policies.
7677
For example, to return all the policies configured at the per-user scope, use this syntax:
7778

7879
-Filter "Tag:\*"
@@ -90,7 +91,7 @@ Accept wildcard characters: True
9091
```
9192
9293
### -Identity
93-
Unique identifier of the Teams compliance recording policy to be retrieved.
94+
Unique identifier of the Teams recording policy to be retrieved.
9495
To return the global policy, use this syntax:
9596
9697
-Identity "Global"
@@ -129,7 +130,7 @@ Accept wildcard characters: False
129130
```
130131
131132
### -Tenant
132-
Globally unique identifier (GUID) of the tenant account whose Teams compliance recording policies are being queried.
133+
Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried.
133134
For example:
134135
135136
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"

skype/skype-ps/skype/Grant-CsTeamsComplianceRecordingPolicy.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.reviewer:
1313
# Grant-CsTeamsComplianceRecordingPolicy
1414

1515
## SYNOPSIS
16-
Assigns a per-user Teams compliance recording policy to one or more users.
16+
Assigns a per-user Teams recording policy to one or more users.
1717
This policy is used to govern automatic policy-based recording in your tenant.
1818
Automatic policy-based recording is only applicable to Microsoft Teams users.
1919

@@ -34,16 +34,17 @@ Grant-CsTeamsComplianceRecordingPolicy [-Global] [-PolicyName <String>]
3434
```
3535

3636
## DESCRIPTION
37-
Teams compliance recording policies are used in automatic policy-based recording scenarios.
38-
When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams compliance recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity.
37+
Teams recording policies are used in automatic policy-based recording scenarios.
38+
When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity.
3939

40-
Note that simply assigning a Teams compliance recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in.
40+
Note that simply assigning a Teams recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in.
4141
Among other things, you will need to create an application instance of a policy-based recording application i.e. a bot in your tenant and will then need to assign an appropriate policy to the user.
4242

4343
Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application.
4444
Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application.
4545

46-
Assigning your Microsoft Teams users a Teams compliance recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in.
46+
Assigning your Microsoft Teams users a Teams recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in.
47+
The system will load the recording application and join it to appropriate calls and meetings in order for it to enforce compliance with the administrative set policy.
4748
Existing calls and meetings are unaffected.
4849

4950
## EXAMPLES
@@ -53,20 +54,20 @@ Existing calls and meetings are unaffected.
5354
PS C:\> Grant-CsTeamsComplianceRecordingPolicy -Identity 'Ken Myer' -PolicyName 'ContosoPartnerComplianceRecordingPolicy'
5455
```
5556

56-
The command shown in Example 1 assigns the per-user Teams compliance recording policy ContosoPartnerComplianceRecordingPolicy to the user with the display name "Ken Myer".
57+
The command shown in Example 1 assigns the per-user Teams recording policy ContosoPartnerComplianceRecordingPolicy to the user with the display name "Ken Myer".
5758

5859
### Example 2
5960
```powershell
6061
PS C:\> Grant-CsTeamsComplianceRecordingPolicy -Identity 'Ken Myer' -PolicyName $null
6162
```
6263

63-
In Example 2, any per-user Teams compliance recording policy previously assigned to the user "Ken Myer" is revoked.
64-
As a result, the user will be managed by the global Teams compliance recording policy.
64+
In Example 2, any per-user Teams recording policy previously assigned to the user "Ken Myer" is revoked.
65+
As a result, the user will be managed by the global Teams recording policy.
6566

6667
## PARAMETERS
6768

6869
### -Identity
69-
Indicates the Identity of the user account to be assigned the per-user Teams compliance recording policy.
70+
Indicates the Identity of the user account to be assigned the per-user Teams recording policy.
7071
User Identities can be specified using one of the following formats:
7172
1) the user's SIP address;
7273
2) the user's user principal name (UPN);
@@ -120,7 +121,7 @@ Accept wildcard characters: False
120121
```
121122
122123
### -Tenant
123-
Globally unique identifier (GUID) of the tenant account whose Teams compliance recording policies are being queried.
124+
Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried.
124125
For example:
125126
126127
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"
@@ -161,7 +162,7 @@ Accept wildcard characters: False
161162
```
162163
163164
### -PassThru
164-
Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams compliance recording policy.
165+
Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy.
165166
By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline.
166167
167168
```yaml

0 commit comments

Comments
 (0)