Skip to content

Commit e022efc

Browse files
committed
Merge branch 'master' into chrisda
2 parents 056ab1a + 7e8dd06 commit e022efc

File tree

8 files changed

+612
-21
lines changed

8 files changed

+612
-21
lines changed

exchange/exchange-ps/exchange/Set-Label.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Accept wildcard characters: False
113113
```
114114
115115
### -AdvancedSettings
116-
The AdvancedSettings parameter enables client-specific features and capabilities on the sensitivity label. The settings that you configure with this parameter only affect apps that are designed for the setting. For more information, see [How to configure advanced settings for the client by using Security & Compliance Center PowerShell](https://docs.microsoft.com/azure/information-protection/rms-client/clientv2-admin-guide-customizations#how-to-configure-advanced-settings-for-the-client-by-using-office-365-security--compliance-center-powershell).
116+
The AdvancedSettings parameter enables client-specific features and capabilities for a sensitivity label. The settings that you configure with this parameter are supported only by the Azure Information Protection unified labeling client and not by Office apps that support built-in labeling. For more information how to configure these advanced settings, see [Custom configurations for the Azure Information Protection unified labeling client](https://docs.microsoft.com/azure/information-protection/rms-client/clientv2-admin-guide-customizations).
117117
118118
```yaml
119119
Type: PswsHashtable

sharepoint/docs-conceptual/sharepoint-online/connect-sharepoint-online.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,28 @@ ms.service: sharepoint-powershell
55

66
# Get started with SharePoint Online Management Shell #
77

8-
To get started using PowerShell to manage SharePoint Online, you need to install the latest SharePoint Online Management Shell is installed and connect to SharePoint Online.
8+
To get started using PowerShell to manage SharePoint Online, you need to install the SharePoint Online Management Shell and connect to SharePoint Online.
99

