Skip to content

Commit eccef7c

Browse files
authored
Merge pull request MicrosoftDocs#4378 from joeyglocke/patch-2
Create Set-TeamsApp.md
2 parents 70853d7 + 13f3e1a commit eccef7c

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

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)