Skip to content

Commit 58303a1

Browse files
authored
Merge pull request MicrosoftDocs#4383 from MicrosoftDocs/master
Merges Master to Live. See commits for details.
2 parents 94baae3 + 9843c8f commit 58303a1

File tree

446 files changed

+5420
-5059
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

446 files changed

+5420
-5059
lines changed

Get-TeamsApp.md

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
---
2+
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# Get-TeamsApp
9+
10+
## SYNOPSIS
11+
Returns app information from the Teams tenant app store.
12+
13+
## SYNTAX
14+
15+
```
16+
Get-TeamsApp [-Id <String>] [-ExternalId <String>] [-DisplayName <String>] [-DistributionMethod <String>]
17+
[<CommonParameters>]
18+
```
19+
20+
## DESCRIPTION
21+
Use any optional parameter to retrieve app information from the Teams tenant app store.
22+
23+
## EXAMPLES
24+
25+
### Example 1
26+
```powershell
27+
PS C:\> Get-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775
28+
```
29+
30+
### Example 2
31+
```powershell
32+
PS C:\> Get-TeamsApp -ExternalId b00080be-9b31-4927-9e3e-fa8024a7d98a -DisplayName <String>] [-DistributionMethod <String>]
33+
```
34+
35+
### Example 3
36+
```powershell
37+
PS C:\> Get-TeamsApp -DisplayName SampleApp -DistributionMethod organization
38+
```
39+
40+
## PARAMETERS
41+
42+
### -DisplayName
43+
Name of the app visible to users
44+
45+
```yaml
46+
Type: String
47+
Parameter Sets: (All)
48+
Aliases:
49+
50+
Required: False
51+
Position: Named
52+
Default value: None
53+
Accept pipeline input: False
54+
Accept wildcard characters: False
55+
```
56+
57+
### -DistributionMethod
58+
The type of app in Teams: global or organization. For LOB apps, use "organization"
59+
60+
```yaml
61+
Type: String
62+
Parameter Sets: (All)
63+
Aliases:
64+
65+
Required: False
66+
Position: Named
67+
Default value: None
68+
Accept pipeline input: False
69+
Accept wildcard characters: False
70+
```
71+
72+
### -ExternalId
73+
The external ID of the app, provided by the app developer and used by Azure Active Directory
74+
75+
```yaml
76+
Type: String
77+
Parameter Sets: (All)
78+
Aliases:
79+
80+
Required: False
81+
Position: Named
82+
Default value: None
83+
Accept pipeline input: False
84+
Accept wildcard characters: False
85+
```
86+
87+
### -Id
88+
The app's ID generated by Teams (different from the external ID)
89+
90+
```yaml
91+
Type: String
92+
Parameter Sets: (All)
93+
Aliases:
94+
95+
Required: False
96+
Position: Named
97+
Default value: None
98+
Accept pipeline input: False
99+
Accept wildcard characters: False
100+
```
101+
102+
### CommonParameters
103+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
104+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
105+
106+
## INPUTS
107+
108+
### None
109+
110+
111+
## OUTPUTS
112+
113+
### System.Object
114+
115+
## NOTES
116+
117+
## RELATED LINKS

exchange/docs-conceptual/exchange-online/exchange-online-powershell-v2/cmdlet-property-sets.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ms.date:
77
ms.audience: Admin
88
ms.topic: article
99
ms.service: exchange-online
10+
ms.reviewer: navgupta
1011
localization_priority: Priority
1112
ms.collection: Strat_EX_Admin
1213
ms.custom:

exchange/docs-conceptual/exchange-online/exchange-online-powershell-v2/exchange-online-powershell-v2.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ms.date:
77
ms.audience: Admin
88
ms.topic: article
99
ms.service: exchange-online
10+
ms.reviewer: navgupta
1011
localization_priority: Priority
1112
ms.collection: Strat_EX_Admin
1213
ms.custom:

exchange/docs-conceptual/exchange-server/exchange-cmdlet-syntax.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,9 @@ Parameter sets are groups of parameters that can be used with each other in the
4343

4444
Many cmdlets have only one parameter set, which means that all available parameters can be used with each other. Other cmdlets have several parameter sets, which indicates some parameters perform functions that are incompatible with other parameters. For example, suppose the following parameter sets are available on the **New-SystemMessage** cmdlet:
4545

