Migrating from FirstClass to Exchange

This message is for the very few out there who will be migrating from FirstClass server to Exchange.
I created a VB Script that will convert exported messages from FirstClass into a comma delimited file (CSV) that can be imported into Exchange.
FirstClass is not a full featured IMAP server, and thus you cannot migrate Sent emails or emails in folders using the Transporter Suite.
If you have any questions, feel free to contact me: [email protected]
Enjoy,
John Dombrowski
I cannot attach a file, so here is the code:
'VB Script to convert Exported FirstClass emails to comma delimated files
'Written by John Dombrowski - Thornapple Kellogg Schools - [email protected]
'Instructions:
'1. Create a Folder on your desktop called 'emails'
'2. Save this file into that folder the folder
'3. Create two (2) files inside the emails folder:
'    1. convertedfinal.csv
'      a. Open this file and add the following line: "From","Date","To","Subject","Body"
'    2. temp.txt (you can leave this file blank)
'4. Create a Folder inside the emails folder called 'Exported'
'5. Export your FirstClass Mailbox, Folders, or Individual Emails into the folder created in step 4
'6. Run the convertemails.vbs file
'7. If everything ran properly, the convertedfinal.csv file will contain all of the emails that you exported in a
'   comma delimeted file that can then be imported into other email systems.
'Disclaimer - Use at your own will.  I am not responsible for any mishaps that may occur
'|Start of Script|
'Variables
Const ForAppending = 8
ForWriting = 2
ForReading = 1
Set objFSO = CreateObject("Scripting.FileSystemObject")
'Opens Exported folder
ShowSubfolders objFSO.GetFolder("exported")
'Opens each sub folder
Sub ShowSubFolders(Folder)
    For Each Subfolder in Folder.SubFolders
folderopen = Subfolder.Path & "\content.txt"
count = 0
'Opens all txt and cvs files
Set objRead = objFso.OpenTextFile (folderopen, ForReading)
Set objWrite = objFso.OpenTextFile("convertedfinal.csv", ForAppending)
Set objTemp = objFso.OpenTextFile("temp.txt", ForWriting)
'Loop to read and right data
Do While objRead.AtEndOfStream <> True
   LineData = objRead.ReadLine
If InStr(LineData, "From:") <> 0 Then 
 arrData = split (LineData,vbTab)
 fn = arrData(0)
 fn = arrData(1)
 faddress = arrData(2)
 fdate = arrData(3)
faddress = Replace(faddress,Chr(34),"")
End If
If InStr(LineData, "Subject:") <> 0 Then 
 arrData = split (LineData,vbTab)
 sn = arrData(0)
 ssubject = arrData(1)
 'ssubject = arrData(2)
End If
If InStr(LineData, "To:") <> 0 Then 
 arrData = split (LineData,vbTab)
 tn = arrData(0)
 tn = arrData(1)
 tname = arrData(2)
End If
'Starts writing body info on line 5 (you can change if necessary)
If count > 5 Then
objTemp.WriteLine (LineData)
End If 
'Does a count to set the writing of the body information on line 5
count = count + 1
Loop
'Opens temp file to store body info
Set objTempRead = objFso.OpenTextFile("temp.txt", ForReading)
'Read and write body info
body = objTempRead.ReadAll
body = Replace(body,Chr(34),"")
objWrite.WriteLine(Chr(34) & faddress & Chr(34) & "," & Chr(34) & fdate & Chr(34) & "," & Chr(34) & tname & Chr(34) & "," & Chr(34) & ssubject & Chr(34) & "," & Chr(34) & body & Chr(34))
'Rinse and Repeat
objRead.Close
objWrite.Close
objTemp.Close
objTempRead.Close
    Next
End Sub
'End
WScript.Echo "Finished"

What version of Exchange were you using with this Script? I'm about to tackle this exact project. 
Thanks Much. 

