Skip to content

VRPC.COM

Virtual Reality Powered Computer

  • Home
  • Apple
  • Apps
  • Mobile Devices
    • Jailbreak
  • Network
  • Servers
  • Windows
  • Hackintosh

Tag: exchange 2010

Outlook 2016 to Exchange 2016 mapi connection problems.

Posted on December 1, 2017 by vrpc

During my exchange 2010 to exchange 2016 migration I run in to outlook connectivity problem which made it impossible to connect.
There are hundreds of similar issues on google unfortunately none of them solved the problem until I found two solutions on separate blogs and combined them and here is my final fix:

  1. Set-MapiVirtualDirectory -identity “exchange2016\mapi (Default Web site)” -IISAuthenticationMethods NTLM
  2. this requires editing Autodiscover and EWS virtual directory using IIS server interface on the exchange 2016 server.
    Remove negotiate provider from Windows Authentication.

 

References:

  1. this is the first blog thanks to which I was able to get outlook 2016 working unfortunately only with exchange cached mode disable.
  2. this is the send blog (last post have the solution) which helped me to get outlook 2016 working on the local LAN and behind the firewall as well as with or without using exchange cached mode.
  3. In addition you need to have MAPI enabled on the exchange 2016 server which is the default but just in case here is the MS link with instructions.
Posted in Servers, WindowsTagged exchange 2010, Exchange 2016, migration

exchange 2010 remove users emails before specific date

Posted on October 20, 2017 by vrpc

If user has a lot of emails which they need to delete here is a command which can help at the server end:

 

Search-Mailbox -Identity “User Name” -SearchQuery “Received:<$(’12/31/2013′)” -DeleteContent

 

ref: https://social.technet.microsoft.com/Forums/exchange/en-US/6114adb8-7e65-46e0-b54f-704ad15ef723/command-to-delete-all-the-items-from-a-mailbox-till-a-specific-date?forum=exchange2010

 

Posted in Servers, WindowsTagged exchange 2010

exchange 2010 failed to create new GAL

Posted on October 6, 2017 by vrpc

error when trying to create new GAL using:

New-GlobalAddresslist “new GAL” –ConditionalCustomAttribute1 “STAFF” –IncludedRecipients “AllRecipients”

WARNING: One or more global address lists were missing from the Active Directory attribute. This is likely caused by
using legacy Exchange management tools to create global address lists.
Active Directory operation failed on server1.domain.local. This error is not retriable. Additional information: The name ref
erence is invalid.
This may be caused by replication latency between Active Directory domain controllers.
Active directory response: 000020B5: AtrErr: DSID-03152C47, #1:
0: 000020B5: DSID-03152C47, problem 1005 (CONSTRAINT_ATT_TYPE), data 0, Att 907ff (globalAddressList2)
+ CategoryInfo : NotSpecified: (0:Int32) [New-GlobalAddressList], ADConstraintViolationException
+ FullyQualifiedErrorId : 8E376CCD,Microsoft.Exchange.Management.SystemConfigurationTasks.NewGlobalAddressList

 

the most likely problem is corupted entry.

This can be tested using power shell script on AD server:


$ad = [ADSI]"LDAP://rootDSE";
$domain = $ad.rootDomainNamingContext;
$obj = New-Object System.DirectoryServices.DirectoryEntry("LDAP://CN=Microsoft Exchange,CN=Services,CN=Configuration,$domain"); 

$count = 0;
$Gals1= $obj.GlobalAddressList;
foreach($g in $Gals1)
{
   $g= $g.ToString().ToLower(); 
   if($g.Contains("cn=deleted objects"))
   {
      Write-Host $g;
      $count= $count +1;  
   }
}

Write-Host "$Count corrupted GAL entries found in property GlobalAddressList";

$count = 0;
$Gals2= $obj.GlobalAddressList2;
foreach($g in $Gals2)
{  
   $g= $g.ToString().ToLower();
   if($g.Contains("cn=deleted objects"))  
   {
      Write-Host $g;          
      $count= $count +1;  
   }
}
Write-Host "$Count corrupted GAL entries found in property GlobalAddressList2";

you will get output something like this:

cn=default global address list\0adel:cc665233-b490-477a-a972-60fdd6d991ef,cn=deleted objects,cn=configuration,dc=domain,dc=
local
1 corrupted GAL entries found in property GlobalAddressList
0 corrupted GAL entries found in property GlobalAddressList2

If you find corrupted entries (make sure to have full system backup) you will have to remove them using ADSI edit on domain controller.

Using ADSI edit connect to configuration:

configuration\ Services\ Microsoft Exchange (right click / properties)

depending on the listed corruption look for GlobalAddressList or GlobalAddressList2 and click edit.

Remove corrupted entries.

This helped me to fix creating new GAL.

 

reference:

https://social.technet.microsoft.com/Forums/exchange/en-US/52854856-f517-4827-b3d3-3e589a422672/exchange-2010-sp-2-cant-create-second-gal?forum=exchange2010hosters

