Skip to content

Commit 9fc676a

Browse files
authored
Merge pull request #12330 from MicrosoftDocs/main
Publish main to live, Monday 10:30 AM PST, 10/28
2 parents 35aa042 + fd945d0 commit 9fc676a

File tree

2 files changed

+48
-2
lines changed

2 files changed

+48
-2
lines changed

teams/teams-ps/teams/Get-ALLM365TeamsApps.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ online version: https://docs.microsoft.com/powershell/module/teams/Get-ALLM365Te
55
applicable: Microsoft Teams
66
title: Get-ALLM365TeamsApps
77
author: lkueter
8-
ms.author: satishtimiri
8+
ms.author: sribagchi
99
manager: rahulrgupta
1010
ms.date: 04/24/2024
1111
schema: 2.0.0
@@ -45,6 +45,14 @@ PS C:\> Get-AllM365TeamsApps | Select-Object -Property Id, IsBlocked, AvailableT
4545

4646
Returns a complete list of all Teams apps in an organization, their statuses, and their availability information in expanded format.
4747

48+
### Example 3
49+
50+
```powershell
51+
PS C:\> Get-AllM365TeamsApps | Select-Object -Property Id, IsBlocked, AvailableTo, InstalledFor -ExpandProperty InstalledFor
52+
```
53+
54+
Returns a complete list of all Teams apps in an organization, their statuses, their availability and their installation information in expanded format.
55+
4856
## PARAMETERS
4957

5058
### CommonParameters
@@ -81,6 +89,20 @@ Properties:
8189
- LastUpdatedTimestamp: Time and date when the app AvailableTo value was last updated.
8290
- AssignedBy: UserID of the last user who updated the app available to value.
8391

92+
**InstalledFor**
93+
Provides installation status for the app.
94+
Properties:
95+
96+
- AppInstallType: App availability type.
97+
Values:
98+
- Everyone
99+
- UsersandGroups
100+
- Noone
101+
- LastUpdatedTimestamp: Time and date when the app AvailableTo value was last updated.
102+
- InstalledBy: UserID of the last user who installed the app available to value.
103+
- InstalledSource: Source of Installation
104+
- Version: Version of the app installed
105+
84106
## RELATED LINKS
85107

86108
[Get-M365TeamsApp](Get-M365TeamsApp.md)

teams/teams-ps/teams/Get-M365TeamsApp.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ online version: https://docs.microsoft.com/powershell/module/teams/Get-M365Teams
55
applicable: Microsoft Teams
66
title: Get-M365TeamsApp
77
author: lkueter
8-
ms.author: satishtimiri
8+
ms.author: sribagchi
99
manager: rahulrgupta
1010
schema: 2.0.0
1111
---
@@ -96,6 +96,30 @@ Properties:
9696
- AssignedBy: UserID of last user who updated the app AvailableTo value.
9797
- LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated.
9898
99+
**InstalledFor**
100+
Provides installed for properties for the app.
101+
Properties:
102+
103+
- AppInstallType: App install type.
104+
Values:
105+
- Everyone
106+
- UsersandGroups
107+
- Noone
108+
- LastUpdatedTimestamp: Last Updated date
109+
- InstalledBy: The user performing the installation
110+
- InstalledSource: Source of installation
111+
- Version: Version of the app installed
112+
- InstallForUsers: List of all the users for whom the app is enabled.
113+
Values:
114+
- Id: GUID of UserIDs.
115+
- AssignedBy: UserID of last user who updated the app AvailableTo value.
116+
- LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated.
117+
- InstallForGroups: List of all the groups for whom the app is enabled.
118+
Values:
119+
- Id: GUID of GroupIDs.
120+
- AssignedBy: UserID of last user who updated the app AvailableTo value.
121+
- LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated.
122+
99123
## RELATED LINKS
100124
101125
[Get-AllM365TeamsApps](Get-ALLM365TeamsApps.md)

0 commit comments

Comments
 (0)