46-
```PowerShell
47-
New-SystemMessage -DsnCode <EnhancedStatusCode> -Internal <$true | $false> -Language <CultureInfo> -Text <String> [-Confirm] [-DomainController <Fqdn>] [-WhatIf] <COMMON PARAMETERS>
46+
`New-SystemMessage -DsnCode <EnhancedStatusCode> -Internal <Boolean> -Language <CultureInfo> -Text <String> [-Confirm] [-DomainController <Fqdn>] [-WhatIf] <COMMON PARAMETERS>`
4847

49-
New-SystemMessage -Language <CultureInfo> -QuotaMessageType <WarningMailboxUnlimitedSize| WarningPublicFolderUnlimitedSize | WarningMailbox | WarningPublicFolder | ProhibitSendMailbox | ProhibitPostPublicFolder | ProhibitSendReceiveMailBox> -Text <String> [-Confirm] [-DomainController <Fqdn>] [-WhatIf] <COMMON PARAMETERS>
50-
```
48+
`New-SystemMessage -Language <CultureInfo> -QuotaMessageType <QuotaMessageType> -Text <String> [-Confirm] [-DomainController <Fqdn>] [-WhatIf] <COMMON PARAMETERS>`
5149

5250
This cmdlet has two separate parameter sets. Based on the entries, you can use these parameters together in the same command:
5351

exchange/exchange-ps/exchange/active-directory/Add-ADPermission.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Add-ADPermission [-Identity] <ADRawEntryIdParameter> -User <SecurityPrincipalIdP
2929
[-Deny]
3030
[-DomainController <Fqdn>]
3131
[-ExtendedRights <ExtendedRightIdParameter[]>]
32-
[-InheritanceType <None | All | Descendents | SelfAndChildren | Children>]
32+
[-InheritanceType <ActiveDirectorySecurityInheritance>]
3333
[-InheritedObjectType <ADSchemaObjectIdParameter>]
3434
[-Properties <ADSchemaObjectIdParameter[]>]
3535
[-WhatIf] [<CommonParameters>]
@@ -53,7 +53,7 @@ Add-ADPermission -Instance <ADAcePresentationObject>
5353
[-DomainController <Fqdn>]
5454
[-ExtendedRights <ExtendedRightIdParameter[]>]
5555
[[-Identity] <ADRawEntryIdParameter>]
56-
[-InheritanceType <None | All | Descendents | SelfAndChildren | Children>]
56+
[-InheritanceType <ActiveDirectorySecurityInheritance>]
5757
[-InheritedObjectType <ADSchemaObjectIdParameter>]
5858
[-Properties <ADSchemaObjectIdParameter[]>]
5959
[-User <SecurityPrincipalIdParameter>]
@@ -323,7 +323,7 @@ Accept wildcard characters: False
323323
The InheritanceType parameter specifies whether permissions are inherited.
324324
325325
```yaml
326-
Type: None | All | Descendents | SelfAndChildren | Children
326+
Type: ActiveDirectorySecurityInheritance
327327
Parameter Sets: AccessRights, Instance
328328
Aliases:
329329
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019

exchange/exchange-ps/exchange/active-directory/Remove-ADPermission.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Remove-ADPermission [-Identity] <ADRawEntryIdParameter> -User <SecurityPrincipal
2929
[-Deny]
3030
[-DomainController <Fqdn>]
3131
[-ExtendedRights <ExtendedRightIdParameter[]>]
32-
[-InheritanceType <None | All | Descendents | SelfAndChildren | Children>]
32+
[-InheritanceType <ActiveDirectorySecurityInheritance>]
3333
[-InheritedObjectType <ADSchemaObjectIdParameter>]
3434
[-Properties <ADSchemaObjectIdParameter[]>]
3535
[-WhatIf] [<CommonParameters>]
@@ -53,7 +53,7 @@ Remove-ADPermission -Instance <ADAcePresentationObject>
5353
[-DomainController <Fqdn>]
5454
[-ExtendedRights <ExtendedRightIdParameter[]>]
5555
[[-Identity] <ADRawEntryIdParameter>]
56-
[-InheritanceType <None | All | Descendents | SelfAndChildren | Children>]
56+
[-InheritanceType <ActiveDirectorySecurityInheritance>]
5757
[-InheritedObjectType <ADSchemaObjectIdParameter>]
5858
[-Properties <ADSchemaObjectIdParameter[]>]
5959
[-User <SecurityPrincipalIdParameter>]
@@ -305,7 +305,7 @@ Accept wildcard characters: False
305305
The InheritanceType parameter specifies whether permissions are inherited.
306306
307307
```yaml
308-
Type: None | All | Descendents | SelfAndChildren | Children
308+
Type: ActiveDirectorySecurityInheritance
309309
Parameter Sets: (All)
310310
Aliases:
311311
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019

exchange/exchange-ps/exchange/active-directory/Set-ADServerSettings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ Set-AdServerSettings -RunspaceServerSettings <RunspaceServerSettingsPresentation
2929

