Skip to content

Commit b07f200

Browse files
authored
Merge pull request #11748 from marche0133/patch-1
Update Get-CsOnlineApplicationInstance.md
2 parents cdc4055 + cc583b5 commit b07f200

File tree

1 file changed

+26
-4
lines changed

1 file changed

+26
-4
lines changed

teams/teams-ps/teams/Get-CsOnlineApplicationInstance.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Get application instance for the tenant from Microsoft Entra ID.
1818
## SYNTAX
1919

2020
```
21-
Get-CsOnlineApplicationInstance [[-Identity] <string>] [[-ResultSize] <int>] [[-Skip] <int>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
21+
Get-CsOnlineApplicationInstance [[-Identity] <string>] [[-Identities] <string>] [[-ResultSize] <int>] [[-Skip] <int>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
@@ -32,15 +32,21 @@ Get-CsOnlineApplicationInstance -Identity [email protected]
3232
```
3333

3434
This example returns the application instance with identity "[email protected]".
35-
3635
### -------------------------- Example 2 --------------------------
3736
```powershell
37+
Get-CsOnlineApplicationInstance -Identities [email protected],[email protected]
38+
```
39+
40+
This example returns the application instance with identities "[email protected]" and "[email protected]". Query with multiple comma separated Identity.
41+
42+
### -------------------------- Example 3 --------------------------
43+
```powershell
3844
Get-CsOnlineApplicationInstance -ResultSize 10
3945
```
4046

4147
This example returns the first 10 application instances.
4248

43-
### -------------------------- Example 3 --------------------------
49+
### -------------------------- Example 4 --------------------------
4450
```powershell
4551
Get-CsOnlineApplicationInstance
4652
```
@@ -50,7 +56,23 @@ This example returns the details of all application instances.
5056
## PARAMETERS
5157

5258
### -Identity
53-
The UPN or the object ID of the application instance to retrieve. If this parameter is not provided, it will retrieve all application instances in the tenant.
59+
The UPN or the object ID of the application instance to retrieve. If this parameter nor parameter Identities are not provided, it will retrieve all application instances in the tenant.
60+
61+
```yaml
62+
Type: System.String
63+
Parameter Sets: (All)
64+
Aliases:
65+
Applicable: Microsoft Teams
66+
67+
Required: False
68+
Position: Named
69+
Default value: None
70+
Accept pipeline input: False
71+
Accept wildcard characters: False
72+
```
73+
74+
### -Identities
75+
The UPNs or the object IDs of the application instances to retrieve, separated with comma. If this parameter nor parameter Identity are not provided, it will retrieve all application instances in the tenant.
5476
5577
```yaml
5678
Type: System.String

0 commit comments

Comments
 (0)