Skip to content

Commit fd231b8

Browse files
authored
Merge pull request MicrosoftDocs#4377 from joeyglocke/patch-1
Create New-TeamsApp.md
2 parents eccef7c + 6e23ef3 commit fd231b8

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

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

0 commit comments

Comments
 (0)