Skip to content

Commit 27b144f

Browse files
authored
Merge pull request MicrosoftDocs#4765 from MicrosoftDocs/master
Merges Master to Live. See commits for details.
2 parents acd97bd + 883955b commit 27b144f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

exchange/exchange-ps/exchange/client-access/Get-MailboxRegionalConfiguration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Get-MailboxRegionalConfiguration [-Identity] <MailboxIdParameter> [-DomainContro
2727
```
2828

2929
## DESCRIPTION
30+
To modify the regional settings of a mailbox, use the [Set-MailboxRegionalConfiguration](https://docs.microsoft.com/powershell/module/exchange/client-access/set-mailboxregionalconfiguration) cmdlet.
31+
3032
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/exchange-server/find-exchange-cmdlet-permissions).
3133

3234
## EXAMPLES

sharepoint/sharepoint-ps/sharepoint-pnp/New-PnPTerm.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,17 @@ New-PnPTerm -TermSet "Departments" -TermGroup "Corporate" -Name "Finance"
3434

3535
Creates a new taxonomy term named "Finance" in the termset Departments which is located in the "Corporate" termgroup
3636

37+
### ------------------EXAMPLE 2------------------
38+
```powershell
39+
$context = Get-PnPContext
40+
$term = New-PnPTerm -Name "Finance" -TermSet "Departments" -TermGroup "Corporate" -LCID 1033
41+
$createLabel = $term.CreateLabel("Finanzwesen", 1031, $true)
42+
$context.Load($term)
43+
Invoke-PnPQuery
44+
```
45+
46+
This example creates a new English taxonomy term named "Finance" in the termset "Departments" which is located in the "Corporate" termgroup and adds a German default label for the newly created English term by means of the **[CreateLabel](https://docs.microsoft.com/en-us/dotnet/api/microsoft.sharepoint.taxonomy.term.createlabel)** method.
47+
3748
## PARAMETERS
3849

3950
### -CustomProperties

0 commit comments

Comments
 (0)