Can't open MS Word .doc files from SharePoint 2013 document library?

Hello,
I have uploaded some MS Word files with .doc extension into a SharePoint 2013 document library, but they don't open when clicked.  I can do a number of things to the file, like view and edit properties, download and other things, but it does not
open up when mouse clicked.  There are PDF files in the document library and they open up just fine.  Any ideas?
I should add that MS Word 2010 .docx files can not be opened either.
Thanks.
Paul

Hi,
Whether you use office 2013.
Considering this .doc file can be smoothly opened in Office if you downloaded it to your local, it indicates that the Word document and Microsoft Word doesn’t have any problems. The issue may be caused by the compatibility between Office
and your site.
1.Check whether you have the SharePoint OpenDocuments Class add on enabled at first.
Internet Explorer >Tools iron > Manage add-ons >
Choose to Show All add-ons. Find SharePoint OpenDocuments Class and make sure it’s enabled.
2.go to Compatibility view settings > add your SharePoint site to compatibility view
3.go to Internet Options,
Advanced > Reset… > Check Delete personal settings and reset
Security > Trusted sites > sites > add SharePoint sites to trusted sites
4.If it doesn’t work, please open Word, go to Options > Trust Center > Trust Center Settings > Protected View > Uncheck all.
Best Regards,
Lisa Chen
Lisa Chen
TechNet Community Support