Similar Messages

  • Migrating From IMAP to Exchange 2013

    Hi
    I'm looking to migrate from a hosted imap email provider to racked exchange server 2013
    we have about users, but also some of the services we provide generate and send mail
    We are looking to just migrate the users for now, but at the risk of sounding stupid, I don't think this is possible due to the domain and the mx records, as in we don't want to change the email address' and we would be able to have both hosted and in house,
    using the same domain
    Any help and advice is very much appreciated 

    Do you have access to hosted environment to move the mailboxes?
    What is the number of users you are talking about?
    To move the mailbox you would require some third party tool.
    Cheers,
    Gulab Prasad
    Technology Consultant
    Blog:
    http://www.exchangeranger.com    Twitter:
      LinkedIn:
       Check out CodeTwo’s tools for Exchange admins
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Migration from OCS to Exchange 5.5

    Hi All,
    I need to migrate the users and thier email addresses and thier inbox into new exchange 5.5 server, is there any tool to do that, or any way!!???
    Best Regards

    OCS uses IMAP4 for storing emails, so the best thing would probably be to ask on some Microsoft message board about the best way to migrate from IMAP4 -> Exchange.
    --Bill                                                                                                                                                                                                                                                                                                                                                           

  • Migration from On-Premise Exchange 2007 to O365

    Hello All,
          I am looking for a PDF or a case study on Migration from Exchange 2007 Geo Clustered Environment to O365 and if possible Challenges Faced during the process.
    Regards
    Sathya

    I think you need to check with MS Partners - I am not aware of any specific single document which covers everything and all the challenges , of course there are many from Public Folder Limits to Name Space to GAL you name it- depending how large is the environment
    you are moving from..  ..
    best way to start with hybrid configuration
    Where Technology Meets Talent

  • Migrating from Shared/Hosted Exchange 2010 to Onsite Exchange 2013

    Hi All,
    Hoping for some advice regarding a migration project I'm due to run with. A client has their current email data with a 3rd party hosted Exchange platform, this is a completely separate platform from their onsite AD infrastructure.
    Platform wise it is built on Exchange 2010 that only really allows OWA/Outlook Anywhere/ActiveSync access. We'd like to migrate this platform to a more dedicated onsite Exchange 2013 platform.
    Any software tools or advice appreciated, we're hoping to avoid exporting all the content to PST and manually importing but if this is the only way then fair enough. If there are utilities that may allow mailbox backfilling to suck the data out and in to
    the new mailboxes in 2013 that would be awesome.
    Thanks in advance!

    Hi,
    According to your description, my understanding is that you want to migrate mailboxes from the other forest to your forest.
    I recommend you refer to the following article to achieve migration:
    http://msexchangeguru.com/2013/11/03/e2013crossforestmigration/
    Hope this helps!
    Thanks.
    Niko Cheng
    TechNet Community Support

  • Migration from Rackspace to Exchange Online

    I am having an astoundingly hard time migrating one test email address (mine) from our current rackspace email address to my new exchange online. When I use the migration tool, I give it the 2 line CSV file (headers and 1 line of my address) and start the
    migration it just hangs for a couple of minutes trying to authenticate, I assume to the rackspace server.
    Maybe I dont have the right rackspace server name but I have tried rackspace.com, cp.rackspace.com, apps.rackspace.com and email.rackspace.com. My users use apps.rackspace.com to login to their email. I use cp.rackspace.com to get the control panel. I have
    seen them called email.rackspace .com and I threw in rackspace.com for good measure. When I login at apps... I use
    [email protected] as the login id. When I login to cp.... I use only rpierce.
    I have tried many cominations of server addesses, login ids etc. and I always die in "Connecting and Authenticating to source server". Does anybody have any ideas here?

    I realize this is a very old posting, but I just went through this migration process this weekend and wanted to share for future posterity.
    So, if you want, you can use the Microsoft Exchange EAC Migration tool to migrate over your email from Rackspace. It worked fairly well - HOWEVER, it is only email and not your contacts or calendar, which for us was not good. If you still want to do this,
    here's how:
    1) Go to the EAC Migration.
    2) Add - Migrate to exchange online
    3) For pretty much any hosted exchange system, you're probably not going to be able to do nice migrations like Cutover. Instead, you're stuck with IMAP...which is also why you can only do your email and not calendar. Companies like Rackspace will not give
    you enough access to do Cutover migrations.
    4) Upload your CSV file.
    5) For your IMAP server, type in your mail server. If you do not know it, you should be able to get it from Outlook. Go to your Account Settings. To get the proper server, you may need to go to "More Settings", Connection, Exchange Proxy Settings,
    and copy the proxy server name. For our Rackspace server, it was mex07a.emailsrvr.com
    5) Name the migration and start it off.
    Ok, so that does JUST email, but NOT calendar and contacts. We needed that. So, after a lot of hunting around and finding a couple of posts that helped, the only real option was migrationwiz.bittitan.com . It does cost about $11.99 an account, but it did
    a good job. You can setup trials and run free migrations which migrate a few emails/calendar/contacts as a test.
    When setting up the migration project, their system allows you to type in the source/destination servers, or they have a "I know my service provider" option. I clicked on that and was able to find the desired Rackspace server in the list.
    Everything went real well, EXCEPT stupid me had done the IMAP migration and then the MigrationWiz. All emails wound up being duplicated. MigrationWiz keeps track of what it migrates and does not duplicate, but since I had all of the emails in the destination
    already and then did it again, I duplicated everything.  I wound up having to switch to the "Classic" interface for MigrationWiz, selecting all accounts, clicking on Bulk Options > reset mailboxes, and reset the statistics and errors for all accounts.
    Then I had to clear everyone's email accounts out of mail. Again, problem - DNS was already pointed to new server, so I literally had to go into everyone's account on OWA and delete off all emails that were before the DNS change.  UGH.  Then I went
    back to MigrationWiz and started their migrations over.  So, much of that would not have been necessary if I didn't migrate with two different tools and if I had waited to switch DNS.

  • Migration from IMAP to Exchange online

    Got a little pickle going on here:We've purchased Exchange online as we were rather dissatisfied with our email provider. In migrating over, I've updated our MX records, but when Exchange tries to "find" them, the address is incorrect (mydomain-com.mail.protection.outlook.com.mydomain.com).Exchange is telling me it should be mydomain-com.mail.protection.outlook.com and that I should change that before it will work. The same issue is coming up for all my records as Exchange sees them (with the extra .mydomain.com added at the end.Our domain is registered through network solutions, but our hosting is done through this other company, and they are also hosting our website. I wanted to stick with them for the web hosting because there have been few to no issues on that side.Has anyone seen this before?
    This topic first appeared in the Spiceworks Community

    Thank you spiceworks, you help us to fight for users !Sysadmin Day (UK) went ahead just as i planned . Lots of new faces and old ones in a packed Screening room watching Tron fighting for users. Special thanks toChris M (Spiceworks)andGary H (Spiceworks)for organizing this event with chocolates, popcorn, T shirt and Beer.Adding some pictures:

  • Migrating from Linux Mail to Exchange 2013

    Is there any official documents of the Best Practices of migrating Linux Mail (Exim) to Exchange 2013?
    I appreciate any help that I can receive. Thanks in advance.
    My best regards.

    Hi,
    Basic on my research, I’m afraid that there is no tool for this kind of migration, we may need to start from PST file.
    We can use Microsoft Exchange PST Capture to search for PST files on computers in your organization and then import those files to mailboxes in your organization, for your reference:
    https://technet.microsoft.com/en-us/library/hh781036(v=exchg.141).aspx
    Besides, I find an similar thread about Migrate Exim to Exchange:
    https://social.technet.microsoft.com/Forums/office/en-US/0ff095c4-2334-4dd6-8d08-bbee1c98867e/migrating-from-linux-to-exchange-server-2010-question?forum=exchangesvradminlegacy
    Thanks
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

  • Calendar Free/Busy permissions being ignored for users migrated from Exchange 2003, fine for new users created on Exchange 2010

    I have uncovered a situation where it seems the free/busy permissions are being ignored for users that were migrated from Exchange 2003 to Exchange 2010.
    I have the default permissions set to only show Free/Busy Time, not Details.  However if I look at the calendar for a users who was migrated from the old Exchange 2003 server, I can see details.  If I look
    at a newer user who was added directly to the Exchange 2010 server, I (correctly) only see the times and "Free" or "Busy", not the specific details.
    I verified the permissions on the migrated mailboxes many different ways (Exfolders, cmdlets, etc) and all signs point to only allow showing Free/Busy Times, but alas, I can still see the Details as well.
    My users are using Outlook 2010.

    Hi,
    Does this issue occur on Outlook only or both Outlook and OWA?
    Since you have double checked the permissions via multiple methods, it seems there is nothing problem on permission. Please make sure the migration from Exchange 2003 server completed successfully.
    If in OWA everything goes well (cannot see details), it should be an issue on the Outlook client side.
    I suggest run Outlook under safe mode to avoid some AVs and add-ins.
    I suggest re-create profile to refresh the caches.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Migrate from Zimbra Open Source to Exchange 2013

    Hi there,
    I am currently using Zimbra email client and I am considering switching to Exchange 2013, is there a tool which can seamlessly allow migration of all user accounts and mailboxes from Zimbra to Exchange? 

    Hi Adam,
    Base on my knowledge, there are no tools to make a direct migration from Zimbra to Exchange 2013 Server, however , you can consider to use the following methods:
    1.   
    If there are a large number of mailboxes in Zimbra, you can use the
    Microsoft Transporter Suite to migrate
    mailboxes from Zimbra to Exchange 2007 at first, and then make the final transition to Exchange 2013 since Transporter Suite that is only supported in Exchange 2007 and the previous version.
    2.     
    If just a small number of mailboxes in Zimbra, you can configure outlook for all Zimbra users, export data into PST file, and then you can use “Import-Mailbox” cmdlet to
    import all PST files back to newly created users’ mailboxes on the exchange 2013 server
    Notes: Either way, please play the method in a lab environment to familiar with it
    Resources:
    Migrating
    from POP/IMAP to Exchange Server 2007 using Microsoft Transport Suite
    Microsoft Transporter Suite for Lotus Domino demo
    Best regards,
    Niko Cheng
    TechNet Community Support

  • Migrating from 2010 (single) to 2013 HA

    Hello All;
    I'm doing my long research into my new project and found a lot of helpful links but thought i'd reach out to the forum and see if anyone has any inside links, steps, details I can review.
    We currently are running
    Exchange 2010 SP3 (All roles on single server)
    Windows Server 2008R2 Enterprise
    Virtual Machine (VMware 5.5 ESXi)
    I'm planning on migrating to
    Exchange 2013 (two instances)
    High Availability 
    Windows Server 2012 R2 Enterprise
    So migrating from 1 single exchange 2010 server to multiple Exchange 2013 mailbox servers.  The goal is if 1 physical goes down for maintenance of anything else that can happen in this crazy world, the other separate server would still pass mail through
    the environment which I believe is separating the DAGs.
    I'm sure I've missed a lot here. Please Help because afterwards I have to upgrade from Lync 2010 to Lync 2013.

    thank you all for the helpful info & awesome links for reading.
    but i'm still a little lost in the HA capability of exchange 2013. We have two physical servers (built Raid 5 in the array for each - both having 2 arrays.)  How do we implement HA in this configuration if 1 server goes down ? Would that be separate
    DAGs with a 3rd front end ?
    example:
    Current
    Server 1 
    Exchange 2010 
    4 Databases 
    --- Migrate/Upgrade to
    Future
    Server 2                              Server3
    Exchange 2013                     Exchange 2013
    4 Databases  <------------>   4 Databases
    so if Server 2 disappeared, Server 3 could keep running transporting all mail. I'm assuming i'm missing the front end part of exchange 2013 that would pass the mail along to server 2 and server 3.
    I apoligize if this is noobish question; I've never implemented anything HA for exchange. We've always run all roles on a single instance.

  • Removing Public Folders after migration from Exchange 2007 to Exchange 2013

    Recently we migrated from Exchange 2007 to Exchange 2013.  We did not migrate Public Folders and are retiring them from Exchange altogether.  I shut Exchange 2007 off for a couple of weeks to ensure 2013 functions properly and it does so we're
    ready to decommission Exchange 2007.  I was able to remove all the mailbox databases without a glitch.  Using the EMC I click to remove the Public Folder database from Exchange 2007 and get the following message:
    Error: The public folder database "server\storage group - Public Folders\ Public Folder Database" contains folder replicas.  Before deleting the public folder database, remove the folders or move the replicas to another public folder database.
    Any help appreciated.

    Hi Terry,
    If you run the following command does it come back with any public folders?
    Get-PublicFolderStatistics -Server "SERVERNAME" | fl
    If nothing comes back you can follow this guide to manually remove the public folder database (at your own risk) http://haythamalex.wordpress.com/2011/11/24/how-to-force-exchange-server-public-folder-removal/
    Cheers,
    Jack
    I get alot of output from that command.
    AdminDisplayName        : Schedule+ Free Busy Information - Exchange Administrative Group (FYDIBOHF
                              23SPDLT)
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 28/07/2008 10:17:42 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300F31A2721DECB5542A9C497ED8ECFD
                              0290000000000070000
    ExpiryTime              : 05/05/2014 1:00:00 AM
    FolderPath              : SCHEDULE+ FREE BUSY\EX:/o=MY_ORGANIZATION/ou=Exc
                              hange Administrative Group (FYDIBOHF23SPDLT)
    IsDeletePending         : False
    ItemCount               : 70
    LastAccessTime          : 13/08/2014 1:00:00 AM
    LastModificationTime    : 28/07/2008 10:17:42 AM
    Name                    : EX:/o=MY_ORGANIZATION/ou=Exchange Administrative
                               Group (FYDIBOHF23SPDLT)
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 35309B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300F31A2721DECB5542A9C497ED8ECFD
                              0290000000000070000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : Offline Address Book - Exchange Administrative Group (FYDIBOHF23SPDLT)
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 28/07/2008 10:17:42 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300F31A2721DECB5542A9C497ED8ECFD
                              0290000000000080000
    ExpiryTime              : 
    FolderPath              : OFFLINE ADDRESS BOOK\EX:/o=MY_ORGANIZATION/ou=Ex
                              change Administrative Group (FYDIBOHF23SPDLT)
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 13/08/2014 1:00:00 AM
    LastModificationTime    : 28/07/2008 10:17:42 AM
    Name                    : EX:/o=MY_ORGANIZATION/ou=Exchange Administrative
                               Group (FYDIBOHF23SPDLT)
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300F31A2721DECB5542A9C497ED8ECFD
                              0290000000000080000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : globalevents
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 28/07/2008 10:17:42 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D328567C1359964195421018B3836
                              4A80000000000140000
    ExpiryTime              : 
    FolderPath              : StoreEvents{D771E649-5D06-499F-82D7-C26C4617A7AA}\globalevents
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 12/08/2014 10:32:21 AM
    LastModificationTime    : 28/07/2008 10:17:42 AM
    Name                    : globalevents
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D328567C1359964195421018B3836
                              4A80000000000140000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : internal
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 28/07/2008 10:17:42 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D328567C1359964195421018B3836
                              4A80000000000130000
    ExpiryTime              : 
    FolderPath              : StoreEvents{D771E649-5D06-499F-82D7-C26C4617A7AA}\internal
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 12/08/2014 10:32:21 AM
    LastModificationTime    : 28/07/2008 10:17:42 AM
    Name                    : internal
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D328567C1359964195421018B3836
                              4A80000000000130000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : OWAScratchPad{D771E649-5D06-499F-82D7-C26C4617A7AA}
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 28/07/2008 10:17:42 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D328567C1359964195421018B3836
                              4A80000000000160000
    ExpiryTime              : 
    FolderPath              : OWAScratchPad{D771E649-5D06-499F-82D7-C26C4617A7AA}
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 12/08/2014 10:32:21 AM
    LastModificationTime    : 12/08/2014 10:42:01 AM
    Name                    : OWAScratchPad{D771E649-5D06-499F-82D7-C26C4617A7AA}
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D328567C1359964195421018B3836
                              4A80000000000160000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : StoreEvents{D771E649-5D06-499F-82D7-C26C4617A7AA}
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 28/07/2008 10:17:42 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D328567C1359964195421018B3836
                              4A80000000000120000
    ExpiryTime              : 
    FolderPath              : StoreEvents{D771E649-5D06-499F-82D7-C26C4617A7AA}
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 12/08/2014 10:32:21 AM
    LastModificationTime    : 28/07/2008 10:17:42 AM
    Name                    : StoreEvents{D771E649-5D06-499F-82D7-C26C4617A7AA}
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D328567C1359964195421018B3836
                              4A80000000000120000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : ca77f936-9de2-11d3-9a74-009027301f0b
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 18/11/1999 3:48:02 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A03009029B751280DD3119A71009027301
                              F0B00000001D4CB0000
    ExpiryTime              : 14/07/2014 1:00:00 AM
    FolderPath              : OFFLINE ADDRESS BOOK\EX:/o=MY_ORGANIZATION/ou=MA
                              CC\OAB Version 2\ca77f936-9de2-11d3-9a74-009027301f0b
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 29/11/2011 10:22:02 AM
    LastModificationTime    : 27/08/2008 4:30:22 PM
    Name                    : ca77f936-9de2-11d3-9a74-009027301f0b
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A03009029B751280DD3119A71009027301
                              F0B00000001D4CB0000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : Default
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:51 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000160000
    ExpiryTime              : 
    FolderPath              : schema-root\Default
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 12/08/2014 10:32:21 AM
    LastModificationTime    : 27/08/2008 3:15:05 PM
    Name                    : Default
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000160000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : Schedule+ Free Busy Information - MACC
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 18/05/1999 8:48:25 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300A6E60A4F280DD3119A71009027301
                              F0B0000000000070000
    ExpiryTime              : 05/05/2014 1:00:00 AM
    FolderPath              : SCHEDULE+ FREE BUSY\EX:/o=MY_ORGANIZATION/ou=MAC
                              C
    IsDeletePending         : False
    ItemCount               : 130
    LastAccessTime          : 13/08/2014 1:00:00 AM
    LastModificationTime    : 28/08/2008 11:50:24 PM
    Name                    : EX:/o=MY_ORGANIZATION/ou=MACC
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 63971B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300A6E60A4F280DD3119A71009027301
                              F0B0000000000070000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : Offline Address Book - MACC
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 18/05/1999 8:48:25 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300A6E60A4F280DD3119A71009027301
                              F0B0000000000080000
    ExpiryTime              : 
    FolderPath              : OFFLINE ADDRESS BOOK\EX:/o=MY_ORGANIZATION/ou=MA
                              CC
    IsDeletePending         : False
    ItemCount               : 1
    LastAccessTime          : 13/08/2014 1:00:00 AM
    LastModificationTime    : 27/08/2008 4:30:23 PM
    Name                    : EX:/o=MY_ORGANIZATION/ou=MACC
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 22790B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300A6E60A4F280DD3119A71009027301
                              F0B0000000000080000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : exchangeV1
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:51 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000180000
    ExpiryTime              : 
    FolderPath              : schema-root\microsoft\exchangeV1
    IsDeletePending         : False
    ItemCount               : 401
    LastAccessTime          : 12/08/2014 10:32:21 AM
    LastModificationTime    : 27/08/2008 3:30:25 PM
    Name                    : exchangeV1
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 394761B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000180000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : globalevents
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:51 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000130000
    ExpiryTime              : 
    FolderPath              : StoreEvents{BEE1FD0C-1F99-465E-9736-5E445BD9EBE1}\globalevents
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 29/11/2011 10:21:08 AM
    LastModificationTime    : 27/08/2008 3:15:05 PM
    Name                    : globalevents
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000130000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : internal
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:51 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000120000
    ExpiryTime              : 
    FolderPath              : StoreEvents{BEE1FD0C-1F99-465E-9736-5E445BD9EBE1}\internal
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 29/11/2011 10:21:08 AM
    LastModificationTime    : 27/08/2008 3:30:24 PM
    Name                    : internal
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000120000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : microsoft
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:51 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000170000
    ExpiryTime              : 
    FolderPath              : schema-root\microsoft
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 12/08/2014 10:32:21 AM
    LastModificationTime    : 27/08/2008 3:30:25 PM
    Name                    : microsoft
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000170000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : OAB Version 2
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 19/05/1999 3:03:44 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A03009029B751280DD3119A71009027301
                              F0B0000000007DB0000
    ExpiryTime              : 14/07/2014 1:00:00 AM
    FolderPath              : OFFLINE ADDRESS BOOK\EX:/o=MY_ORGANIZATION/ou=MA
                              CC\OAB Version 2
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 29/11/2011 10:22:01 AM
    LastModificationTime    : 27/08/2008 4:30:22 PM
    Name                    : OAB Version 2
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A03009029B751280DD3119A71009027301
                              F0B0000000007DB0000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : OAB Version 2
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 06/08/2005 5:03:23 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300E175D0D6CAF21C47928E7FEBCA31A
                              9520000000079270000
    ExpiryTime              : 14/07/2014 1:00:00 AM
    FolderPath              : OFFLINE ADDRESS BOOK\/o=MY_ORGANIZATION/cn=addrl
                              ists/cn=oabs/cn=Default Offline Address List\OAB Version 2
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 29/07/2014 5:07:04 AM
    LastModificationTime    : 28/08/2008 11:50:24 PM
    Name                    : OAB Version 2
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300E175D0D6CAF21C47928E7FEBCA31A
                              9520000000079270000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : OAB Version 3a
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 06/08/2005 5:03:23 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300E175D0D6CAF21C47928E7FEBCA31A
                              9520000000079280000
    ExpiryTime              : 14/07/2014 1:00:00 AM
    FolderPath              : OFFLINE ADDRESS BOOK\/o=MY_ORGANIZATION/cn=addrl
                              ists/cn=oabs/cn=Default Offline Address List\OAB Version 3a
    IsDeletePending         : False
    ItemCount               : 17
    LastAccessTime          : 29/07/2014 5:07:04 AM
    LastModificationTime    : 27/08/2008 3:30:24 PM
    Name                    : OAB Version 3a
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 821324B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300E175D0D6CAF21C47928E7FEBCA31A
                              9520000000079280000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : OAB Version 4
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 17/12/2006 4:06:45 AM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE00000006C28B0000
    ExpiryTime              : 14/07/2014 1:00:00 AM
    FolderPath              : OFFLINE ADDRESS BOOK\/o=MY_ORGANIZATION/cn=addrl
                              ists/cn=oabs/cn=Default Offline Address List\OAB Version 4
    IsDeletePending         : False
    ItemCount               : 4
    LastAccessTime          : 29/07/2014 5:07:04 AM
    LastModificationTime    : 27/08/2008 3:30:25 PM
    Name                    : OAB Version 4
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 667412B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE00000006C28B0000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : OWAScratchPad{BEE1FD0C-1F99-465E-9736-5E445BD9EBE1}
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:51 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000190000
    ExpiryTime              : 
    FolderPath              : OWAScratchPad{BEE1FD0C-1F99-465E-9736-5E445BD9EBE1}
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 21/07/2014 2:42:30 PM
    LastModificationTime    : 27/08/2008 3:15:05 PM
    Name                    : OWAScratchPad{BEE1FD0C-1F99-465E-9736-5E445BD9EBE1}
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000190000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : schema-root
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:51 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000150000
    ExpiryTime              : 
    FolderPath              : schema-root
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 12/08/2014 10:32:21 AM
    LastModificationTime    : 27/08/2008 3:30:26 PM
    Name                    : schema-root
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000150000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : StoreEvents{BEE1FD0C-1F99-465E-9736-5E445BD9EBE1}
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:51 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000110000
    ExpiryTime              : 
    FolderPath              : StoreEvents{BEE1FD0C-1F99-465E-9736-5E445BD9EBE1}
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 21/07/2014 2:42:30 PM
    LastModificationTime    : 27/08/2008 3:30:25 PM
    Name                    : StoreEvents{BEE1FD0C-1F99-465E-9736-5E445BD9EBE1}
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300D93713B01F1B2D47ACEF7E4B5F2F2
                              9EE0000000000110000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : Offline Address Book - /o=MY_ORGANIZATION/cn=add
                              rlists/cn=oabs/cn=Default Offline Address List
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 05/08/2005 4:25:34 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300109CB6B7A7C10441B115571996104
                              6DA0000000000080000
    ExpiryTime              : 
    FolderPath              : OFFLINE ADDRESS BOOK\/o=MY_ORGANIZATION/cn=addrl
                              ists/cn=oabs/cn=Default Offline Address List
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 29/07/2014 1:00:00 AM
    LastModificationTime    : 27/08/2008 4:30:22 PM
    Name                    : /o=MY_ORGANIZATION/cn=addrlists/cn=oabs/cn=Defau
                              lt Offline Address List
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300109CB6B7A7C10441B115571996104
                              6DA0000000000080000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca
    AdminDisplayName        : Internet Newsgroups
    AssociatedItemCount     : 0
    ContactCount            : 0
    CreationTime            : 22/08/2005 1:38:50 PM
    DeletedItemCount        : 0
    EntryId                 : 000000001A447390AA6611CD9BC800AA002FC45A0300F020D914C926D011A40900C04FD7B
                              D87FFFFFFFF00030000
    ExpiryTime              : 06/08/2014 1:00:00 AM
    FolderPath              : Internet Newsgroups
    IsDeletePending         : False
    ItemCount               : 0
    LastAccessTime          : 22/07/2014 9:32:58 AM
    LastModificationTime    : 24/10/2012 1:08:21 PM
    Name                    : Internet Newsgroups
    OwnerCount              : 0
    TotalAssociatedItemSize : 0B
    TotalDeletedItemSize    : 0B
    TotalItemSize           : 0B
    ServerName              : EXSVR2007
    StorageGroupName        : Second Storage Group - Public Folders
    DatabaseName            : Public Folder Database - Public Folders
    Identity                : 000000001A447390AA6611CD9BC800AA002FC45A0300F020D914C926D011A40900C04FD7B
                              D87FFFFFFFF00030000
    IsValid                 : True
    OriginatingServer       : EXSVR2007.mydomain.ca

  • ActiveSync stops working after migrating from Exchange 2007 to Exchange 2013

    We have started the migration from Exchange 2007 to Exchange 2013. We've followed best practices and everything is working great except ActiveSync. I've performed Exchange migrations in the past so this is nothing new for me. I've also been referring to
    a great guide which has been a big help,
    http://www.msexchange.org/articles-tutorials/exchange-server-2013/migration-deployment/planning-and-migrating-small-organization-exchange-2007-2013-part1.html.
    Once a user is migrated from Exchange 2007 to 2013, ActiveSync stops working properly. Email can be pulled to the device (Nokia Lumia 625 running Windows Phone 8) by performing a manual sync. But DirectPush is not working. The strange part is it's not affecting
    everyone who's been migrated. Anyone who is still on Exchange 2007 is not affected.
    At first I thought it was our wildcard certificate. 99% of our users are running Outlook 2013 on Windows 7 or higher but we do have a few terminal servers still running Outlook 2010. Outlook 2010 was giving us certificate errors. I realized it was the wildcard
    certificate. Rather than making changes to the OutlookProvider I simply obtained a new SAN certificate. Although that resolved the issues for Outlook 2010 users, ActiveSync was still a problem.
    Rebooting the phones and removing the email account from the user's device and re-adding it didn't resolve the issue either.
    Then I performed an iisreset on the CAS server. This didn't help either. I didn't know it at the time, but I was getting closer...
    I tried using the cmdlet Test-ActiveSyncConnectivity but it gave me the following error:
    WARNING: Test user 'extest_0d9a45b025374' isn't accessible, so this cmdlet won't be able to test Client Access server
    connectivity.
    Could not find or sign in with user DOMAIN.com\extest_0d9a45b025374. If this task is being run without
    credentials, sign in as a Domain Administrator, and then run Scripts\new-TestCasConnectivityUser.ps1 to verify that
    the user exists on Mailbox server EX02.DOMAIN.COM
    I started reviewing how Exchange 2013 proxied information from the CAS to the mailbox server and realized the issue may in fact be on the mailbox server.
    I performed an iisreset on the mailbox server and all of a sudden ActiveSync started working again. Awesome!
    I can't explain why. The only thing I can assume is when some users were migrated from 2007 to 2013 something wasn't being triggered on the Exchange 2013 side. Resetting IIS resolved the issue. I guess I'll have to do an IIS reset after I perform a batch
    of migrations. Disabling ActiveSync and re-enabling it for the affected users didn't help - only the IISRESET resolved the issue.
    If anyone has any information as to why this happens, please chime in. Also, if anyone knows why I can't run the Test-ActiveSyncConnectivity cmdlet, I'd appreciate the help.
    Thanks.

    Hi,
    In Exchange 2013, the Public Folder is changed to Public Folder mailbox instead of Public Folder in Exchange 2007 database.
    Due to the changes in how public folders are stored, legacy Exchange mailboxes are unable to access the public folder hierarchy on Exchange 2013 servers. However, user mailboxes on Exchange 2013 servers or Exchange Online can connect to legacy
    public folders. Exchange 2013 public folders and legacy public folders can’t exist in your Exchange organization simultaneously. This effectively means that
    there’s no coexistence between versions.
    For this reason, it’s recommended that prior to migrating your public folders, you should
    first migrate your all legacy mailboxes to Exchange 2013. For more information about migrating public folder from previous versions, please refer to:
    http://technet.microsoft.com/en-us/library/jj150486(v=exchg.150).aspx
    (Please note the What do you need to know before you begin part in this link)
    Regards,
    Winnie Liang
    TechNet Community Support

  • Cross Forest Migration from Exchange 2007 to Exchange 2013

    Hi
    Could anybody advice me the steps also the  pros and cons for below mentioned environment if we are going for the cross forest migration.
    Source 
    Domain -   test.local
    Active Directory -  Windows 2003
    Exchange Server - 2007
    Target
    Domain -   test.net
    Active Directory -  Windows 2012
    Exchange Server - 2013
    Also if it is possible ,
    How could I remove the source environment including the exchange servers. after the migration ?
    Regards
    Muralee

    Hi Oliver ,
    Please suggest us.               
     In my environment we are in a plan to migrate from exchange 2007 to exchange 2013 (cross forest migration).
    Source : Exchange 2007 with sp3 ru 10 
    Target : Exchange 2013 with cu2 ( new environment yet to be created).
    Trust : Forest trust in place (two way )
    Domain and forest functional level : 2003 in both target and source  
    Migration Steps :
    Step1 :
    We are in a plan to execute 'preparemoverequest.ps1' first in the target forest ,so that we will get the disable MEU
    in the target forest.
    Step2:
    Then we are going to use ADMT to migrate users SID'S and password .
    Step3:
    Then we are going to move the mailboxes with New-moverequest  
    Please have a look in to our steps and suggest us ,whether we are going to proceed the migration in a right way or not
    .Is anything needs to be changed please intimate me .
    Thanks 
    S.Nithyanandham 
    Hey there,
    Sorry for taking a little while to get back to you, i've been busy working on Hosted Lync deployments!
    Use ADMT first, then when using preparemoverequest.ps1 script using the -uselocalobject cmdlet. This will then tie it up to the ADMT migrated account.
    More info in this thread here: http://social.technet.microsoft.com/Forums/windowsserver/en-US/2916e931-36a0-4ba4-8c04-196dbe792b44/preparemoverequestps1-and-admt?forum=winserverMigration
    Oliver
    Oliver Moazzezi | Exchange MVP, MCSA:M, MCITP:Exchange 2010,MCITP:Exchange 2013, BA (Hons) Anim | http://www.exchange2010.com | http://www.cobweb.com | http://twitter.com/OliverMoazzezi

  • Migrating from Exchange 2007 to exchange 2013 ( special case )

    Hello , 
    what is the BEST scenario ( fastest , most efficient , most secure in terms of data loss )  , to migrate from exchange 2007 ( one server , all exchange roles installed on this server , 1200 mailbox ) , to exchange 2013 ? 
    knowing my environment needs to be connected to their mailboxes , 24/7 ! 
    it's very frustrating . 
    and i have no clue even if this is the right place to post about this , if not please refer me as to where to post . 
    Also , All my domain controllers are 2008 .

    It's fine to post your question here, and you are fine with Server 2008 Domain Controllers - that is a supported scenario.
    If you haven't performed such an upgrade and you need to have 24/7 mailbox availability, I would seriously recommend you to duplicate the production environment on a test network and run through the upgrade at least once.
    Most people neglect the Outlook clients requirements - they need to be updated and include several specific updates, which allow the automatic reconfiguration of internal clients. If you are preparing for this upgrade, you should be aware that all internal
    Outlook clients switch to Outlook Anywhere. Clients that miss these updates will get connectivity problems.
    Another common problem is the configuration of the Exchange URL - I mean the Exchange 2013 URL and the modified Exchange 2007 URL that will allow the co-existence. In your case, you definitely need to plan for co-existence - that includes requesting and
    installing a new Exchange UCC (Multiple Domain Certificate) on both Exchange servers, configuring Split DNS (or preferably PinPoint DNS zones), and correct timing when replacing the existing Certificate on the Exchange 2007 server. Failure to configure the
    correct URL (and it's quite easy to miss one, so triple check them) will get you in trouble.
    Once you get through the switchover (switching the mail flow and Client Access through the Exchange 2013 server), move just a couple of test mailboxes and check the result.
    Finally, if you are moving the Public Folders, make sure that the lock is really applied before you complete the process. Most people proceed right away and that get's the process stuck. If you can afford it (the mailboxes are already on the Exchange 2013
    server at that point), just restart the Exchange 2007 server (after locking the Public Folders) and then complete the Public Folder migration.
    Good Luck with the project!
    Step by Step Screencasts and Video Tutorials

Maybe you are looking for