Skip to content

Commit 101f15c

Browse files
authored
Merge pull request MicrosoftDocs#3777 from MicrosoftDocs/Places-chrisda
Places-chrisda to Master
2 parents 2897567 + 17bd9d4 commit 101f15c

File tree

2 files changed

+512
-0
lines changed

2 files changed

+512
-0
lines changed
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
---
2+
external help file: Microsoft.Exchange.CalendarsAndGroups-Help.xml
3+
applicable: Exchange Online
4+
title: Get-Place
5+
schema: 2.0.0
6+
author: chrisda
7+
ms.author: chrisda
8+
ms.reviewer:
9+
monikerRange: "exchonline-ps"
10+
---
11+
12+
# Get-Place
13+
14+
## SYNOPSIS
15+
This cmdlet is available only in the cloud-based service.
16+
17+
Use the Get-Place cmdlet to view the additional metadata that was configured on room mailboxes by using the Set-Place cmdlet. The additional metadata provides a better search and room suggestion experience.
18+
19+
For information about the parameter sets in the Syntax section below, see Exchange cmdlet syntax (https://technet.microsoft.com/library/bb123552.aspx).
20+
21+
## SYNTAX
22+
23+
```
24+
Get-Place [-Identity] <RecipientIdParameter> [-ResultSize <Unlimited>] [<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see Find the permissions required to run any Exchange cmdlet (https://technet.microsoft.com/library/mt432940.aspx).
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
```
34+
Get-Place -Identity "Conference Room 01"
35+
```
36+
37+
This example returns summary metadata for the room mailbox named Conference Room 1.
38+
39+
### Example 2
40+
```
41+
Get-Place -Identity "Conference Room 01" | Format-List
42+
```
43+
44+
This example returns detailed metadata for Conference Room 1.
45+
46+
## PARAMETERS
47+
48+
### -Identity
49+
The Identity parameter specifies the room mailbox that you want to view. You can use any value that uniquely identifies the room. For example:
50+
51+
- Name
52+
53+
- Alias
54+
55+
- Distinguished name (DN)
56+
57+
- Canonical DN
58+
59+
- Email address
60+
61+
- GUID
62+
63+
```yaml
64+
Type: RecipientIdParameter
65+
Parameter Sets: (All)
66+
Aliases:
67+
Applicable: Exchange Online
68+
Required: True
69+
Position: 0
70+
Default value: None
71+
Accept pipeline input: True (ByPropertyName, ByValue)
72+
Accept wildcard characters: False
73+
```
74+
75+
### -ResultSize
76+
The ResultSize parameter specifies the maximum number of results to return. If you want to return all requests that match the query, use unlimited for the value of this parameter. The default value is 1000.
77+
78+
```yaml
79+
Type: Unlimited
80+
Parameter Sets: (All)
81+
Aliases:
82+
Applicable: Exchange Online
83+
Required: False
84+
Position: Named
85+
Default value: None
86+
Accept pipeline input: False
87+
Accept wildcard characters: False
88+
```
89+
90+
### CommonParameters
91+
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/p/?LinkID=113216).
92+
93+
## INPUTS
94+
95+
###
96+
97+
## OUTPUTS
98+
99+
###
100+
101+
## NOTES
102+
103+
## RELATED LINKS
104+
105+
[Online Version](https://docs.microsoft.com/powershell/module/exchange/mailboxes/get-place)

0 commit comments

Comments
 (0)