Skip to content

Commit 6bc6fe9

Browse files
Merge pull request #11770 from MicrosoftDocs/main
publish main to live 10:30 AM 4/25/24
2 parents cc92b9e + 70478d8 commit 6bc6fe9

File tree

6 files changed

+412
-3
lines changed

6 files changed

+412
-3
lines changed
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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-ALLM365TeamsApps
5+
applicable: Microsoft Teams
6+
title: Get-ALLM365TeamsApps
7+
author: satishtimiri
8+
ms.author: satishtimiri
9+
manager: rahulrgupta
10+
schema: 2.0.0
11+
---
12+
13+
# Get-AllM365TeamsApps
14+
15+
## SYNOPSIS
16+
17+
This cmdlet returns all Microsoft Teams apps in the app catalog, including Microsoft, custom, and third-party apps.
18+
19+
## SYNTAX
20+
21+
```powershell
22+
Get-AllM365TeamsApps [<CommonParameters>]
23+
```
24+
25+
## DESCRIPTION
26+
27+
Get-AllM365TeamsApps retrieves a complete list of all Teams apps in an organization, their statuses, and their availability information.
28+
29+
## EXAMPLES
30+
31+
### Example 1
32+
33+
```powershell
34+
PS C:\> Get-AllM365TeamsApps
35+
```
36+
Returns a complete list of all Teams apps in an organization, their statuses, and their availability information.
37+
38+
## PARAMETERS
39+
40+
### CommonParameters
41+
42+
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).
43+
44+
## INPUTS
45+
46+
### None
47+
48+
## OUTPUTS
49+
50+
### System.Object
51+
52+
**Id**
53+
Application ID of the Teams app.
54+
55+
**IsBlocked**
56+
The state of the app in the tenant.
57+
Values:
58+
- Blocked
59+
- Unblocked
60+
61+
**AvailableTo**
62+
Provides available to properties for the app.
63+
Properties:
64+
- AssignmentType: App availability type.
65+
Values:
66+
- Everyone
67+
- UsersandGroups
68+
- Noone
69+
- LastUpdatedTimestamp: Time and date when the app AvailableTo value was last updated.
70+
- AssignedBy: UserID of the last user who updated the app available to value.
71+
72+
## RELATED LINKS
73+
[Get-M365TeamsApps](/powershell/module/teams/get-m365teamsapps)
74+
75+
[Get-ALLM365TeamsApps](/powershell/module/teams/update-M365TeamsApps)
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
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 the Microsoft Teams app.
18+
19+
## SYNTAX
20+
21+
```powershell
22+
Get-M365TeamsApp -Id <String> [<CommonParameters>]
23+
```
24+
25+
## DESCRIPTION
26+
27+
Get-M365TeamsApps retrieves information about the Teams app. This includes app state, app availability, user who updated app availability, and the associated timestamp.
28+
29+
## EXAMPLES
30+
31+
### Example 1
32+
33+
```powershell
34+
PS C:\> Get-M365TeamsApp -Id b782e2e8-9682-4898-b211-a304714f4f6b
35+
```
36+
37+
Provides information about b782e2e8-9682-4898-b211-a304714f4f6b app, which includes app state, app availability, user who updated app availability, and the associated timestamp.
38+
39+
## PARAMETERS
40+
41+
### -Id
42+
43+
Application ID of the Teams app.
44+
45+
```yaml
46+
Type: String
47+
Parameter Sets: (All)
48+
Aliases:
49+
50+
Required: True
51+
Position: Named
52+
Default value: None
53+
Accept pipeline input: False
54+
Accept wildcard characters: False
55+
```
56+
57+
### CommonParameters
58+
59+
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).
60+
61+
## INPUTS
62+
63+
### None
64+
65+
## OUTPUTS
66+
67+
### System.Object
68+
69+
**ID**
70+
Application ID of the Teams app.
71+
72+
**IsBlocked**
73+
The state of the app in the tenant.
74+
Values:
75+
- Blocked
76+
- Unblocked
77+
78+
**AvailableTo**
79+
Provides available to properties for the app.
80+
Properties:
81+
- AssignmentType: App availability type.
82+
Values:
83+
- Everyone
84+
- UsersandGroups
85+
- Noone
86+
- Users: List of all the users for whom the app is enabled.
87+
Values:
88+
- Id: GUID of UserIDs.
89+
- AssignedBy: UserID of last user who updated the app AvailableTo value.
90+
- LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated.
91+
- Groups: List of all the groups for whom the app is enabled.
92+
Values:
93+
- Id: GUID of GroupIDs.
94+
- AssignedBy: UserID of last user who updated the app AvailableTo value.
95+
- LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated.
96+
97+
## RELATED LINKS
98+
99+
[Update-M365TeamsApps](/powershell/module/teams/update-m365teamsapps)
100+
101+
[Get-ALLM365TeamsApps](/powershell/module/teams/Get-ALLM365TeamsApps)