https://social.msdn.microsoft.com/Forums/en-US/3210af54-d8b4-490f-9f5f-f4fc3209d324/newglobaladdresslist-fails-ad44a06f?forum=os_exchangeprotocols&forum=os_exchangeprotocols

 

https://www.experts-exchange.com/articles/12458/Failed-to-create-New-Global-Address-List-on-Exchange-2010.html

 

Posted in Servers, WindowsTagged exchange 2010, GAL

Exchange 2010 export user mailbox

Posted on August 28, 2017 by vrpc

using this simple exchange powershell command:

New-MailboxExportRequest -Mailbox username -FilePath “\\server\share\username.pst”

 

Posted in ServersTagged exchange 2010, export

Purge disconnected mailbox on exchange 2010

Posted on July 21, 2017 by vrpc

One option is to wait for the mailbox to be purged automatically (default 30 days)

or to use Cmdlet:

Remove-StoreMailbox -Database <mailboxDatabaseName> -Identity <DisplayName> -MailboxState "Disabled"

Posted in Servers, WindowsTagged exchange 2010, Server

Exchange 2010 add user permissions on other user calendar

Posted on June 21, 2017 - June 21, 2017 by vrpc

add-MailboxFolderPermission -Identity smith@contoso.com:\calendar -User novak@contoso.com -AccessRights Reviewer

Here is MS link with additional information: https://technet.microsoft.com/en-us/library/bb124097(v=exchg.160).aspx

 

Posted in Servers, WindowsTagged exchange 2010

550 5.7.1 Message rejected as spam by Content Filtering Exchange 2010

Posted on June 3, 2011 - April 25, 2017 by vrpc
One solution is to add the senders email address to the exception list in content filtering properties.

1. Open EMC
2. expand OC
3. Click on Hub Transport
4. Anti Spam tab
5. Right click on Content Filtering
6. Exceptions tab
7. ender and add senders email

I don’t recommend this if exchange is the only spam filter because spammers can spoof the from address.

Posted in Servers, WindowsTagged exchange 2010

Categories

Recent Posts

  • Fix Core Isolation Turned off on Windows 11
  • ADSelfService GINA Mac Uninstall
  • TLS 1.0
  • Add mac computer to MDM server after initial setup
  • MX-100 1:many NAT not working as expected

Tags

64K AD apple apps backup BOOT chromebook DEP DeployStudio driver DVD EMS exchange 2010 Exchange 2016 Exhange 2010 export FileVault Firefox Firewall fixit G-Suite Google+ Group Policy iphone jailbreak JAMF Linux MAC management error MDM Meraki Mojave Outlook 2016 parental control printer PXE Server Splashtop terminal updates VEEAM vmware WiFi windows 10 windows update 1803

RSS iClarified – Apple News and Tutorials

  • United App Now Shows TSA Wait Times and Adds AirTag Luggage Tracking
  • Apple Drops First Teaser for 'Widow's Bay,' a New Horror Comedy Series [Video]
  • Apple May Drop Black From iPhone 18 Pro for Second Year in a Row
  • Read Tim Cook's Internal Letter to Employees Celebrating Apple's 50th Anniversary
  • Apple Shows Rare Prototypes Even Tim Cook Had Never Seen Before [Video]
  • Apple Releases First AirTag 2 Firmware Update to Improve Anti-Stalking Sound
  • Apple Issues Critical iOS 18.7.7 Security Update for Users Who Skipped iOS 26

RSS BBC News

  • Fewer UK adults posting on social media, Ofcom finds April 2, 2026
    Some experts believe it highlights a social media shift as platforms boost short video.
  • Elon Musk's SpaceX set to be worth $1 trillion with planned public listing April 2, 2026
    The company’s public stock debut is set to be one of the most valuable in history, and could make Musk the world's first trillionaire.
  • Peppa Pig and Transformers owner Hasbro hit by cyber-attack April 1, 2026
    The firm says its operations remain open but says the hack "may result in some delays".
  • Claude Code users hitting usage limits 'way faster than expected' April 1, 2026
    Anthropic, the company behind the AI coding assistant, said it was fixing a problem blocking users.
  • Mass robotaxi malfunction halts traffic in Chinese city April 1, 2026
    Baidu has not responded to a request for comment about the outage, which affected at least 100 cars.
  • Thousands lose their jobs in deep cuts at tech giant Oracle April 1, 2026
    It is thought that thousands of people may have lost their jobs at Oracle, one of the world's largest tech companies.
  • Tech Life March 31, 2026
    Attribution science is becoming an increasingly important tool in climate lawsuits.
  • Social media firms must better enforce Australia under-16 ban, watchdog says March 31, 2026
    Regulator eSafety says it has concerns about how Facebook, Instagram, Snapchat, TikTok and YouTube are complying with the ban.
  • Kris Jenner's image spreads in Chinese social media good luck trend March 30, 2026
    Hundreds of thousands of posts have been shared in the past three days as users hope for prosperity
  • Tech Life March 30, 2026
    Humans are returning to the Moon - hear about it on the BBC’s space podcast, 13 Minutes
Proudly powered by WordPress | Theme: micro, developed by DevriX.
 

Loading Comments...