diff --git a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs index 5f34766f..6b6c312b 100644 --- a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs +++ b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs @@ -4759,7 +4759,7 @@ namespace WebsitePanel.Providers.HostedSolution foreach (PSObject obj in result) { string userId = ObjToString(GetPSObjectProperty(obj, "User")); - if (userId == "Default" || userId == "Anonymous" || userId.StartsWith("NT User:") == true) + if (userId == "Default" || userId == "Anonymous" || userId.StartsWith("NT:") == true) continue; object rights = GetPSObjectProperty(obj, "AccessRights");