1010
Install the SharePoint Online Management Shell by downloading and running the [SharePoint Online Management Shell](https://go.microsoft.com/fwlink/p/?LinkId=255251) or installing the module from the [PowerShell Gallery](https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/). Once installed, the module is available for use, and you do not need to install it again until you need features introduced in a later version. For example, you may need to install a new version for TLS 1.2 negotiation after October 2018.
1111

12-
First you can check if you have already installed SharePoint Online Management Shell by running the following command in administrative mode in PowerShell:
12+
First you can check if you have already installed the SharePoint Online Management Shell by running the following command in administrative mode in PowerShell:
1313

1414
```powershell
1515
Get-Module -Name Microsoft.Online.SharePoint.PowerShell -ListAvailable | Select Name,Version
1616
```
1717

18-
If your operating system is using PowerShell 5 or newer, you can install the SharePoint Online Management Shell also by running the following command in administrative mode:
18+
If your operating system is using PowerShell 5 or newer, you can also install the SharePoint Online Management Shell by running the following command in administrative mode:
1919

2020
```powershell
2121
Install-Module -Name Microsoft.Online.SharePoint.PowerShell
2222
```
2323

24+
If you don't have administrative privileges on the system, you can install the SharePoint Online Management Shell only for the current user by running the following command:
25+
26+
```powershell
27+
Install-Module -Name Microsoft.Online.SharePoint.PowerShell -Scope CurrentUser
28+
```
29+
2430
To ensure you have all available cmdlets, you should always make sure the module is up to date. You can update the SharePoint Online Management Shell by running the following command in administrative mode:
2531

2632
```powershell
@@ -31,28 +37,24 @@ To open the SharePoint Online Management Shell command prompt, from the **Start*
3137

3238
> [!VIDEO https://www.youtube.com/embed/TMzHAWEQjlk]
3339
34-
## To connect with a user name and password ##
40+
## To connect with a user name and password
3541

36-
1. Fill in the values for the **$adminUPN** and **$orgName** variables (replacing all the text between the quotes, including the < and > characters), and then run the following commands at the SharePoint Online Management Shell command prompt:
42+
1. Run the following command at the SharePoint Online Management Shell command prompt:
3743

3844
```powershell
39-
$adminUPN="<the full email address of a SharePoint administrator account, example: [email protected]>"
40-
$orgName="<name of your Office 365 organization, example: contosotoycompany>"
41-
$userCredential = Get-Credential -UserName $adminUPN -Message "Type the password."
42-
Connect-SPOService -Url https://$orgName-admin.sharepoint.com -Credential $userCredential
45+
Connect-SPOService -Url https://contoso-admin.sharepoint.com -Credential [email protected]
4346
```
4447

4548
2. When prompted with the Windows PowerShell credential request dialog box, type the password for the SharePoint admin account.
4649

4750
To assign a user the SharePoint admin role, see [Assign admin roles](https://docs.microsoft.com/microsoft-365/admin/add-users/assign-admin-roles) or [Assign admin roles to Microsoft 365 user accounts with PowerShell](https://docs.microsoft.com/microsoft-365/enterprise/assign-roles-to-user-accounts-with-microsoft-365-powershell).
4851

49-
## To connect with multifactor authentication (MFA) ##
52+
## To connect with multifactor authentication (MFA)
5053

51-
1. Fill in the value for the **$orgName** variable (replacing all the text between the quotes, including the < and > characters), and then run the following commands at the SharePoint Online Management Shell command prompt:
54+
1. Run the following command at the SharePoint Online Management Shell command prompt:
5255

5356
```powershell
54-
$orgName="<name of your Office 365 organization, example: contosotoycompany>"
55-
Connect-SPOService -Url https://$orgName-admin.sharepoint.com
57+
Connect-SPOService -Url https://contoso-admin.sharepoint.com
5658
```
5759

5860
2. When prompted with the **Microsoft SharePoint Online Management Shell** dialog box, type the account name and password for a SharePoint administrator account, and then click **Sign in**.
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.dll-help.xml
3+
online version: https://docs.microsoft.com/powershell/module/skype/get-csteamsfeedbackpolicy
4+
applicable: Skype for Business Online
5+
title: Get-CsTeamsFeedbackPolicy
6+
schema: 2.0.0
7+
manager: bulenteg
8+
ms.author: tomkau
9+
author: tomkau
10+
ms.reviewer:
11+
---
12+
13+
# Get-CsTeamsFeedbackPolicy
14+
15+
## SYNOPSIS
16+
17+
Use this cmdlet to retrieve the current Teams Feedback policies in the organization.
18+
19+
## SYNTAX
20+
21+
```
22+
Get-CsTeamsFeedbackPolicy [-LocalStore] [[-Identity] <Object>] [-Tenant <Object>] [-Filter <Object>]
23+
```
24+
25+
## DESCRIPTION
26+
Retrieves the current Teams Feedback policies in the organization.
27+
28+
## EXAMPLES
29+
30+
### Example 1
31+
```powershell
32+
PS C:\> Get-CsTeamsFeedbackPolicy
33+
```
34+
35+
In this example, we retrieve all the existing Teams feedback policies in the organization.
36+
37+
## PARAMETERS
38+
39+
### -Filter
40+
Internal Microsoft use
41+
42+
```yaml
43+
Type: Object
44+
Parameter Sets: (All)
45+
Aliases:
46+
47+
Required: False
48+
Position: Named
49+
Default value: None
50+
Accept pipeline input: False
51+
Accept wildcard characters: False
52+
```
53+
54+
### -Identity
55+
The unique identifier of the policy.
56+
57+
```yaml
58+
Type: Object
59+
Parameter Sets: (All)
60+
Aliases:
61+
62+
Required: False
63+
Position: 1
64+
Default value: None
65+
Accept pipeline input: False
66+
Accept wildcard characters: False
67+
```
68+
69+
### -LocalStore
70+
Internal Microsoft use.
71+
72+
```yaml
73+
Type: SwitchParameter
74+
Parameter Sets: (All)
75+
Aliases:
76+
77+
Required: False
78+
Position: Named
79+
Default value: None
80+
Accept pipeline input: False
81+
Accept wildcard characters: False
82+
```
83+
84+
### -Tenant
85+
Internal Microsoft use.
86+
87+
```yaml
88+
Type: Object
89+
Parameter Sets: (All)
90+
Aliases:
91+
92+
Required: False
93+
Position: Named
94+
Default value: None
95+
Accept pipeline input: False
96+
Accept wildcard characters: False
97+
```
98+
99+
## INPUTS
100+
101+
### None
102+
103+
## OUTPUTS
104+
105+
### System.Object
106+
## NOTES
107+
108+
## RELATED LINKS
Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.dll-help.xml
3+
online version: https://docs.microsoft.com/powershell/module/skype/grant-csteamsfeedbackpolicy
4+
applicable: Skype for Business Online
5+
title: Grant-CsTeamsFeedbackPolicy
6+
schema: 2.0.0
7+
manager: bulenteg
8+
ms.author: tomkau
9+
author: tomkau
10+
ms.reviewer:
11+
---
12+
13+
# Grant-CsTeamsFeedbackPolicy
14+
15+
## SYNOPSIS
16+
17+
Use this cmdlet to grant a specific Teams Feedback policy to a user.
18+
19+
## SYNTAX
20+
21+
```
22+
Grant-CsTeamsFeedbackPolicy [-PassThru] [-Confirm] [[-PolicyName] <Object>] [[-Identity] <Object>] [-Global]
23+
[-Tenant <Object>] [-DomainController <Object>] [-WhatIf]
24+
```
25+
26+
## DESCRIPTION
27+
Grants a specific Teams Feedback policy to a user.
28+
29+
## EXAMPLES
30+
31+
### Example 1
32+
```powershell
33+
PS C:\> Grant-CsTeamsFeedbackPolicy -PolicyName "New Hire Feedback Policy" -Identity [email protected]
34+
```
35+
36+
In this example, the policy "New Hire Feedback Policy" is granted to the user [email protected].
37+
38+
## PARAMETERS
39+
40+
### -Confirm
41+
Prompts you for confirmation before running the cmdlet.
42+
43+
```yaml
44+
Type: SwitchParameter
45+
Parameter Sets: (All)
46+
Aliases: cf
47+
48+
Required: False
49+
Position: Named
50+
Default value: None
51+
Accept pipeline input: False
52+
Accept wildcard characters: False
53+
```
54+
55+
### -DomainController
56+
Internal Microsoft use.
57+
58+
```yaml
59+
Type: Object
60+
Parameter Sets: (All)
61+
Aliases:
62+
63+
Required: False
64+
Position: Named
65+
Default value: None
66+
Accept pipeline input: False
67+
Accept wildcard characters: False
68+
```
69+
70+
### -Global
71+
Use this parameter to make the specified policy in -PolicyName the new effective global policy.
72+
73+
```yaml
74+
Type: SwitchParameter
75+
Parameter Sets: (All)
76+
Aliases:
77+
78+
Required: False
79+
Position: Named
80+
Default value: None
81+
Accept pipeline input: False
82+
Accept wildcard characters: False
83+
```
84+
85+
### -Identity
86+
Indicates the identity of the user account the policy should be assigned to.
87+
88+
```yaml
89+
Type: Object
90+
Parameter Sets: (All)
91+
Aliases:
92+
93+
Required: False
94+
Position: 0
95+
Default value: None
96+
Accept pipeline input: False
97+
Accept wildcard characters: False
98+
```
99+
100+
### -PassThru
101+
Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run.
102+
103+
```yaml
104+
Type: SwitchParameter
105+
Parameter Sets: (All)
106+
Aliases:
107+
108+
Required: False
109+
Position: Named
110+
Default value: None
111+
Accept pipeline input: False
112+
Accept wildcard characters: False
113+
```
114+
115+
### -PolicyName
116+
The identity of the policy to be granted.
117+
118+
```yaml
119+
Type: Object
120+
Parameter Sets: (All)
121+
Aliases:
122+
123+
Required: False
124+
Position: 1
125+
Default value: None
126+
Accept pipeline input: False
127+
Accept wildcard characters: False
128+
```
129+
130+
### -Tenant
131+
Internal Microsoft use.
132+
133+
```yaml
134+
Type: Object
135+
Parameter Sets: (All)
136+
Aliases:
137+
138+
Required: False
139+
Position: Named
140+
Default value: None
141+
Accept pipeline input: False
142+
Accept wildcard characters: False
143+
```
144+
145+
### -WhatIf
146+
Shows what would happen if the cmdlet runs.
147+
The cmdlet is not run.
148+
149+
```yaml
150+
Type: SwitchParameter
151+
Parameter Sets: (All)
152+
Aliases: wi
153+
154+
Required: False
155+
Position: Named
156+
Default value: None
157+
Accept pipeline input: False
158+
Accept wildcard characters: False
159+
```
160+
161+
## INPUTS
162+
163+
### Microsoft.Rtc.Management.AD.UserIdParameter
164+
165+
## OUTPUTS
166+
167+
### System.Object
168+
## NOTES
169+
170+
## RELATED LINKS

0 commit comments

Comments
 (0)