teams/teams-ps/teams/New-CsOnlineLisCivicAddress.md

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ Use the New-CsOnlineLisCivicAddress cmdlet to create a civic address in the Loca
2121
New-CsOnlineLisCivicAddress -CompanyName <string> -CountryOrRegion <string> [-City <string>] [-CityAlias <string>] [-CompanyTaxId <string>]
2222
[-Description <string>] [-Elin <string>] [-Force] [-HouseNumber <string>] [-HouseNumberSuffix <string>]
2323
[-Latitude <string>] [-Longitude <string>] [-PostalCode <string>] [-PostDirectional <string>] [-PreDirectional <string>]
24-
[-StateOrProvince <string>] [-StreetName <string>] [-StreetSuffix <string>] [-WhatIf] [-Confirm] [<CommonParameters>]
24+
[-StateOrProvince <string>] [-StreetName <string>] [-StreetSuffix <string>] [-Confidence <String>] [-IsAzureMapValidationRequired <String>] [-ValidationStatus <String>]
25+
[-WhatIf] [-Confirm] [<CommonParameters>]
2526
```
2627

2728
## DESCRIPTION
@@ -369,6 +370,52 @@ Accept pipeline input: False
369370
Accept wildcard characters: False
370371
```
371372
373+
### -Confidence
374+
This parameter is reserved for internal Microsoft use.
375+
376+
```yaml
377+
Type: String
378+
Parameter Sets: (All)
379+
Aliases:
380+
381+
Required: False
382+
Position: Named
383+
Default value: None
384+
Accept pipeline input: False
385+
Accept wildcard characters: False
386+
```
387+
388+
### -IsAzureMapValidationRequired
389+
This parameter is reserved for internal Microsoft use.
390+
391+
```yaml
392+
Type: String
393+
Parameter Sets: (All)
394+
Aliases:
395+
396+
Required: False
397+
Position: Named
398+
Default value: None
399+
Accept pipeline input: False
400+
Accept wildcard characters: False
401+
```
402+
403+
### -ValidationStatus
404+
This parameter is reserved for internal Microsoft use.
405+
406+
```yaml
407+
Type: String
408+
Parameter Sets: (All)
409+
Aliases:
410+
411+
Required: False
412+
Position: Named
413+
Default value: None
414+
Accept pipeline input: False
415+
Accept wildcard characters: False
416+
```
417+
418+
372419
### -WhatIf
373420
The WhatIf switch causes the command to simulate its results.
374421
By using this switch, you can view what changes would occur without having to commit those changes.

teams/teams-ps/teams/Set-CsOnlineLisCivicAddress.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Set-CsOnlineLisCivicAddress -CivicAddressId <Guid> [-CompanyName <String>] [-Com
2626
[-PreDirectional <String>] [-PostDirectional <String>] [-City <String>] [-CityAlias <String>]
2727
[-StateOrProvince <String>] [-CountryOrRegion <String>] [-PostalCode <String>] [-Description <String>]
2828
[-ValidationStatus <String>] [-Latitude <String>] [-Longitude <String>] [-Confidence <String>]
29-
[-Elin <String>] [-Force] [-WhatIf] [-Confirm]
29+
[-Elin <String>] [-IsAzureMapValidationRequired <String>] [-Force] [-WhatIf] [-Confirm]
3030
[<CommonParameters>]
3131
```
3232

@@ -426,6 +426,21 @@ Accept pipeline input: False
426426
Accept wildcard characters: False
427427
```
428428
429+
### -IsAzureMapValidationRequired
430+
This parameter is reserved for internal Microsoft use.
431+
432+
```yaml
433+
Type: String
434+
Parameter Sets: (All)
435+
Aliases:
436+
437+
Required: False
438+
Position: Named
439+
Default value: None
440+
Accept pipeline input: False
441+
Accept wildcard characters: False
442+
```
443+
429444
### CommonParameters
430445
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
431446

teams/teams-ps/teams/Set-CsOnlineLisLocation.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Typically the civic address designates the building, and locations are specific
2323
Set-CsOnlineLisLocation -CivicAddressId <guid> [-City <string>] [-CityAlias <string>] [-CompanyName <string>] [-CompanyTaxId <string>]
2424
[-Confidence <string>] [-CountryOrRegion <string>] [-Description <string>] [-Elin <string>] [-Force] [-HouseNumber <string>] [-HouseNumberSuffix <string>]
2525
[-Latitude <string>] [-Longitude <string>] [-PostalCode <string>] [-PostDirectional <string>] [-PreDirectional <string>]
26-
[-StateOrProvince <string>] [-StreetName <string>] [-StreetSuffix <string>] [-WhatIf] [-Confirm] [<CommonParameters>]
26+
[-StateOrProvince <string>] [-StreetName <string>] [-StreetSuffix <string>] [-IsAzureMapValidationRequired <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
2727
```
2828

2929
### UseLocationId
@@ -419,6 +419,23 @@ Accept pipeline input: True
419419
Accept wildcard characters: False
420420
```
421421
422+
### -IsAzureMapValidationRequired
423+
This parameter is reserved for internal Microsoft use.
424+
425+
```yaml
426+
Type: String
427+
Parameter Sets: UseCivicAddressId
428+
Aliases:
429+
Applicable: Microsoft Teans
430+
431+
Required: False
432+
Position: Named
433+
Default value: None
434+
Accept pipeline input: False
435+
Accept wildcard characters: False
436+
```
437+
438+
422439
### -Force
423440
The Force switch specifies whether to suppress warning and confirmation messages.
424441
It can be useful in scripting to suppress interactive prompts.

0 commit comments

Comments
 (0)