Skip to content

Commit

Permalink
Merge branch 'main' into patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
padmagit77 authored Oct 28, 2024
2 parents 4b1e61e + fd945d0 commit dc71b54
Showing 1 changed file with 23 additions and 1 deletion.
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

0 comments on commit dc71b54

Please sign in to comment.