Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish main to live, Monday 10:30 AM PST, 10/28 #12330

Merged
merged 12 commits into from
Oct 28, 2024
24 changes: 23 additions & 1 deletion teams/teams-ps/teams/Get-ALLM365TeamsApps.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ online version: https://docs.microsoft.com/powershell/module/teams/Get-ALLM365Te
applicable: Microsoft Teams
title: Get-ALLM365TeamsApps
author: lkueter
ms.author: satishtimiri
ms.author: sribagchi
manager: rahulrgupta
ms.date: 04/24/2024
schema: 2.0.0
Expand Down Expand Up @@ -45,6 +45,14 @@ PS C:\> Get-AllM365TeamsApps | Select-Object -Property Id, IsBlocked, AvailableT

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

### Example 3

```powershell
PS C:\> Get-AllM365TeamsApps | Select-Object -Property Id, IsBlocked, AvailableTo, InstalledFor -ExpandProperty InstalledFor
```

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

## PARAMETERS

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

**InstalledFor**
Provides installation status for the app.
Properties:

- AppInstallType: App availability type.
Values:
- Everyone
- UsersandGroups
- Noone
- LastUpdatedTimestamp: Time and date when the app AvailableTo value was last updated.
- InstalledBy: UserID of the last user who installed the app available to value.
- InstalledSource: Source of Installation
- Version: Version of the app installed

## RELATED LINKS

[Get-M365TeamsApp](Get-M365TeamsApp.md)
Expand Down
26 changes: 25 additions & 1 deletion teams/teams-ps/teams/Get-M365TeamsApp.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ online version: https://docs.microsoft.com/powershell/module/teams/Get-M365Teams
applicable: Microsoft Teams
title: Get-M365TeamsApp
author: lkueter
ms.author: satishtimiri
ms.author: sribagchi
manager: rahulrgupta
schema: 2.0.0
---
Expand Down Expand Up @@ -96,6 +96,30 @@ Properties:
- AssignedBy: UserID of last user who updated the app AvailableTo value.
- LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated.

**InstalledFor**
Provides installed for properties for the app.
Properties:

- AppInstallType: App install type.
Values:
- Everyone
- UsersandGroups
- Noone
- LastUpdatedTimestamp: Last Updated date
- InstalledBy: The user performing the installation
- InstalledSource: Source of installation
- Version: Version of the app installed
- InstallForUsers: List of all the users for whom the app is enabled.
Values:
- Id: GUID of UserIDs.
- AssignedBy: UserID of last user who updated the app AvailableTo value.
- LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated.
- InstallForGroups: List of all the groups for whom the app is enabled.
Values:
- Id: GUID of GroupIDs.
- AssignedBy: UserID of last user who updated the app AvailableTo value.
- LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated.

## RELATED LINKS

[Get-AllM365TeamsApps](Get-ALLM365TeamsApps.md)
Expand Down