microsoft 365
2083 Topicsyour microsoft exchange administrator has blocked the version of outlook that you are using contact
your microsoft exchange administrator has blocked the version of outlook that you are using contact administrator for assistance Juts checking with 2010 outlook version https://www.technipages.com/your-administrator-has-blocked-this-version-of-outlook#:~:text=The%20safest%20solution%20is%20to,consider%20switching%20to%20Office%202019.158KViews1like15CommentsExchange Online Quick Tip: Export all distribution lists with members to a CSV file!
Hi Microsoft 365 and Exchange Online friends, This article is about using PowerShell in Exchange Online to discover all distribution lists, including all members. Then export this information to a CSV file. I used the PowerShell ISE for this configuration. But you are also very welcome to use Visual Studio Code, just as you wish. Please start with the following steps to begin the deployment (the Hashtags are comments): #The first two lines have nothing to do with the configuration, but make some space below in the blue part of the ISE Set-Location C:\Temp Clear-Host #We need the module (without the parameter for a specific version) Install-Module -Name ExchangeOnlineManagement -AllowClobber -Force -Verbose #Let's import the module Import-Module ExchangeOnlineManagement #Check the version (if you have not selected a version) Get-InstalledModule -Name ExchangeOnlineManagement #Update if needed Update-Module -Name ExchangeOnlineManagement -Verbose #Now we connect to Exchange Online Connect-ExchangeOnline #To list all the distribution groups Get-DistributionGroup -ResultSize Unlimited #To obtain a list of group members Get-DistributionGroupMember -Identity "MarketingTeam20220406114100" -ResultSize Unlimited #Get members from a given distribution list and then, export its members to a CSV file $DLName = "MarketingTeam20220406114100" Get-DistributionGroupMember -Identity $DLName -ResultSize Unlimited | Select Name, PrimarySMTPAddress, RecipientType | Export-CSV "C:\Distribution-List-Members.csv" -NoTypeInformation -Encoding UTF8 ##Lets have a look Get-Content C:\Distribution-List-Members.csv | Out-GridView #Export all distribution lists with members to a CSV file! $Result=@() $groups = Get-DistributionGroup -ResultSize Unlimited $totalmbx = $groups.Count $i = 1 $groups | ForEach-Object { Write-Progress -activity "Processing $_.DisplayName" -status "$i out of $totalmbx completed" $group = $_ Get-DistributionGroupMember -Identity $group.Name -ResultSize Unlimited | ForEach-Object { $member = $_ $Result += New-Object PSObject -property @{ GroupName = $group.DisplayName Member = $member.Name EmailAddress = $member.PrimarySMTPAddress RecipientType= $member.RecipientType }} $i++ } $Result | Export-CSV "C:\All-Distribution-Group-Members.csv" -NoTypeInformation -Encoding UTF8 #Lets have a look $Result | Out-GridView I hope this article was useful. Thank you for taking the time to read the article. Best regards, Tom Wechsler P.S. All scripts (#PowerShell, Azure CLI, #Terraform, #ARM) that I use can be found on github! https://github.com/tomwechsler150KViews6likes12CommentsExternal users cannot open encrypted email
Hi all, I searched the communities but couldn't find the answers I need in regards to Office 365 Message Encryption. We have a customer that wants to send encrypted emails from Outlook. When a non-Microsoft recipient (e.g. Gmail user) receives these emails they cannot open them. They get the following: It's my understanding that external recipients should be able to view encrypted email as per https://support.office.com/en-us/article/how-do-i-open-a-protected-message-1157a286-8ecc-4b1e-ac43-2a608fbf3098?ui=en-US&rs=en-US&ad=US. Can someone please help? The sending user has a Microsoft 365 Business Premium license, and Azure Information Protection is active under the 365 tenant. Thanks AshSolved123KViews0likes25CommentsEmails to distribution list being dropped
Emails have just been dropped with no NDR. These are internal users messaging an internal distribution group. The support tech had no idea, and refused to escalate the case. When I did a message trace this is the error I got Drop Reason: [{LED=250 2.1.5 RESOLVER.GRP.Expanded; distribution list expanded};{MSG=};{FQDN=};{IP=};{LRT=}] Is there a way to escalate cases? I've heard nothing in over a day even after requesting an update.119KViews1like9CommentsShare address book from one to other tenants in O365
Dear Adam., I want to share my address book between two tenants . I am confusing something about the term : address book and contacts. Dear all friends and experts As my understand: In contact have all address book ? or in address have all contact ? or address book is same contacts In my case. I want to share ( address book ) to other tenants, actually, I need share address book or contacts ? Please give me some advise, and how to do that. Thank you so much. Lee NguyenSolved76KViews2likes19CommentsAzure Active Directory Global Reader role
Microsoft introduced a new Azure AD built-in role called Global Reader. Global reader is the read-only counterpart to Global admin. Users in this role can read all settings and administrative information across Microsoft 365 services, but cannot edit anything. Please note that Global Reader is not supported in SharePoint Admin Center, Privileged Access Management (PAM), customer lockbox requests in M365 Admin Center and sensitivity labels in Security & Compliance Center I found this role more suitable for someone who wants to audit your tenant and generate a quick report or some wants to review the logs or policies....... Except the sharepoint stufff... Here is a quick sneak peak of what we can do in reality with this role.72KViews0likes2CommentsBlog: Microsoft 365: Fundamentals (MS-900) Exam Prep Guide
Need help on the upcoming Microsoft 365 Fundamentals certification exam? This guide will help you start your Microsoft 365 certification journey today with the entry level qualification preparing you for the associate workload exams https://microsoft365pro.co.uk/2019/01/25/microsoft-365-fundamentals-ms-900-exam-prep-guide/ Best, ChrisSolved70KViews14likes30Comments