Commands › Exchange Online

Set-Place

Exchange Online ExchangeOnlineManagement Set-*

Update room mailboxes with additional metadata, which provides a better search and room suggestion experience. **Note**: In hybrid environments, this cmdlet doesn't work on the following properties on synchronized room mailboxes: City, CountryOrRegion, GeoCoordinates, Phone, PostalCode, State, or Street. To modify these properties (except GeoCoordinates on synchronized room mailboxes), use the Set-User or Set-Mailbox cmdlets in on-premises Exchange. **Note**: We recommend using this cmdlet with the EXO V3 module. Commands using Set-Place to change certain combinations of properties together ca

Quick start script

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

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-Place
$before | Format-List

# 3. Make the change (dry run first)
Set-Place -Identity <RecipientIdParameter> -WhatIf
Set-Place -Identity <RecipientIdParameter>

# 4. Verify and diff
$after = Get-Place
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

Set-Place [-Identity] <RecipientIdParameter>
 [-AudioDeviceName <String>]
 [-Building <String>]
 [-Capacity <System.Int32>]
 [-City <String>]
 [-Confirm]
 [-CountryOrRegion <CountryInfo>]
 [-DisplayDeviceName <String>]
 [-Floor <System.Int32>]
 [-FloorLabel <String>]
 [-GeoCoordinates <GeoCoordinates>]
 [-IsWheelChairAccessible <Boolean>]
 [-Label <String>]
 [-MTREnabled <Boolean>]
 [-ParentId <String>]
 [-Phone <String>]
 [-PostalCode <String>]
 [-State <String>]
 [-Street <String>]
 [-Tags <String[]>]
 [-VideoDeviceName <String>]
 [-WhatIf]
 [<CommonParameters>]

Parameters (22)

ParameterTypeRequiredWhat it controls
-Identity RecipientIdParameter yes The Identity parameter specifies the room mailbox that you want to modify. You can use any value that uniquely identifies the room. For example:
-AudioDeviceName String The AudioDeviceName parameter specifies the name of the audio device in the room. If the value contains spaces, enclose the value in quotation marks (").
-Building String The Building parameter specifies the building name or building number that the room is in. If the value contains spaces, enclose the value in quotation marks (").
-Capacity Int32 The Capacity parameter specifies the capacity of the room. A valid value is an integer.
-City String The City parameter specifies the room's city. If the value contains spaces, enclose the value in quotation marks (").
-Confirm SwitchParameter This parameter is reserved for internal Microsoft use.
-CountryOrRegion CountryInfo The CountryOrRegion parameter specifies the room's country or region. A valid value is a valid ISO 3166-1 two-letter country code (for example, AU for Australia) or the corresponding friendly name for the country...
-DisplayDeviceName String The DisplayDeviceName parameter specifies the name of the display device in the room. If the value contains spaces, enclose the value in quotation marks (").
-Floor Int32 The Floor parameter specifies the floor number that the room is on.
-FloorLabel String The FloorLabel parameter specifies a descriptive label for the floor that the room is on. If the value contains spaces, enclose the value in quotation marks (").
-GeoCoordinates GeoCoordinates The GeoCoordinates parameter specifies the room's location in latitude, longitude and (optionally) altitude coordinates. A valid value for this parameter uses one of the following formats:
-IsWheelChairAccessible Boolean The IsWheelChairAccessible parameter specifies whether the room is wheelchair accessible. Valid values are:
-Label String The Label parameter specifies a descriptive label for the room (for example, a number or name). If the value contains spaces, enclose the value in quotation marks (").
-MTREnabled Boolean **Note**: Currently, this parameter is informational only and results in no additional functionality.
-ParentId String **Note**: This feature is experimental and is available only for organizations using Microsoft Places.
-Phone String The Phone parameter specifies the room's telephone number.
-PostalCode String The PostalCode parameter specifies the room's postal code.
-State String The State parameter specifies the room's state or province.
-Street String The Street parameter specifies the room's physical address.
-Tags String[] The Tags parameter specifies additional features of the room (for example, details like the type of view or furniture type).
-VideoDeviceName String The VideoDeviceName parameter specifies the name of the video device in the room. If the value contains spaces, enclose the value in quotation marks (").
-WhatIf SwitchParameter The WhatIf switch shows what the command does without making any changes. You don't need to specify a value with this switch.

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