SP 2010 and Office 365 C2R owssupp.dll or interceptor.dll issues

Hello,
At my company we're having compatibility issues after upgrading our
Windows 7 SP1 64-bit NL-NL laptops
to Internet Explorer 11 and Office 365 ProPlus Click-to-Run
32-bit NL-NL.
Our
initial notebook configuration had Internet Explorer 9,
Office 2007 ProPlus and Lync Basic 2013 installed.
The upgrade path exists of deleting Office 2007 and Lync Basic 2013, installing the Office 365
Click-to-Run and letting Internet Explorer update via the Windows Updates
The issues we experience happen between our
SharePoint 2010 On Premise and the SharePoint Online environment.
While we had no issues before, now, when trying to edit a document on SharePoint 2010 On Premise
we get the message: "A Microsoft SharePoint Foundation compatible application could not be found to
edit the document"
Doing some digging around online a lot of topics point to the ‘owssupp.dll’ as a possible culprit
but to no avail we tried a number of suggested solutions, listed below. Some of these solutions might propably work for the Office 2013
MSI installation but none of them seem to apply to the Click-to-Run version.
- Repair Office (Fast and Online)
- Delete and reinstall Office
- Switch in IE between 32 and 64 bit mode but this is
not possible with Internet Explorer 11
- Tried the Microsoft Hotfix KB
2726997 but got the message that it
does not apply to our system.
- Check registry references if owssupp.dll points to Office 15
- Manually re-register owssupp.dll
- Replaced owssupp.dll by the Office 2007 version
- Checked if all SharePoint add-ons in Internet Explorer were enabled        
-> 'Sharepoint OpenDocuments Class' refers to interceptor.dll
not owssupp.dll
- Check/Install “Microsoft Sharepoint Foundation Support”..
Click-to-Run doesn’t
have that option
- Create registry keys in:  HKEY_CLASSES_ROOT\Installer\Components\55EAFA0B8A4403B428FDE038B252C621
What there should be: HKCR\Installer\Components\55EAFA0B8A4403B428FDE038B252C621\x86\1033
What should be added: HKCR\Installer\Components\55EAFA0B8A4403B428FDE038B252C621\x86\1043
But the 55EAFA0B8A4403B428FDE038B252C621-key
doesn't exist with the Click-to-Run version and manually creating it doesn’t help
- Put the site in the 'Intranet Zone'
- Put the site in the 'Trusted Sites' list (prodsharepoint.kindengezin.be)
         -> HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\CurrentVersion\Internet
Settings\ZoneMapKey                    -> *.kindengezin.be
(REG_SZ, Data: 1)
- Check if our SharePoint 2010 On Premis environment is completely up-to-date
- Create
C:\Program Files (x86)\Microsoft Office\Office 15\ and placed the owsupp.dll in it; in case SharePoint would be looking for it in the wrong place;        -> Keep in mind that the folder structure with Office
365 ProPlus Click-to-Run is different than the 'normal' Office 2013 as the owssupp.dll is now located in C:\Program Files\Microsoft Office 15\root\office15\owssupp.dll
- Checked if our Firewall settings are up to date (IP-ranges and other settings)
The test where I got it to
work, but is not a solution in my personal opinion is: Open the Lync Basic 2013 setup and only check
Support for Microsoft SharePoint Foundation
In your Programs and Features list you now have 2 entries: Microsoft Lync Basic 2013 Microsoft Office
365 ProPlus – nl-nl
I do not trust this “solution” as I do not know the future consequences of this “solution” in terms
of updates or functionality.

Anyone? Have OWSSUPP.DLL issues with Office15 and IE11 as well - can't get the "Connect to Outlook" menu option on SharePoint calendars to show.

