Hello,
Using Powershell, I'm trying to remove/reset/delete/nullify the value of the Floor attribute for a room in Exchange Online, but I can't find a way to do it.
5(Get-Place -Identity "MyRoom").Floor
Set-Place -identity "MyRoom" -Floor 5
(Get-Place -Identity "MyRoom").Floor
5Set-Place -identity "MyRoom" -Floor $null
(Get-Place -Identity "MyRoom").Floor
0Set-Place -identity "MyRoom" -Floor ""
(Get-Place -Identity "MyRoom").Floor
And the WebUI doesn't provide a way to edit this attribute.
Any help appreciated. Thank you.
Michel