Commands › Exchange Online

Get-Place

Exchange Online ExchangeOnlineManagement Get-*

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.

Quick start script

# Get-Place — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Run and inspect
Get-Place | Format-List

# 3. Export for evidence / drift tracking
Get-Place | Export-Clixml .\Place-$(Get-Date -Format yyyyMMdd).xml

Syntax — 2 parameter sets

Identity

Get-Place [[-Identity] <RecipientIdParameter>]
 [-Confirm]
 [-ResultSize <Unlimited>]
 [-WhatIf]
 [<CommonParameters>]

AllPlaces

Get-Place [-Type <GetPlaceType>]
 [-Confirm]
 [-ResultSize <Unlimited>]
 [-WhatIf]
 [<CommonParameters>]

Parameters (5)

ParameterTypeRequiredWhat it controls
-Identity RecipientIdParameter The Identity parameter specifies the room mailbox that you want to view. You can use any value that uniquely identifies the room. For example:
-Confirm SwitchParameter This parameter is reserved for internal Microsoft use.
-ResultSize Unlimited This parameter is reserved for internal Microsoft use.
-Type GetPlaceType The Type parameter filters the results by the type of room mailbox. Valid values are:
-WhatIf SwitchParameter This parameter is reserved for internal Microsoft use.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.