Similar Messages

  • How to open and read Excel Sheet from SharePoint 2013 Document Library using C# Visual Studio 2012

    Hi,
    To achieve these are the steps that I had followed :
    1. Add the document Library path into Central Admin -> Application Mgmt -> Manage Service App -> Excel Service App -> Trusted File Locations
    2. Add Documnet Library link to Trusted Connection Proivder
    3. Open Visual Studio as Run as Administrator
    4.Create an SharePoint 2013 Empty Project.
    5.Add Service Reference : http:\\<server>\_vti_bin/excelservice.asmx
    6.Service added successfully
    7.Create a class file and add the Service Reference namespace
    There is no such class as ExcelService to call. 
    Please let me know if somebody knows how to open the Excel file into C#(2012)  either using ExcelService or any other way to open. I tried old methods of Sharepoint 2010 server but it's not able to access classes.
    Requirement is :
    Need to read the excel sheet  from Document Library and transfer all data into DataTable.
    Please help asap. 

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office, I'll move your question to the SharePoint 2013 development forum
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/home?forum=sharepointdevelopment
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support

  • Upload file to nested file in SharePoint 2013 document library

    Hi,
    I want to retrieve foders & subfolder from document library and bind it with a dropdownlist.I am able to bind all folder & subfolderto the dropdownlist as below image.
    Now I want upload a file to folder selected in the drop down list.By using the below code I am able to add files in the root folder,but while submitting the file to sub folder it showing "Value does not fall in this range"
     if (item.Title == ddlFolderName.SelectedValue)
                                                    if (item != null)
                                                       SPFolder selfold = lifolder.RootFolder.SubFolders[ddlFolderName.SelectedValue];
                                                   SPFile fFile = selfold.Files.Add(System.IO.Path.GetFileName(FileUpload1.PostedFile.FileName),
    byt);
                                                        fFile.Item.Update();
                                                        fFile.Update();
                                                        lblMsg.Text = "File added";
    }}Please help.Thank you

    Hi Aditi,
    For uploading a file into a nested folder you could consider the following approach:
    ensure the target folder exist using the method provided below
    upload a file using
    SPFileCollection.Add method
    How to ensure a nested Folder exist using SharePoint SSOM
    internal static class SPFolderExtensions
    /// <summary>
    /// Ensure SPFolder
    /// </summary>
    /// <param name="web"></param>
    /// <param name="listTitle"></param>
    /// <param name="folderUrl"></param>
    /// <returns></returns>
    public static SPFolder EnsureFolder(this SPWeb web, string listTitle, string folderUrl)
    if (string.IsNullOrEmpty(folderUrl))
    throw new ArgumentNullException("folderUrl");
    var list = web.Lists.TryGetList(listTitle);
    return CreateFolderInternal(list, list.RootFolder, folderUrl);
    private static SPFolder CreateFolderInternal(SPList list, SPFolder parentFolder, string folderUrl)
    var folderNames = folderUrl.Split(new char[] {'/'}, StringSplitOptions.RemoveEmptyEntries);
    var folderName = folderNames[0];
    var curFolder =
    parentFolder.SubFolders.Cast<SPFolder>().FirstOrDefault( f => System.String.Compare(f.Name, folderName, System.StringComparison.OrdinalIgnoreCase) == 0);
    if (curFolder == null)
    var folderItem = list.Items.Add(parentFolder.ServerRelativeUrl, SPFileSystemObjectType.Folder,
    folderName);
    folderItem.SystemUpdate();
    curFolder = folderItem.Folder;
    if (folderNames.Length > 1)
    var subFolderUrl = string.Join("/", folderNames, 1, folderNames.Length - 1);
    return CreateFolderInternal(list, curFolder, subFolderUrl);
    return curFolder;
    How to create nested Folder using SharePoint SSOM
    internal static class SPFolderExtensions
    /// <summary>
    /// Ensure SPFolder
    /// </summary>
    /// <param name="web"></param>
    /// <param name="listTitle"></param>
    /// <param name="folderUrl"></param>
    /// <returns></returns>
    public static SPFolder CreateFolder(this SPWeb web, string listTitle, string folderUrl)
    if (string.IsNullOrEmpty(folderUrl))
    throw new ArgumentNullException("folderUrl");
    var list = web.Lists.TryGetList(listTitle);
    return CreateFolderInternal(list, list.RootFolder, folderUrl);
    private static SPFolder CreateFolderInternal(SPList list, SPFolder parentFolder, string folderUrl)
    var folderNames = folderUrl.Split(new char[] {'/'}, StringSplitOptions.RemoveEmptyEntries);
    var folderName = folderNames[0];
    var curFolder =
    parentFolder.SubFolders.Cast<SPFolder>()
    .FirstOrDefault(
    f =>
    System.String.Compare(f.Name, folderName, System.StringComparison.OrdinalIgnoreCase) ==
    0);
    if (curFolder == null)
    var folderItem = list.Items.Add(parentFolder.ServerRelativeUrl, SPFileSystemObjectType.Folder,
    folderName);
    folderItem.SystemUpdate();
    curFolder = folderItem.Folder;
    if (folderNames.Length > 1)
    var subFolderUrl = string.Join("/", folderNames, 1, folderNames.Length - 1);
    return CreateFolderInternal(list, curFolder, subFolderUrl);
    return curFolder;
    Key points:
    Ability to create a nested folder(s)
    Existing folders will not be affected
    The following example demonstrates how to ensure the following folder structure exist under
    Documents library and upload a file into it:
    Orders
    |
    A --
    |
    A1
    Example:
    var folder = web.CreateFolder("Documents", "Orders3/Orders A/Orders A1");
    Example: how to upload a file into a nested folder
    var targetFolder = web.EnsureFolder("Documents", "Orders3/A/A1");
    var fileContent = System.IO.File.ReadAllBytes(fileName);
    var fileUrl = Path.GetFileName(fileName);
    targetFolder.Files.Add(fileUrl, fileContent);
    Thanks & Regards
    Indul Hassan
    www.indulhassan.com

  • Can't open Excel files from Sharepoint 2013

    I am having an issue with opening Excel files from SharePoint 2013. If I click on an excel file it comes up with the error below.
    If I click Try again I get the message below also:
    If I try to open Word or PDF files they open correctly in the appropriate client and I have the option of checking them out and editing them. Any ideas why this would only be happening to Excel files?
    Thanks,
    Shaun

    Hi Shaun,
    I understand that the Excel files cannot be opened from SharePoint in Microsoft Excel.
    Can these files be viewed in the browser?
    I recommend to download a copy of the files with issue and then open them in Excel to see if the issue still occurs.
    If above cannot work, I recommend to repair Office.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Snow leopard  to lion so I could use cloud. Now I can't open any word doc. that I receive in emails. Is there any way to remedy this?

    My Macbook pro came with snow leopard. I decided to upgrade to lion so I could use cloud. Now I can't open any word doc. that I receive in emails. Is there any way to remedy this?

    You don't tell us what version of Office for Mac you presently have, but I'm guessing it might be Office for Mac 2004. If so, in addition to the suggestion to download OpenOffice you can purchase the most recent version of Office for Mac 2011 directly from MS <http://www.microsoft.com/mac/buy>. You can also purchase Pages productivity suite from the Mac App Store <http://itunes.apple.com/us/app/pages/id409201541?mt=12>.

  • I can't open video and picures files from cammera

    i can't open video and pictures files from PowerShot SD 780 IS DIGITAL ELPH Cammera
    how can i open video and pictures files from my Cammera, i need help!!!!!
    == This happened ==
    Every time Firefox opened
    == Everytime

    If you want to drag and drop ( don;t know why you would do this), you will have to check manually manage music.
    Why not just sync?
    iPhone User Guide (For iOS 5.0 Software)

  • Microsoft Word Hangs When Opening Document From SharePoint 2010 Document Library

    I am running into an issue where Word hangs when opening certain files from a document library.  When the issue occurs, Word opens and hangs at the Downloading <Doc URL> stage.  I have tried disabling the SharePoint plugins in IE and that
    makes no difference.  I can download a local copy of the file and open in just fine.  The file in questions exists in a separate document library where it can be opened just fine (The file was copied to the library where the issue is occurring by
    a Workflow).  The issue also has only occurred on .docx files and not .doc, however, not all docx files are having the issue.
    Does anyone have any thoughts on what might be causing this?
    Thanks.

    Hi,
    According to your post, my understanding is that when you opened a certain files from a document library, it hanged at the downloading stage.
    I tried to reproduce the issue, after coping by a workflow, the .docx files opened well in my environment.
    Did the issue occur in other documents libraries? You can copy the files to a new documents library by workflow, then check whether it works.
    For more details we also can check the SharePoint ULS logs.
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    Have you check your IE settings (Tools->options->connections->LAN settings->uncheck Automatically detect settings).
    Please also use fidder tools to detect the process. You can download it by the following link.
    http://fiddler2.com/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Download files from Shared Point document library using SSIS packages

    Dear All,
            Can you please help me on how can I download excel/CSV files from share point document library to local machine using SSIS packages.
    Regads,
    Praveen C
    Regards, Praveen

    Hi Praveen,
    You can also implement
    custom component or try third party custom component such as SharePoint List Adapters:
    https://sqlsrvintegrationsrv.codeplex.com/releases/view/17652
    Regards,
    Mike Yin
    TechNet Community Support

  • Email attachments from SSRS email subscription are not being uploaded to an email enabled SharePoint 2013 document library

    Email attachments from SSRS email subscription are not being uploaded to an email enabled SharePoint 2013 document library.
    I have tested the library using a standard email (with attachment) to the library and this works fine. 
    I have monitored the drop folder on the server and I can see both emails being picked up in drop and processed by SharePoint.  The email sent from a regular email account is uploaded with the attachment, whereas the email sent via SSRS subscription
    email is uploaded and the attachment (report) is missing.

    An update on this.  The email when sending from SSRS subscription is received in the library and the attachment is contained within the .EML file uploaded.
    The behaviour that I would like from SSRS subscription emails are to just have the document and not the email.
    Below is a snippet of the .EML files I quick copied from the Drop folder.
    Email attachment snippet sent from SSRS Subscrption:
    ----boundary_2477_75fa3d73-56de-4948-ad82-6588f3a35b95
    Content-Type: application/octet-stream; name="Toilet Usage by Month.docx"
    Content-Transfer-Encoding: base64
    Content-Dis;
     filename="=?utf-8?B?VG9pbGV0IFVzYWdlIGJ5IE1vbnRoLmRvY3g=?="
    Content-ID: <10722c0f-749e-4ecb-ac3f-206317bae734>
    UEsDBBQAAAAIAEVcbEY4Xh4a5nsAAPJtMQARABwAd29yZC9kb2N1bWVudC54bWwgohgA
    KKAUAAAAAAAAAAAAAAAAAAAAAAAAAAAA7N1rr1/XcSforyL4VRooR3vd9to76Kihjto9
    I8T2TDvAzFuaPrE1kUiCouxWPv38DyX50nHSniCdyS96bIAUL+d/LnxO7Vq11qr6j//p
    v3/x+Qe/fnr75WevX/3lD9qfHz/44OnVy9e/+OzVL//yB1+9+9sfXj/44Mt3L1794sXn
    r189/eUPvn768gcf/KeP/uNv/uIXr19+9cXTq3cfPF7h1Zd/8evHH/7q3bs3f/Hhh1++
    /NXTFy++/PPXb55ePf7wb1+//eLFu8cv3/7ywy9evP27r9788OXrL968ePfZzz/7/LN3
    X3/Yj+P8wbcv8/rxXt+++otvX+KHX3z28u3rL1//7bvnN/mL13/7t5+9fPr2p+/e4os/
    5f1+8yaffPshv3+Pj4/l3a++e5Ff/1Pv9tdffP7d3/vNmz/lvf3i7YvfPL6AX3z+zTv6
    Email attachment snippet sent from Outlook:
    --_004_A4C6DCEDE4346446A79AFF493D278530FB87FA07MELABCDEXA1airp_
    Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document;
     name="Toilet Usage by Month.docx"
    Content-Description: Toilet Usage by Month.docx
    Content-Dis; filename="Toilet Usage by Month.docx";
     size=76574; creation-date="Thu, 12 Mar 2015 00:41:14 GMT";
     modification-date="Thu, 12 Mar 2015 00:41:14 GMT"
    Content-Transfer-Encoding: base64
    UEsDBBQAAAAIAMJcbEY4Xh4a5nsAAPJtMQARABwAd29yZC9kb2N1bWVudC54bWwgohgAKKAUAAAA
    AAAAAAAAAAAAAAAAAAAAAAAA7N1rr1/XcSforyL4VRooR3vd9to76Kihjto9I8T2TDvAzFuaPrE1
    kUiCouxWPv38DyX50nHSniCdyS96bIAUL+d/LnxO7Vq11qr6j//pv3/x+Qe/fnr75WevX/3lD9qf
    Hz/44OnVy9e/+OzVL//yB1+9+9sfXj/44Mt3L1794sXnr189/eUPvn768gcf/KeP/uNv/uIXr19+
    9cXTq3cfPF7h1Zd/8evHH/7q3bs3f/Hhh1++/NXTFy++/PPXb55ePf7wb1+//eLFu8cv3/7ywy9e
    vP27r9788OXrL968ePfZzz/7/LN3X3/Yj+P8wbcv8/rxXt+++otvX+KHX3z28u3rL1//7bvnN/mL

  • 2GB of video file upload to SharePoint 2013 document library

    Hi All,
    We have a requirement of uploading a 2GB of video file to a SharePoint 2013 document library. Will there be any issue due to increasing the maximum file size?
    Many Thanks,
    sudesh withanage

    It will be better if you save all your videos at one location,i.e Asset Library.Check the link for Asset libraries
    http://technet.microsoft.com/en-us/library/ee414275(v=office.15).aspx
    In case you want to add other files (i,e excel ,word) along with videos you will need to increase library size,
    Check the following link to increase the file size ,as well as the issues and workaround to solve the problems
    http://blogs.technet.com/b/praveenh/archive/2012/11/16/issues-with-uploading-large-documents-on-document-library-wss-3-0-amp-moss-2007.aspx
    Please Mark it as answer if this reply helps you in resolving the issue,It will help other users facing similar problem

  • XP user can't open my word doc

    I've been working with a bunch of PC users for neary 12 months now since I migrated to Mac. Not really had any problems with PC users not being able to open my word docs. But in the last two days suddenly a 2MB word doc I'm working on is not even able to be opened by an XP user. I've done the compatibilility check and it says there is font substitution but no other problems. Anyone else having this problem? Any hints on how to avoid. We're working to a deadline (of course) and this really isn't helping.

    The first thing I can think of (since you are working to a deadline) is that you save the word document in RTF format on your mac. Just open the word document on your mac, go to the "file" menu and select "save as". Towards the bottom of the save dialog you should see a dropdown list to select what format the document should be saved as. I believe the very last option is something like "Word 4.0/RTF". That format should be somewhat more compatible with Windows.
    I do have to say I still haven't encountered a situation in which a word document created on a mac is not readable on a PC. If my coworkers new that for the past year they've been getting word documents from me created on a mac they probably wouldn't believe me.
    Another thing you can try: Save your word document normally. then go to the finder and create an archive of the file. This will generate a ZIP file. Transfer the ZIP file onto the XP computer, uncompress it, and try to open that file in Word. That may increase your chances of having a readable file.
    I hope this helps. Regards,
    Julian

  • Pages v4.0 (727) can't open or save .doc files

    Hello everyone,
    for a while now I haven't been able to open or save .doc files with Pages. When trying to open a .doc file I get the following message:
    "The document "example.doc” couldn’t be opened."
    I have tried the following to solve the problem:
    1. run Software Update, which told me there were no updates available
    2. checked my applications folder to see if Pages was in the iWork '09 folder in order for SU to be able to detect updates (it was)
    3. reinstalled Pages from the iWork disc and run SU (which again couldn't detect any updates)
    4. deleted the com.apple.iWork.Pages.plist file from the Preferences folder in the user library on the Macintosh HD
    I'd be very grateful if someone could point me towards a solution, I've spent an age on google looking for one and haven't found anything useful so far.
    Thanks in advance
    XtremeFlux

    Are you still on MacOs 10.6.1? You should update it to 10.6.8. Use the Combo update here if the Software Update check doesn't work (which it should) http://support.apple.com/kb/DL1399
    And here you can find the iWork 09 updates. Software Updates should find them!
    iWork 9.0.4
    iLife Support 9.0.4
    You need both.

  • Can I Open an HTMLHelp (*.CHM) File from Java GUI Application?

    I ussually use Delphi to develop my applications and I can open an HTMLHelp (*.CHM) file from my application. Can you show me the ways to do it from my Java GUI applications?
    Thanks for everyone.
    Budi Raharjo
    http://budiraharjo.blogspot.com

    http://www.google.com/search?q=java+chm
    Seems like there is some 3rd party software available for that.

  • How can i deploy sandboxed solution .wsp file to sharepoint 2013 online using powershell script?

    Is there any way to deploy the Sandbox solution .wsp file to sharepoint 2013 online publishing site using powershell or CSOM or any other way?

    Hi,
    According to your post, my understanding is that you wanted to deploy sandboxed solution .wsp file to sharepoint 2013 online.
    "Add-SPSolution" command is not available in SharePoint Online management shell. So, we cannot use PowerShell to update and deploy a solution in SharePoint Online environment. Meanwhile, here is index of Windows PowerShell for SharePoint Online
    cmdlets for your reference:
    http://technet.microsoft.com/en-us/library/fp161364.aspx
    You can CSOM to deploy solution using helper class from CodePlex. The activation code is as follows: SandboxSolutions.ActivateSolution(siteCollectionURl, cookies, "solution_name.wsp");
    About the Client Side Object Model (CSOM), it is a development related issue, we have a specific support channel for the SharePoint developers, so I recommend you go to our MSDN forum for further assistance.
    Here is a similar thread for you to take a look at:
    http://community.office365.com/en-us/forums/156/t/197404.aspx
    In addition, if you would like to upload and activate sandbox solution manually, you can refer to:
    http://community.office365.com/en-us/forums/154/p/64010/244496.aspx#244496
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Cannot able to save Excel 2013 file in Sharepoint 2007 document library

    Dear All,
    We have SharePoint 2007 intranet portal where in we have teamplace created for internal users to collaborate on documents.
    Now we are having issues when using uploads Excel 2013 or Excel 2010 file on document library and try to edit the document.
    Sometimes it doesn't allow to check out the file it say someone already checked out ..but when I try in my laptop its OK.
    And some times when user opens the file it opens as non editable file and it does not take any changes.
    Pls advise whether there is issue with SharePoint 2007 document library and Office Excel 2010,2013 files.
    -- Regards Sandeep

    The lock can apply in two places.  Are you seeing the message in your browser or does it arise within Excel itself?
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

Maybe you are looking for

  • Two ipods accounts  on one computer?

    hellow, i'm new to this site, as you can tell(# of posts). anyway, i already own a ipod (4g),and just got my wife a ipod(1g). the problem is, i don't know how to get her, her own account. i tried to run her ipod+itunes disc, but i almost lost all my

  • EPS-file: How to preserve resource fork when moving file to Linux

    Hi! We have a following problem on our DAM system: When saving an EPS-file from Photoshop CS2 on 10.4 with Machintosh preview we can´t transfer the file to Linux DAM system without losing the preview picture. Apparently this is because the PICT previ

  • IPod classic 160GB 6th gen not sync after HDD & ribbon cable replacement

    I recently replaced my iPod 6th gen HDD and ribbon cable, but when I connect it to my PC and iTunes recognizes it, I can't sync or load music to it 'cause it displays an 1439 error, What can I do?

  • Customer master data search and use limit

    Hello everyone I have a problem that our customer want to limit that A user of SAP  can search and use the customers master data which he or she created only .what should I do ?  thanks!

  • Oracle 11.5.9 and Crystal reports XI SQL

    Greetings, Does anyone know how to use a Crystal parameter in SQL for an Oracle query entered in the Crystal "ADD COMMAND" mode that will prompt for 'multiple periods" We have tried- Where Period_Name IN '{?Periods}' in the Crystal "Command" SQL and