Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Copy and paste the code below then press Enter.

Code Block
breakoutModefull-width
languagepowershell
# Get user details
$UserCredential = Get-Credential
# Create connection to office 365
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
# Start session
Import-PSSession $Session

...

Once successfully logged in, enter the code below to view the settings for a specific resource. Replace the words “Board Room” on the second line of the code with the name of your resource to get the screen below.

Code Block
languagepowershell
# View resource current settings
Get-Mailbox “Board Room” | Get-CalendarProcessing | FL

...

By default, RemovePrivateProperty, DeleteSubject, and AddOrganizerToSubject are set to true. AutomateProcessing must be set to AutoAccept if it is not already set.

Copy and paste the code below to change the settings for these four options. Remember to replace
Replace “Board Room” with the name of your resource.

Code Block
breakoutModefull-width
languagepowershell
# Specific settings for the resource
Set-CalendarProcessing “Board Room” -AddOrganizerToSubject $false -DeleteSubject $false -RemovePrivateProperty $false -AutomateProcessing AutoAccept

...

A successful connection will display a message similar to the image below:

...

Creating & Connecting a Profile

...