Skip to content

Commit 139a8cf

Browse files
authored
Merge branch 'master' into chrisda
2 parents 1dea5c4 + a1af56e commit 139a8cf

File tree

6 files changed

+332
-2
lines changed

6 files changed

+332
-2
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/exchange-ps/exchange/powershell-v2-module/Connect-ExchangeOnline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This cmdlet allows you to create a remote PowerShell connection to your Exchange
4747

4848
### Example 1
4949
```powershell
50-
UserCredential = Get-Credential
50+
$UserCredential = Get-Credential
5151
Connect-ExchangeOnline -Credential $UserCredential
5252
```
5353

spmt/spmt-ps/spmt/Register-SPMTMigration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ Accept wildcard characters: False
295295
```
296296
297297
### -SPOCredential
298-
The credentials are used to connect the SharePoint Online tenant. If no credentials are passed in, use ADAL OAuth2.
298+
The credentials are used to connect the SharePoint Online tenant. If no credentials are passed in, use ADAL OAuth2. Important: If you are using multifactor authentication on your tenant, do not use the -SPOCredential parameter. The ADAL dialog will prompt for authentication and MFA.
299299
300300
```yaml
301301
Type: PSCredential

teams/teams-ps/teams/New-TeamsApp.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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+
# New-TeamsApp
9+
10+
## SYNOPSIS
11+
Creates a new app in the Teams tenant app store.
12+
13+
## SYNTAX
14+
15+
```
16+
New-TeamsApp -DistributionMethod <String> -Path <String> [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
Use a Teams app manifest zip file to upload an app to the tenant app store. DistributionMethod specifies that the app should be added to the organization.
21+
22+
## EXAMPLES
23+
24+
### Example 1
25+
```powershell
26+
PS C:\> New-TeamsApp -DistributionMethod organization -Path c:\Path\SampleApp.zip
27+
```
28+
29+
## PARAMETERS
30+
31+
### -DistributionMethod
32+
The type of app in Teams: global or organization. For LOB apps, use "organization"
33+
34+
```yaml
35+
Type: String
36+
Parameter Sets: (All)
37+
Aliases:
38+
39+
Required: True
40+
Position: Named
41+
Default value: None
42+
Accept pipeline input: False
43+
Accept wildcard characters: False
44+
```
45+
46+
### -Path
47+
The local path of the app manifest zip file, for use in New and Set
48+
49+
```yaml
50+
Type: String
51+
Parameter Sets: (All)
52+
Aliases:
53+
54+
Required: True
55+
Position: Named
56+
Default value: None
57+
Accept pipeline input: False
58+
Accept wildcard characters: False
59+
```
60+
61+
### CommonParameters
62+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
63+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
64+
65+
## INPUTS
66+
67+
### None
68+
69+
70+
## OUTPUTS
71+
72+
### System.Object
73+
74+
## NOTES
75+
76+
## RELATED LINKS
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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+
# Remove-TeamsApp
9+
10+
## SYNOPSIS
11+
Removes an app in the Teams tenant app store.
12+
13+
## SYNTAX
14+
15+
```
16+
Remove-TeamsApp -Id <String> [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
Removes an app in the Teams tenant app store.
21+
22+
## EXAMPLES
23+
24+
### Example 1
25+
```powershell
26+
PS C:\> Remove-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775
27+
```
28+
29+
## PARAMETERS
30+
31+
### -Id
32+
The app's ID generated by Teams (different from the external ID)
33+
34+
```yaml
35+
Type: String
36+
Parameter Sets: (All)
37+
Aliases:
38+
39+
Required: True
40+
Position: Named
41+
Default value: None
42+
Accept pipeline input: False
43+
Accept wildcard characters: False
44+
```
45+
46+
### CommonParameters
47+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
48+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
49+
50+
## INPUTS
51+
52+
### None
53+
54+
55+
## OUTPUTS
56+
57+
### System.Object
58+
59+
## NOTES
60+
61+
## RELATED LINKS

teams/teams-ps/teams/Set-TeamsApp.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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+
# Set-TeamsApp
9+
10+
## SYNOPSIS
11+
Updates an app in the Teams tenant app store.
12+
13+
## SYNTAX
14+
15+
```
16+
Set-TeamsApp -Id <String> -Path <String> [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
Use a Teams app manifest zip file to upload an app to the tenant app store.
21+
22+
## EXAMPLES
23+
24+
### Example 1
25+
```powershell
26+
PS C:\> Set-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -Path c:\Path\SampleApp.zip
27+
```
28+
29+
## PARAMETERS
30+
31+
### -Id
32+
The app's ID generated by Teams (different from the external ID)
33+
34+
```yaml
35+
Type: String
36+
Parameter Sets: (All)
37+
Aliases:
38+
39+
Required: True
40+
Position: Named
41+
Default value: None
42+
Accept pipeline input: False
43+
Accept wildcard characters: False
44+
```
45+
46+
### -Path
47+
The local path of the app manifest zip file, for use in New and Set
48+
49+
```yaml
50+
Type: String
51+
Parameter Sets: (All)
52+
Aliases:
53+
54+
Required: True
55+
Position: Named
56+
Default value: None
57+
Accept pipeline input: False
58+
Accept wildcard characters: False
59+
```
60+
61+
### CommonParameters
62+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
63+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
64+
65+
## INPUTS
66+
67+
### None
68+
69+
70+
## OUTPUTS
71+
72+
### System.Object
73+
74+
## NOTES
75+
76+
## RELATED LINKS

0 commit comments

Comments
 (0)