Skip to content

Commit 350b976

Browse files
Get-M365TeamsApp document
1 parent 35371a4 commit 350b976

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
---
2+
external help file: Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
online version: https://docs.microsoft.com/powershell/module/teams/Get-M365TeamsApp
5+
applicable: Microsoft Teams
6+
title: Get-M365TeamsApp
7+
author: satishtimiri
8+
ms.author: satishtimiri
9+
manager: rahulrgupta
10+
schema: 2.0.0
11+
---
12+
13+
# Get-M365TeamsApp
14+
15+
## SYNOPSIS
16+
17+
This cmdlet returns app availability and state for M365 Teams app.
18+
19+
## SYNTAX
20+
21+
```
22+
Get-M365TeamsApp -Id <String> [<CommonParameters>]
23+
```
24+
25+
## DESCRIPTION
26+
Get-M365TeamsApps retrieves information about M365 Teams app. This includes app state, app availability, user who updated app availability and the associated timestamp.
27+
28+
## EXAMPLES
29+
30+
### Example 1
31+
```powershell
32+
PS C:\> Get-M365TeamsApp -Id b782e2e8-9682-4898-b211-a304714f4f6b
33+
```
34+
35+
Provides information about b782e2e8-9682-4898-b211-a304714f4f6b app which includes app state, app availability, user who updated app availability and the associated timestamp.
36+
37+
## PARAMETERS
38+
39+
### -Id
40+
41+
Application ID of M365 Teams app
42+
43+
```yaml
44+
Type: String
45+
Parameter Sets: (All)
46+
Aliases:
47+
48+
Required: True
49+
Position: Named
50+
Default value: None
51+
Accept pipeline input: False
52+
Accept wildcard characters: False
53+
```
54+
55+
### CommonParameters
56+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
57+
58+
## INPUTS
59+
60+
### None
61+
62+
## OUTPUTS
63+
64+
### System.Object
65+
- ID – Application ID of M365 Teams app.
66+
67+
- IsBlocked – The state of the app in the tenant. Values are: Blocked or Unblocked.
68+
69+
- AvailableTo - Provides available to properties for the app.
70+
71+
- Properties of AvailableTo:
72+
- AssignmentType – App availability type. Values are: Everyone, UsersandGroups, Noone
73+
- Users:
74+
- List of all the users for whom the app is enabled:
75+
-Id – GUID of UserIDs
76+
-AssignedBy – UserID of last user who updated the app AvailableTo value
77+
-LastUpdatedTimeStamp – Time and date when the app AvailableTo value was last updated
78+
-Groups:
79+
- List of all the groups for whom the app is enabled:
80+
-Id – GUID of GroupIDs
81+
-AssignedBy – UserID of last user who updated the app available to value
82+
-LastUpdatedTimeStamp – Time and date when the app AvailableTo value was last updated
83+
## NOTES
84+
85+
## RELATED LINKS
86+
87+
[Get-ALLM365TeamsApps](Get-ALLM365TeamsApps.md)
88+
89+
[Update-M365TeamsApp](Update-M365TeamsApp.md)

0 commit comments

Comments
 (0)