Similar Messages

  • How to use Powershell to set delegate for user mailbox in Exchange 2010 and Office 365

    Hello,
    Can you please tell me if I can set delegate for user mailbox in Exchange 2010 or Office 365 using Powershell?
    If I can, then how can I do that? (which Powershell commands for setting the delegate?)
    Many thanks, and have a good day!

    Hi,
    If you wanted to add a delegate to possiblly a large number of users or you do this during mailbox provisioning. So the following script will use
    impersonation to access another users mailbox and add a delegate.
    $mbtoDelegate = "[email protected]"
    $delegatetoAdd = "[email protected]"
    $dllpath = "C:\Program Files\Microsoft\Exchange\Web Services\1.0\Microsoft.Exchange.WebServices.dll"
    [void][Reflection.Assembly]::LoadFile($dllpath)
    $service = new-object Microsoft.Exchange.WebServices.Data.ExchangeService([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2007_SP1)
    $windowsIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent()
    $sidbind = "LDAP://<SID=" + $windowsIdentity.user.Value.ToString() + ">"
    $aceuser = [ADSI]$sidbind
    $service.AutodiscoverUrl($aceuser.mail.ToString())
    $service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress,
    $mbtoDelegate);
    $mbMailbox = new-object Microsoft.Exchange.WebServices.Data.Mailbox($mbtoDelegate)
    $dgUser = new-object Microsoft.Exchange.WebServices.Data.DelegateUser($delegatetoAdd)
    $dgUser.ViewPrivateItems = $false
    $dgUser.ReceiveCopiesOfMeetingMessages = $false
    $dgUser.Permissions.CalendarFolderPermissionLevel = [Microsoft.Exchange.WebServices.Data.DelegateFolderPermissionLevel]::Editor
    $dgUser.Permissions.InboxFolderPermissionLevel = [Microsoft.Exchange.WebServices.Data.DelegateFolderPermissionLevel]::Reviewer
    $dgArray = new-object Microsoft.Exchange.WebServices.Data.DelegateUser[] 1
    $dgArray[0] = $dgUser
    $service.AddDelegates($mbMailbox, [Microsoft.Exchange.WebServices.Data.MeetingRequestsDeliveryScope]::DelegatesAndMe, $dgArray);
    Hope this helps.

  • Exchange 2010 and Office 365

    Haven't been able to find a definitive answer from our friends at Microsoft or Google, so here goes!I have a client (lets call the Client A) with onsite SBS Server (Exchange 2010 SP3) of 50 seats. The client has multiple meeting rooms, defined as resource mailboxes and makes extensive use of free/busy info for booking staff and resources for meetings.That part is all good!Recently, a related organization (who we'll call Client B) moved into the same office with them. The second organization (who has IT support provided by another company) uses Office 365 for their email services and has a completely different domain name etc.Because they are related, Client A has requested that they and Client B integrate their calendars so that staff from clients A & B can see each others free/busy info, invite each other to meetings and staff from...
    This topic first appeared in the Spiceworks Community

    Hi,
    If you wanted to add a delegate to possiblly a large number of users or you do this during mailbox provisioning. So the following script will use
    impersonation to access another users mailbox and add a delegate.
    $mbtoDelegate = "[email protected]"
    $delegatetoAdd = "[email protected]"
    $dllpath = "C:\Program Files\Microsoft\Exchange\Web Services\1.0\Microsoft.Exchange.WebServices.dll"
    [void][Reflection.Assembly]::LoadFile($dllpath)
    $service = new-object Microsoft.Exchange.WebServices.Data.ExchangeService([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2007_SP1)
    $windowsIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent()
    $sidbind = "LDAP://<SID=" + $windowsIdentity.user.Value.ToString() + ">"
    $aceuser = [ADSI]$sidbind
    $service.AutodiscoverUrl($aceuser.mail.ToString())
    $service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress,
    $mbtoDelegate);
    $mbMailbox = new-object Microsoft.Exchange.WebServices.Data.Mailbox($mbtoDelegate)
    $dgUser = new-object Microsoft.Exchange.WebServices.Data.DelegateUser($delegatetoAdd)
    $dgUser.ViewPrivateItems = $false
    $dgUser.ReceiveCopiesOfMeetingMessages = $false
    $dgUser.Permissions.CalendarFolderPermissionLevel = [Microsoft.Exchange.WebServices.Data.DelegateFolderPermissionLevel]::Editor
    $dgUser.Permissions.InboxFolderPermissionLevel = [Microsoft.Exchange.WebServices.Data.DelegateFolderPermissionLevel]::Reviewer
    $dgArray = new-object Microsoft.Exchange.WebServices.Data.DelegateUser[] 1
    $dgArray[0] = $dgUser
    $service.AddDelegates($mbMailbox, [Microsoft.Exchange.WebServices.Data.MeetingRequestsDeliveryScope]::DelegatesAndMe, $dgArray);
    Hope this helps.

  • Office 2010 and Office 365 Home Premium

    I had a free trial of Microsoft Office 2010. When 365 was introduced I decided to purchase it. I purchased Microsoft Office 365 Home Premium. I ran the install and can sign on to Sky Drive and see recent documents etc. I also have a Surface that I use
    SkyDrive with. The issue is that I still have the trial version of 2010 on my computer and whenever I open Excel or Word etc to start a new document or file or to open an existing, it says that my trial is expired. When I try to enter my product key to upgrade
    it says that that is not the right product key, it wants one for 2010. How do I resolve this? I shouldn't have to open a browser and use a web app when I'm on my computer, right?

    If you purchased O365 Home Premium, the product key you purchased for that, will not be acceptable to Office2010.
    You will need to download and install O365, and it's probably best to uninstall the Office2010 trial.
    Logon to your MS account at www.office.com/myaccount
    http://office.microsoft.com/en-au/products/download-backup-restore-microsoft-office-products-FX103427465.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Exchange 2010 to office 365 migration lab

    I am looking out for free migration lab if any available online from Microsoft or any vendor related to migrate from exchange 2010 to office 365 . Please suggest ? 
    Aditya Mediratta

    Hi,
    Unfortunately, there’s no related lab for use.
    We can Microsoft Exchange Server Deployment Assistant to generates a custom step-by-step checklist that will help you deploy different versions of Exchange Server for different types of scenarios. For your reference:
    https://technet.microsoft.com/en-us/office/dn756393.aspx
    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

  • Spinning rainbow wheel for long periods on File Open commands in Acrobat and Office 365 programs

    Hardware & Software:
    MacBook Pro (17-inch, Mid 2009)
    77GB of free hard disk space
    8GB RAM
    Running OS X Yosemite (Version 10.10.2)
    Over the last few days, when I try to execute a File Open command from Adobe Acrobat or Office 365 programs (even from an innocuous location such as Documents), I get the spinning rainbow wheel for long periods of time (10 seconds to minutes) before I am able to select a file to open. I copied messages from Console after a File Open command for each of Adobe Acrobat and Excel (the selected location was Documents), given below:
    Excel Log Messages
    2/24/15 5:50:50.970 PM     WindowServer[147] disable_update_timeout: UI updates were forcibly disabled by application "Microsoft Excel" for over 1.00 seconds. Server has re-enabled them.
    2/24/15 5:51:01.280 PM     NetAuthSysAgent[684]        AFP error -1 mapped to EIO
    2/24/15 5:51:01.281 PM     NetAuthSysAgent[684]        ERROR: AFP_GetServerInfo - connect failed 5
    2/24/15 5:51:01.281 PM     NetAuthSysAgent[684]        AFP error -1 mapped to EIO
    2/24/15 5:51:01.739 PM     WindowServer[147] common_reenable_update: UI updates were finally reenabled by application "Microsoft Excel" after 11.77 seconds (server forcibly re-enabled them after 1.00 seconds)
    Adobe Acrobat Log Messages
    2/24/15 5:58:22.145 PM     bird[257]        Assertion failed: ![_xpcClients containsObject:client]
    2/24/15 5:58:23.454 PM     WindowServer[147] disable_update_timeout: UI updates were forcibly disabled by application "Acrobat" for over 1.00 seconds. Server has re-enabled them.
    2/24/15 5:58:29.538 PM     NetAuthSysAgent[708]        AFP error -1 mapped to EIO
    2/24/15 5:58:29.538 PM     NetAuthSysAgent[708]        ERROR: AFP_GetServerInfo - connect failed 5
    2/24/15 5:58:29.538 PM     NetAuthSysAgent[708]        AFP error -1 mapped to EIO
    2/24/15 5:58:29.722 PM     WindowServer[147] common_reenable_update: UI updates were finally reenabled by application "Acrobat" after 7.27 seconds (server forcibly re-enabled them after 1.00 seconds)
    Can anyone give me an idea of what these messages mean and how I can solve this problem?
    If I'm not in the correct Community for this question, could someone kindly tell me where I should re-post?
    Thanks.
    David Walker

    Yes; I have previously connected to an iMac at this location using File Sharing.  However, in my attempts to solve this problem last week, I had already unchecked File Sharing in System Preferences.  Tonight, I also deleted the folder from the window in the File Sharing System Preferences page, then rebooted.  The problem still persists.
    I try not open files across a server line, i.e., I try always to copy a file to the local computer and open it there.  I may have gotten careless and tried to open a file from the Windows server with either or both Acrobat and Office 365.  Although this was an SMB share, is it possible that these programs are now trying to connect to the Windows server on a File Open?
    I had about decided to quit chasing this problem; we spend about two weeks every two months at this Boston location, and I'll be returning to my Florida home this weekend.  So I decided I would see what the situation was when I returned to my native habitat, although I may be chasing this problem again in our trip to the Boston area in April.
    The other thing I wondered (I guess I can't quite let it go), is whether there is a command line in Terminal that would kill all AFP shares.
    In any case, thanks for your help; you're very knowledgeable.

  • How do i print to pdf from excel? I am using Windows 8.1 and Office 365 (new)

    How do i print to pdf from excel? I am using Windows 8.1 and Office 365 (new)

    Please see Huge lag in games on bootcamp as a reference. The linked thread is for a GT750m.
    Since there are no mid-2013 Retina models (as per Apple - Support - Technical Specifications), assuming this is your Mac - MacBook Pro (Retina, 15-inch, Late 2013) - Technical Specifications - the same should work for you.

  • Email Alias and office 365

    Good Day
    i have been looking around but i haven't found a clear answer. My question is this i have exchange set up in domain A and office 365 in domain B.
    Both are in separate forests. Can i set up an alias  in office 365 for my exchange account in domain A, so that i can receive emails from that account in domain B?
    Thanking in advance

    Hello dnlsingh,
    After creating External contact as per below. Please visit below link and confirm whether this answers your question.
    http://community.office365.com/en-us/f/148/t/239836.aspx
    Sachin Shetty| MCP|MCT|MCTS|MCITP| http://sachinshetty.design.officelive.com Please remember to mark the replies as answers and Vote as helpful if they help and unmark them if they provide no help.Thank you in advance.

  • What's the difference between SharePoint 2013 and Office 365 Team Sites?

    Hi there,
    What are the differences between SharePoint 2013 and Office 365 Team Sites?
    If I would like to develop a professional corporate website with SharePoint technology (because the company allready uses Office 365), do you recommend using SharePoint 2013 (in the cloud) or Office 365 Team Sites? And why?
    Thank you very much!

    You cannot make SPO Team Sites anonymous-enabled, therefor they're a moot point for a public website.
    While slightly out of date, take a look at this:
    http://nikpatel.net/2013/01/17/new-sharepoint-2013-wcm-features-are-not-available-in-sharepoint-online-2013/
    http://technet.microsoft.com/en-us/library/sharepoint-online-content-service-description.aspx
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Windows Azure and Office 365 Enterprise Integration

    Hi all
    Not sure if I got the right forum.  Can anyone point me to installation documentation, to setup an Azure cloud and Office 365 Enterprise?
    Thanks.

    Hi,
    I would request you to refer this link and check if it helps:
    http://weblogs.asp.net/scottgu/windows-azure-and-office-365
    Regards,
    Azam khan

  • I want to know how to setup password expiry notification for outlook 2013 and 2010 in office 365

    On cloud mailbox non federated how set password expiry notification for all users which is created on cloud for accepted domain mail box only configure outlook, 
    any other option on exchange admin center for the same,
    I want to know how to setup Outlook 2013 and 2010  to receive PASSWORD EXPIRY NOTIFICATION without log  in domain,

    Hi
    As per the information and details provided by you, to set up password expiry notification, please follow these steps: -
    I suggest you run Office 365 desktop apps reffering to the steps below: -
    Step1: - Login to Office 365 Portals.
    Step 2: - In the right pane, click
    Downloads under Resources.
    Step 3: - Click Set up under
    Set up and configure your Office desktop apps.
    Moreover, please confirm the password policy by the
    PowerShell cmdlet.
    Step 1: - Install Micrsoft Online Services Module and connect to Office 365.
    Step 2: - Run Connect-Msolservice command.
    Step 3: - Get a password policy by the following PowerShell cmdlet:
                    Get-MsolPasswordPolicy –DomainName yourdomain.com
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G 

  • Subscription and volume licensed Office 365 C2R App-V packages on the same computer

    I'm interested if anyone has come across a similar scenario to what we have at the organisation I am currently working for. The organisation has signed up for an E3 subscription to Office 365, however would like to continue to using their volume licenses
    of Visio and Project 2013 (at least until new versions are released at which point they'll likely move to the same subscription model).
    Using the Office Deployment Tool, I've created App-V 5.0 SP2 packages for
    a. "O365ProPlusRetail"
    b. "ProjectProVolume" and "VisioProVolume"
    Both App-V packages ignore any exclusion rules in the configuration.xml file I've defined. This is expected and I can control which applications are published using Config Mgr 2012 R2. Both packages deploy and run as I would expect.
    The issue I specifically have is that if I publish both App-V packages (using different package ID's) to the same PC with modified DeploymentConfig.xml files:
    a. "O365ProPlusRetail" package only enables Word, Outlook and Excel (subscription licensing)
    b. "ProjectProVolume/VisioProVolume" package only enables Visio and Project (volume licensed)
    it appears as though the Word, Excel and Outlook from (b) are utilised instead of from (a) even though they are specifically disabled. This means that Word, Excel and Outlook activate to our local KMS server, rather than using the user credentials as we would
    prefer.
    To confirm I can see that package (a) is already running when I run the following command: Get-AppvClientPackage | select Name, InUse, InUseByCurrentUser
    Name                                                                                         
    InUse                                InUseByCurrentUser
    Microsoft Office 15 ProjectProRetail_O365ProPl...                                             
    True                                             
    True
    Microsoft Office 15 VisioProVolume_ProPlusVolu...                                             
    False                                            
    False
    If I then open Word (which should only be enabled in the first package), I see that the second package is now in use
    Name                                                                                         
    InUse                                InUseByCurrentUser
    Microsoft Office 15 ProjectProRetail_O365ProPl...                                             
    True                                             
    True
    Microsoft Office 15 VisioProVolume_ProPlusVolu...                                             
    True                                             
    True
    I've also confirmed that all the applications (besides Visio and Project) are disabled in the second package:
    Name                                                                                                                                 
    EnabledGlobally
    Database Compare 2013                                                                                                                          
    False
    Spreadsheet Compare 2013                                                                                                                       
    False
    Excel 2013                                                                                                                                     
    False
    OneDrive for Business 2013                                                                                                                     
    False
    InfoPath Filler 2013                                                                                                                           
    False
    Lync 2013                                                                                                                                      
    False
    Access 2013                                                                                                                                    
    False
    Telemetry Log for Office 2013                                                                                                                  
    False
    Telemetry Dashboard for Office 2013                                                                                                            
    False
    Office 2013 Upload Center                                                                                                                      
    False
    Publisher 2013                                                                                                                                 
    False
    Lync Recording Manager                                                                                                                         
    False
    Microsoft Outlook Mobile Service                                                                                                               
    False
    OneNote 2013                                                                                                                                   
    False
    Send to OneNote 2013                                                                                                                           
    False
    Organization Chart Add-in for Microsoft Office programs                                                                                        
    False
    Outlook 2013                                                                                                                                   
    False
    PowerPoint 2013                                                                                                                                
    False
    Microsoft Office 2013                                                                                                                          
    False
    Office 2013 Language Preferences                                                                                                               
    False
    SharePoint Designer 2013                                                                                                                       
    False
    Visio 2013                                                                                                                                      
    True
    Project 2013                                                                                                                                    
    True
    Word 2013                                                                                                                                      
    False
    Office XML Handler                                                                                                                             
    False
    Internet Explorer                                                                                                                              
    False
    Notepad                                                                                                                                        
    False
    Perhaps what I am trying to do is unsupported but I can't find anything explicity calling this out - and surely other organisations will have a similar scenario to us. Is there any best practice recommendations from Microsoft in this regard?
    Cheers, Tim

    here is some reference, hope it's helpful.
    http://support.microsoft.com/kb/2915745
    http://technet.microsoft.com/en-us/library/jj219422(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/hh852466.aspx

  • Can I migrate users from a hosted Exchange 2010 to Office 365 Enterprise E1 without the need of third party software?

    I am hoping I am posting to the correct forum.  We are currently using a hosted Exchange 2010 service through Intermedia and due to continuing issues with them and the pricing, we are getting ready to migrate to Microsoft’s Office 365 Enterprise
    E1 platform.  My question is this, besides the fact that we will need to set up ADFS for SSO, will I be able to migrate our existing mailboxes from Intermedia to Office 365 without having to purchase additional software? 
    The current configuration we have with Intermedia allows for us to use OWA and our OST files for our current users are cached locally on the workstations. 
    We also do not have any public folders in use.  I have searched the web, but I have not been able to find a definitive answer or steps that I should take to prepare for this type of migration. 
    Any suggestions on this matter would be appreciated.  Thank you.

    It looks as I should be able to from reading that article.  Not sure why the company that want to set this all up for me wanted $12,000 for something I can do with 6 steps.
    Thank you

  • Unexplained UI XML errors after rollback to Office 2010 after Office 365

    I installed Office 365 Trial after checking with Microsoft Tech Support to see if I needed to uninstall Office 2010 Professional first -was told it was unnecessary.
    The Office 365 completely messed up the screen display in Outlook (changed all to test to CAPS and could not be altered) and many add-ins failed to appear and/or function - e.g. MailInfo, Mailwasher Pro, Kaspersky Internet Security modules, etc.
    For that reason I uninstalled Office 365 (at the suggestion of Microsoft Tech Support).
    On resuming Outlook 2010 I got multiple error notifications relating to loading of Custom UI XML components.
    After trying unsuccessfully to determine what the errors were to correct, I contacted Microsoft Tech Support again and was advised to try a Repair of Office 2010.
    This I did but with no change - errors still kept popping up.  So, again, contacted Microsoft Tech Support and they wanted me to pay for the corrections (go figure - they caused it!) and when I refused on principle they said my only option was to uninstall
    Office 2010 and re-install it.
    This I did but it has made no difference - still getting the same errors!
    HOW DO I GET OUTLOOK 2010 to function correctly without errors again?
    Examples of the errors include"
    Error code 0x80004005 - Error loading Custom UI XML (Failed to find Office Control by ID; ID: mso:TabSendReceive
    Error code 0x80004005 - Error loading Custom UI XML (Failed to find Office Control by ID; ID: mso:TabMail
    Error code 0x80004005 - Error loading Custom UI XML (Unknown Office Control ID; mso:FileOpenUsingBackstage
    Uncoded error: "Either there is no default mail client or the current mail client cannot fulfill the messaging request.  Please run Microsoft Outlook and set it as the default mail client."  - THIS I DID (even though the tick was already
    in the box setting Outlook as default) but no change!
    Uncoded error: Custom UI Runtime Error in Microsoft Access Outlook Add-in for Data Collection and Publishing (I also have Business Contact Manager installed and that too was uninstalled and re-installed)
    I'd be grateful with an constuctive advice that will permanently fixed then re-installed with no change to errors); "An error occurred while calling the callback: "Ribbon_GetDCVisible"
    I'd be grateful for some help here!

    Hi,
    Looks like your Office got completely messed up. You might need to use
    Microsoft Fix It tool to completely remove any Office traces or residuals, then try again:
    How to uninstall Office 2013 or Office 365:
    http://support.microsoft.com/kb/2739501/en-us
    How to uninstall or remove Microsoft Office 2010 suites:
    http://support.microsoft.com/kb/2519420
    Please save the Microsoft Fix It tool to your local disk first, then run it.
    Also, if you have any add-ins intergrated with your Office 2010, I would suggest you to remove them and then reinstall all.
    Hope this helps.
    Thanks,
    Ethan Hua CHN
    TechNet Community Support

  • Migration from 2010 to Office 365

    I'm stumped on Office 365 Small Business Premium and the migration from 2010.
    I thought that migration would be simple but I can't find any tools mentioned in the articles I read. I thought that it was supposed to be a tool found within 365 where you pull the info from the PST you keep on your desktop.
    Do I need to uninstall 2010 and only use the 365 web based email. IF I can keep both, do they sync? Does this sync with the mobile app also?
    So right now I have both installed and the users setup for 365 (the login accounts), but I don't have any thing else setup because I don't want to lose any data. I want to make sure that I do this right before I go any further.
    No I don't have exchange. Every thing is hosted by Network Solutions and we use pop3 to pull the email.

    Hi,
    some options/suggestions are here:
    http://community.office365.com/en-us/f/158/p/230137/714965.aspx?ss=87fa5dc5-cfde-49c9-ab80-294fc73ccb85#714965
    http://community.office365.com/en-us/p/helpcenter.aspx?hcs=8b0e9324-aae1-4a96-a035-619cabe78397#ESKU-Admin-Mail
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)
    OK. I downloaded those files and they didn't do me any good. The one which would run was asking for a central computer, I'm assuming an email server, which we don't use.
    We use pop3 through Network Solutions. We have Outlook on each desktop and the folders are local.
    I am reading up on some other stuff on migration. I'll let  you know how it goes.

Maybe you are looking for

  • Send ALV report as attachment in EXCEL format

    Hi SAP Guru, I had a report output as ALV format. Currently, when the background job ended, it would be send out to the recipent thru SAPconnect as PDF format using internet mailing address. I tried to search for a configuraiton for EXCEL output but

  • File content conversion record set per message

    Dear All, Problem:- File is of huge size because of which file content conversion is taking longer time and is failing. File format:- Header Detail Detail Header Detail Detail Detail Detail Header Detail Detail Trailer Trailer has total count of all

  • Safari trouble after reinstalling OS X

    Hello people, thanks for looking. I have just reinstalled OS X on my ibook g4- I was having trouble with my cd drive and this has now been resolved, but when I went to open safari to post a response on the ibook discussion page I couldn't get a safar

  • I have stopped getting emails (@me) on macbook pro, still receiving them on iPhone and iPad - any ideas??

    I am using @me.com, and have stopped receiving emails to my macbook pro, still receiving them on my iPhone and iPad through icloud any help??

  • TreeViewWidget problems

    Hello i hope someone of you want to help. Well i m developing a plugin under mac os x10.5.0 and i have CS4 InDesign my plugin currently is crashing to indesign when it try run im following the details of 3 examples WListComposite, PanelTreeView & Det