This article is a part one of a more wide guide procedure to implement an Exchange Hybrid configuration. Let’s start from AD Sync implementation. Connect to your tenant and install the AADConnect. Download and install select “customize” So now, leave here the wizard and go to the tenant. make the appropriate changes to verify the …
Tag: 365
Part two – check AD Sync staging mode results. – Exchange Hybrid
This guide implement an Adsync in staging mode test the configuration before go live with your Ad environment. We left our AD Sync in staging mode and we can see that there aren’t any operation in place. Select connectors Select “Active Directory Domain Services” and RUN a full import. Do the same for the “Windows …
Decommissioning Exchange 2010 server in a Hybrid environments – The fastest way..
This guide considers the fastest way to decommission an Exchange server in Hybrid deployment so i consider some point as implied. So first we need to move al obbjects to the cloud …Take in mind that all must have the “onmicorosoft.com” domain. Go to Address rule polices and add it Now our objects has the …
How to show meeting details of a Room mailbox
In our environments, we have a Room Mailbox called “Sala riunioni”. now get its details with this command: Get-MailboxFolderPermission -Identity “Sala riunioni:\calendar” |fl At this point we need to add to default users the rights to read the “limiteddetails” . With this settings, anyone can read who has created the appointment and the subject. this …
Manage Office 365 global spam filter
First, connect to your tenant Get-HostedContentFilterPolicy |fl We need to manage the AllowedSenderDomains field. Issue this command to see the situation … Get-HostedContentFilterPolicy |fl AllowedSenderDomains If you want to expant it do this: Get-HostedContentFilterPolicy | select -ExpandProperty AllowedSenderDomains To filter it and show only the domains list use this command: Get-HostedContentFilterPolicy | select -ExpandProperty AllowedSenderDomains …
Installing PowerShell Core on macOS and connect to Office 365 Tenant
This is the official link that explain how to do it in the Microsoft’s way : https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-macos?view=powershell-6 First, we need to install “BREW”… Open Terminal Now, we need to install Homebrew ( see this guid: https://brew.sh ) This is the command: /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” this is the output: when finished, run this command: …