3030
### FullParams
3131
```
32-
Set-AdServerSettings [-ConfigurationDomainController <Fqdn>] [-PreferredGlobalCatalog <Fqdn>] [-RecipientViewRoot <String>] [-SetPreferredDomainControllers <MultiValuedProperty>] [-ViewEntireForest <$true | $false>]
32+
Set-AdServerSettings [-ConfigurationDomainController <Fqdn>] [-PreferredGlobalCatalog <Fqdn>] [-RecipientViewRoot <String>] [-SetPreferredDomainControllers <MultiValuedProperty>] [-ViewEntireForest <Boolean>]
3333
[-Confirm]
3434
[-WhatIf] [<CommonParameters>]
3535
```
3636

3737
### SingleDC
3838
```
39-
Set-AdServerSettings [[-PreferredServer] <Fqdn>] [-RecipientViewRoot <String>] [-ViewEntireForest <$true | $false>]
39+
Set-AdServerSettings [[-PreferredServer] <Fqdn>] [-RecipientViewRoot <String>] [-ViewEntireForest <Boolean>]
4040
[-Confirm]
4141
[-WhatIf] [<CommonParameters>]
4242
```
@@ -184,7 +184,7 @@ The ViewEntireForest parameter specifies whether all the objects in the forest a
184184
When you specify a value of $true, the value stored in the RecipientViewRoot parameter is removed and all of the recipients in the forest can be viewed and managed.
185185
186186
```yaml
187-
Type: $true | $false
187+
Type: Boolean
188188
Parameter Sets: SingleDC, FullParams
189189
Aliases:
190190
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019

exchange/exchange-ps/exchange/active-directory/Set-ADSite.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ For information about the parameter sets in the Syntax section below, see [Excha
2222

2323
```
2424
Set-AdSite [-Identity] <AdSiteIdParameter> [-Confirm] [-DomainController <Fqdn>]
25-
[-HubSiteEnabled <$true | $false>] [-PartnerId <Int32>]
26-
[-WhatIf] [-InboundMailEnabled <$true | $false>] [<CommonParameters>]
25+
[-HubSiteEnabled <Boolean>] [-PartnerId <Int32>]
26+
[-WhatIf] [-InboundMailEnabled <Boolean>] [<CommonParameters>]
2727
```
2828

2929
## DESCRIPTION
@@ -96,7 +96,7 @@ Accept wildcard characters: False
9696
The HubSiteEnabled parameter specifies whether this site acts as a hub site. The default value is $false.
9797
9898
```yaml
99-
Type: $true | $false
99+
Type: Boolean
100100
Parameter Sets: (All)
101101
Aliases:
102102
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
@@ -146,7 +146,7 @@ The InboundMailEnabled parameter enables or disables receiving incoming messages
146146
Valid input for this parameter is $true or $false. The default value is $true. If you set the value to $false, none of the Exchange servers in the Active Directory site will be able to receive incoming messages.
147147
148148
```yaml
149-
Type: $true | $false
149+
Type: Boolean
150150
Parameter Sets: (All)
151151
Aliases:
152152
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019

exchange/exchange-ps/exchange/advanced-threat-protection/Get-AntiPhishRule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For information about the parameter sets in the Syntax section below, see [Excha
2121
## SYNTAX
2222

2323
```
24-
Get-AntiPhishRule [[-Identity] <RuleIdParameter>] [-State <Enabled | Disabled>] [<CommonParameters>]
24+
Get-AntiPhishRule [[-Identity] <RuleIdParameter>] [-State <RuleState>] [<CommonParameters>]
2525
```
2626

2727
## DESCRIPTION
@@ -71,7 +71,7 @@ Accept wildcard characters: False
7171
The State parameter filters the results by the state of the rule. Valid values are Enabled and Disabled.
7272
7373
```yaml
74-
Type: Enabled | Disabled
74+
Type: RuleState
7575
Parameter Sets: (All)
7676
Aliases:
7777
Applicable: Exchange Online, Exchange Online Protection

exchange/exchange-ps/exchange/advanced-threat-protection/Get-SafeAttachmentRule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For information about the parameter sets in the Syntax section below, see [Excha
2121
## SYNTAX
2222

2323
```
24-
Get-SafeAttachmentRule [[-Identity] <RuleIdParameter>] [-State <Enabled | Disabled>] [<CommonParameters>]
24+
Get-SafeAttachmentRule [[-Identity] <RuleIdParameter>] [-State <RuleState>] [<CommonParameters>]
2525
```
2626

2727
## DESCRIPTION
@@ -75,7 +75,7 @@ Accept wildcard characters: False
7575
The State parameter filters the results by the state of the rule. Valid values are Enabled and Disabled.
7676
7777
```yaml
78-
Type: Enabled | Disabled
78+
Type: RuleState
7979
Parameter Sets: (All)
8080
Aliases:
8181
Applicable: Exchange Online, Exchange Online Protection

0 commit comments

Comments
 (0)