Migrating meeting resources from 2007 to 2013

We migrated our resource mailboxes thru the move mailboxes in 2013 EAC but now we're at the point of decommissioning our 2007 servers.  Before the actual decommission we stopped all 2007 services and dismounted all 2007 databases.  Once we did
this the resources would no longer work - errors pertaining to cannot directly book the resource.
I had to bring up the public folder database for the moved resources to work again.  We do not use public folders any longer so we did not do any type of public folder migration.  Do I need to do this for the resources to work?

You can take a look at below given links to understand about Step-by-Step Migration Exchange 2007 to 2013.
http://blogs.technet.com/b/meamcs/archive/2013/07/25/part-1-step-by-step-exchange-2007-to-2013-migration.aspx
hope it helps.

Similar Messages

  • I cannot configure the clients with POP account after migrating the Exchange from 2007 to 2013

    Hi,
    When i configure the POP account on Outlook 2010 is giving the error message
    "Send test e-mail message: Cannot send the message. Verify the e-mail address in your account properties.  The server responded: 550 5.7.1 Client does not have permissions to submit to this server"
    please help me out on this,
    Thanks in advance
    Regards,
    Murugan.S

    The OP says users can't send mail.  POP is not used to send mail.
    I strongly recommend you have users reconfigure their clients to send using port 587.  This has been the default configuration since the introduction of Exchange 2007.  You can modify the default receive connector, or add another receive connector
    to allow clients to connect and authenticate if you want, but when you do so, you will risk causing message mail flow to fail.
    I am not going to try to tell you how to do it precisely because I don't want to be a party to you messing up your mail flow.  Here's more documentation on receive connectors from TechNet.
    http://technet.microsoft.com/en-us/library/aa996395(v=exchg.150).aspx
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Mailflow Problem After Migrating Mailbox From 2007 to 2013

    I thought I was at the point of migrating our mailboxes from 2007 to 2013.  I had created a new test mailbox on the 2013 server and changed all the DNS and virtual directories for the legacy on the 2007 server and was able to successfully send mail
    to the test mailbox out and in both internally and externally.  Then I migrated my first mailbox from 2007 to 2013 and things went south.
    I CAN NOT:
    Send e-mail from a mailbox on the 2007 server to the migrated mailbox on the 2013 server.
    Send e-mail from migrated mailbox to external e-mail address.
    I CAN:
    Send e-mail from the migrated mailbox to a 2007 mailbox and the test mailbox on the 2013 server.
    Send e-mail from the internet to the migrated mailbox and the 2013 test mailbox.
    I unfortunately am running Exchange 2013 with CU6 (I am already aware of the activesync issue and delegation crash issue but saw the info too late).
    Suggestions please!!

    Hi,
    Before going further, I'd like to ask the following questions to troubleshoot the issue:
    1. Could you send email from 2007 mailbox to the test mailbox on 2013 server? 
    2. Did you get any NDR message when sending email to the migrated mailbox failed?
    In addition, I recommend you try the following methods to find out the root cause:
    1. Try to use message tracking tool in exchange 2007 server ,it will help us to find the email which was sent to the migrated mailbox .
    2. Run the following command to check the permission groups of the receive connector:
    Get-Receiveconnector |fl Name,PermissionGroups,Exchangeversion
    Best regards,
    Niko Cheng
    TechNet Community Support

  • Migrate only a selection of public folders from 2007 to 2013

    Like the subject says- I've been asked to move a small selection only from 2007 to 2013. Essentially out of 4700 public folders they only want to migrate 170. I've always just moved them all and can't think of a way to do this. I can't just delete
    the rest of the public folders on 2007- they want to keep them for a short while just in case they've screwed their logic. (They are relying on LastModifiedTime- no access in the last 6 months).
    Any Suggestions?
    regards
    Tony

    I agree with Gary that with the MS default process this is true, however if you are open to 3rd party products Lucid8's DigiScope would allow you to open an Offline Copy of the 2007 PF, Filter out what you don't want to copy and then restore the balance
    of folders from the offline EDB directly into the 2013 PF.
    And of course you could also export the 170 folders to PST and then import to 2013 however that could get a bit ugly...
    Search, Recover, & Extract Mailboxes, Folders, & Email Items from Offline Exchange Mailbox and Public Folder EDB's and Live Exchange Servers or Import/Migrate direct from Offline EDB to Any Production Exchange Server, even cross version i.e. 2003
    --> 2007 --> 2010 --> 2013 with Lucid8's
    DigiScope

  • Migrated mailbox from 2007 to 2013 now unable to connect to Samsung S4

    I'm in the process of migrating from 2007 to 2013.
    I have moved successfully a several mailbox's from Ex2007 to Ex2013.  Currently, all the EAS policies reside on the 2007 server and I have been successful reconnecting all the smartphones so far. 
    However, I have a Samsung S4 that is refusing to connect.   Any ideas what I need to do?
    Penny Miller
    PennyM

    I checked the phone settings in his OWA account and it is blank.  How can I add it in?
    Penny
    PennyM

  • DL Migration from 2007 to 2013

    Guys,
    We need to migrate 150 DL's from 2007 to 2013.
    2007 DL's are in .companyname<department> format and in 2013 special characters are not supported
    We would like to change the format to DL-companyname....
    Is there is script to copy the existing list of DL's including permissions in 2007, recreate new one's in the new format and add the permissions in 2013?
    Thanks
    D

    Hi 
    Hi Here you go 
    You can use this one
    foreach ($DL in (Get-DistributionGroup -ResultSize Unlimited)) { $owners = Get-ADPermission $DL.identity | ?{$_.User -notlike “*Exchange*” -and $_.User -notlike “S-*” -and $_.User -notlike “*Organization*” -and $_.User -notlike “NT*” -and $_.User -notlike
    “*Domain Admins*” -and $_.User -notlike “*Enterprise Admins” -and $_.User -notlike “BUILTIN*” -and $_.User –notlike “*Delegated Setup*”} | %{$_.user.tostring()};Set-DistributionGroup $DL -BypassSecurityGroupManagerCheck -ManagedBy $owners }
    Refer below link for more information which has clear cut information
    http://exchangeserverinfo.net/2013/12/upgrading-distribution-groups-from-exchange-2007-to-exchange-2013/
    http://gallery.technet.microsoft.com/scriptcenter/8c22734a-b237-4bba-ada5-74a49321f159
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com

  • Resources and public folder database - migration from 2007 to 2013

    We migrated our resource mailboxes thru the move mailboxes in 2013 EAC but now we're at the point of decommissioning our 2007 servers.  Before the actual decommission we stopped all 2007 services and dismounted all 2007 databases.  Once we did
    this the resources would no longer work - errors pertaining to cannot directly book the resource.
    I had to bring up the public folder database for the moved resources to work again.  We do not use public folders any longer so we did not do any type of public folder migration.  Do I need to do this for the resources to work?

    Hi,
    Could you please tell me your Outlook version?
    I saw someone got the following error when he tried to book resource after migrating from Exchange 2007 to Exchange 2010, if Outlook version is Outlook 2007. But Outlook 2010 worked well.
    "Cannot directly book a resource for this meeting."
    Please switch between online and cached mode to check the result. And please check if this issue occurs in OWA.
    If possible, please use Outlook 2010 to check the result.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Outlook Users connection issues after Mailbox Migration from 2007 to 2013

    Hi,
    We have a coexistance between Exchange 2007 SP3 and Exchange 2013 CU7. There is an issue when after migrating the user from exchange 2007 mailbox to exchange 2013, the outlook keeps on prompting for password when it is being launched. Checking the Connection
    Status we found that there is a connection to the old 2007 Server and the type is Exchange Public Folder. I have migrated the public folder and checked the Mailbox of the user and found that the DefaultPublicFolderMailbox is set to the 2013 Public Folder Mailbox.
    If I check my 2013 MailboxDatabase Properties, It sill shows that PublicFolderDatabase Properties is still pointing to the 2007 Public Folder Database. Any resolution on this?
    Another issue is, We set outlook anywhere on the 2013 to use basic authentication, however, when users are migrated to 2013 the Outlook client changes to NTLM. even if we set the outlook to basic to make it work, it still comes back to NTLM after a while.
    I did most of the resolutions online to use powershell to make changes to outlook anywhere but no luck. any suggestions is highly appreciated.
    Thanks & Regards,
    Arthur

    Hi,
    For the first problem, please check the msExchHomePublicMDB attribute for mailbox database in Exchange 2013, you can check this attribute in ADSIEdit.
    If this attribute is pointing to Exchange 2007 public folder database, please set to blank. After that, please restart the information service.
    And for the second question, I suggest we open a new case for this issue. In order to avoid confusion and keep track of troubleshooting steps, we usually troubleshoot one
    issue per thread in order to find a resolution efficiently.
    Thanks for your understanding.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Belinda Ma
    TechNet Community Support

  • Migrating Exchange server from 2007 SP3 to 2013

    Hi All,
    We are planning to migrate our exchange server 2007 SP3 to 2013 , what are all the best options available?
    Thanks,
    Mani L
    Mani L

    Hi,
    Here are some articles which can help you to migrate from Exchange 2007 to Exchange 2013 for your reference.
    Upgrade from Exchange 2007 to Exchange 2013
    http://technet.microsoft.com/en-us/library/jj898581(v=exchg.150).aspx
    Checklist: Upgrade from Exchange 2007
    http://technet.microsoft.com/en-us/library/ff805032(v=exchg.150).aspx
    Install Exchange 2013 in an Existing Exchange 2007 Organization
    http://technet.microsoft.com/en-us/library/jj898582(v=exchg.150).aspx
    Hope this helps.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Migration from 2007 to 2013

    hi ,
    I have to migrate from sharepoint 2007 to 2013 so please provide me the all details .. from starting... 
    Thanks

    @Sol4u, Check the similar threads below
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a91880e6-da10-4d37-b951-167cc5deaa6a/migration-from-moss-2007-to-sharepoint-2013?forum=sharepointadmin
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/e9542ff4-7812-4e41-9a31-1fe8966c2988/moss-2007-to-sharepoint-2013-migration?forum=sharepointgeneral
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Workflow migration from 2007 to 2013?

    We are planning on moving from SP 2007 to 2013.  After looking at the new workflow platform in 2013, I'm wondering if our custom Designer-made workflows are going to migrate over.  It looks, after only one day of trying out Designer 2013, that
    the workflow functionality is greatly reduced.  For example, in the actions, I don't even see the AND and OR operators, or "begins with" or "includes" etc.  Can anyone point me to any good workaround tutorials/articles? 
    There are no mistakes; every result tells you something of value about what you are trying to accomplish.

    Hi run4it,
    How did you designe your SharePoint 2013 workflow?
    SharePoint Designer 2013 workflow also has the operators AND/OR when I insert multiple conditions, and when I insert the list text type column like "Title", it will show "begins with" and "includes" operators like the following image, please try again. 
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Daniel Yang
    TechNet Community Support

  • Expiration date not displaying after upgrade from 2007 to 2013

    I recently upgraded from MOSS 2007 to 2013.  I have information management set up on a library of InfoPath forms.  For the forms that were created prior to the upgrade, the expiration date is displaying and actually get updated if I modify them. 
    But none of my forms that have been created after the upgrade, are displaying when the expiration date is, which should be one year from modify date.  If I modify the forms created prior to the upgrade, they reflect the new, update date.
    Are these new forms not getting the policy applied to them, and why not?  I am not sure why the older forms are getting updated, but not my new ones.
    Denise E.

    Hi Denise,
    According to your description, my understanding is that the Expiration date column was not displaying values after upgrading from SharePoint 2007 to SharePoint 2013.
    Per my knowledge, we can only use the date column which is added to the library or list or the Declared Recorded date to set the retention policy, so if the Expiration date is used in the retention policy then the Expiration date should be a column in the
    library or list.
    I recommend to check the retention policy in the library and see which column is used in the retention policy as the image below shows:
    After that, go to the Library settings to find this column.
    Could you please provide screenshots of the retention policy and the columns in the Library settings page?
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Migrating Biztalk Mapps from 2009 to 2013

    Hi<o:p></o:p>
    Am Working
    on Biztalk Migration (2k9 to 2013). I found few database functoids like Date
    formatter, Code table value extractor, error extractor and Code table lookup in
    biztalk 2k9 are not available in 2013. What are the substitutes for these
    missing functoids in 2013.
    The above mentioned DB functoids vanishes from the map if i open the same in 2013. Is there any thing else i need to keep in mind while migrating from 2009 to 2013 ?
    Someone please
    help me on this<o:p></o:p>
    Thanks in
    advance.<o:p></o:p>

    These functoids are custom functoids. No standard functoids has disappeared from 2009 to 2013!
    Since they are 3rd. party functoids you must have installed in your 2009 environment, you will, naturally, need to install them again.
    Morten la Cour

  • Do I have to buy license for SharePoint 2010 to upgrade from 2007 to 2013?

    Hi, we have SharePoint 2007 (Enterprise) and now we want to upgrade directly to SharePoint 2013. 
    I have been told that 2007 to 2013 is not directly possible and I have to go 2007 to 2010 to 2013.
    Does this mean I have to buy license for SP 2010 just for the upgrade process?
    Thanks in advance.

    No, the SharePoint 2013 key won't work for the SharePoint 2010 installation. Usually if you have downgrade rights (as part of your EA) or if you have a TechNet/MSDN subscription you'll have additional keys for older versions.
    If all else fails, you can use the
    SharePoint 2010 trial keys, provided you can migrate your data within 180 days.
    Jason Warren
    Infrastructure Architect
    Habanero Consulting Group
    habaneroconsulting.com/blog

  • How to Migrate MS Project Server 2007 to 2013

    Hi
    Can any one share some reference for migrating Project Server 2007 to 2013.
    As in general process--
    We can take the backup and and restore it in 2013 environment.
    How to migrate Portfolio Server?
    After restroring any steps need to be followed.
    Please guide.
    Thanks
    Geeth If you feel that the answer which i gave you is Helpful please select it as Answer/helpful.

    Hello,
    For Portfolio Server 2007 options, review this guide:
    http://www.microsoft.com/en-us/download/details.aspx?id=20815
    Also see:
    http://blogs.technet.com/b/projectadministration/archive/2010/07/21/anouncing-project-portfolio-server-2007-migration-documentation-to-project-server-2010-just-released.aspx
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

Maybe you are looking for