Links in Word Documents to SharePoint documents

Our SharePoint site contains Word documents with links to other documents stored in SharePoint.
When the users open a Word document stored in SharePoint, and then create a link, the users select the files in the "Current Folder" which is the SharePoint Network Drive.  In this case the path is
\\rcssportal.co.riverside.ca.us\DavWWWRoot\sites\teammate\
When users then open the Word document, and select a link, they receive a "Cannot open the specified file" pop up. 
If users do one of the following though, after being authenticated all the links will start working:
1. In the document library, select "Open with Explorer"
2. Map a Network Drive to
\\rcssportal.co.riverside.ca.us\DavWWWRoot\sites\teammate\

Hi,
According to your post, my understanding is that you wanted to link in Word Documents to SharePoint documents.
I try to reproduce the issue, however, I can open the Linked Word Document in the SharePoint Network Drive.
Please make sure you create Network Drive correctly. For more information, you can refer to:
Using SharePoint Document Library as a Network Drive
If the issues still exist, I recommend to select "Open with Explorer" to open the document.
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • Create a new document in Sharepoint Document Library/OneDrive on iPad/Safari

    Hi,
    My users are having trouble creating a new document from OneDrive in Safari on their iPads. The screen goes grey like its going to show the popup to select the new file type, but the popup never comes up. If they clear their cache, it works for exactly 1
    time and then goes back to this behavior. I'm not exactly sure if it worked before and/or when it stopped working. The iPad I have tested was at the latest 8.2 version of IOS and my Sharepoint farm is an On-Prem install of 2013 with SP1 mark2. My WAC farm
    is also 2013 SP1.
    Any suggestions?
    Thanks,
    Matt

    Hi,
    I understand you are suffering the issue when create a document in Sharepoint Document Library/OneDrive on  iPad.
    According to the official article
    https://technet.microsoft.com/en-us/library/fp161353.aspx?f=255&MSPPError=-2147217396, the version of your iOS should be in the supported list. I guess the issue may start after you installed an update, and if there is any other version (low versions)
    of iPads in your company, please use a different version device to test the issue.
    Meanwhile, to determine whether the issue is related to your SharePoint environment, I suggest you just to register an Office 365 trail account, and test the issue with SharePoint Online. In case the same issue happens with SharePoint Online, the issue should
    be related to your client device, and my next suggestion is to contact support of your device manufacture.
    Once you need any help from SharePoint end, please don’t hesitate to come back, and we are always happy to support you.
    Best Regards,
    Lisa Chen
    TechNet Community Support
    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]

  • Run macros on all word documents inside sharepoint document library

    Hi,
    i want to run macros on all word documents which resides inside sharepoint document library.
    please help me.

    hi
    macroses are running in opened Word document process memory. In Sharepoint code is running in IIS process, so you probably have to rethink your requirements and see how you may do the same actions not by macroses, but e.g. by event receivers.
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • How to display the thumbnail view of the documents in Sharepoint Document Library

    Is there a way that we can have the thumbnail view of the documents that are uploaded in SharePoint Document Library. We have thumbnail feature in Picture Library but can we have the same in Document Library too. Documents includes Words,Excel,PDF.
    Any Suggestions Please 

    Hey Mike,
    Good post, I'd be curious to see if anyone has used the GD Picture SDK with SharePoint, maybe there would be some sample code.
    Hey Kukdai,
    Developing your own solution would potentially provide a better way to accomplish your task, but before setting out on that long road you may want to try the simple customization, it's less time consuming and it will help gauge your customer's interest and
    support.
    Also, there is a wealth of open source code for SharePoint available on CodePlex, you might want to check that out as well.  Here is the linK:
    http://www.codeplex.com/
    Also, here is an interesting project to consider for your task:
    http://enhancedpicture.codeplex.com/
    I hope that helps!
    Tom Molskow SharePoint Architect - If I solved the issue please propose my reply as the answer - Thanks!

  • Upload Multiple documents in SharePoint document Library not working

    Hi All,
            I have folder on my desktop which consists of nested folders and files(Total 11 files) .And when I select "Upload multiple files" option to upload documents and drag the folder from the desktop in pop-up window .
             The sharepoint document library uploads only 1 file among all the nested folders from 11 files.Can any one help me how can I solve this
    Thanks, Quality Communication Provides Quality Work. http://siddiq-sharepoint2010.blogspot.in/ Siddiqali Mohammad .

    Hi,
    I understand you encountered the issue when use "Upload Multiple Documents" to Drag Files and Folders to upload window.
    When you say "The sharepoint document library uploads only 1 file among all the nested folders from 11 files", do you mean you have drag all files and folders to the window, while only 1 file is uploaded sucessfully? Or you cannot find all expected
    folders and files?
    Please manually open "Windows Explorer" to locate files and drag files from "Windows Explorer", instead of using the "Open window"
    opened by "Browse for files instead" as below:
    Regards,
    Rebecca Tu
    TechNet Community Support
    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]

  • Error while programmatically adding a document to SharePoint document library

    Hello everyone,
    I have created a custom content type and modified the document template to use the quick parts inside the template.
    I have a document library which uses the custom content type. 
    I have a button inside a custom application page(created using visual studio). On click of this button I want to create a new document inside the document library using the custom content type and update other columns in the content type. I am able to create
    the document, but I get the below error when I open the document.
    public static void UpdateAndCreateFile(SPWeb web)
    try
    web.AllowUnsafeUpdates = true;
    string sList = "My Document Library";
    string sContentType = "My Custom Document";
    SPList list = web.Lists[sList];
    // this always uses root folder
    SPFolder folder = web.Folders[sList];
    SPFileCollection fcol = folder.Files;
    // find the template url and open
    string sTemplate =
    list.ContentTypes[sContentType].DocumentTemplateUrl;
    SPFile spf = web.GetFile(sTemplate);
    byte[] binFile = spf.OpenBinary();
    // Url for file to be created
    string destFile = fcol.Folder.Url + "/" + "test2.docx";
    // create the document and get SPFile/SPItem for
    // new document
    SPFile addedFile = fcol.Add(destFile, binFile, true);
    SPItem newItem = addedFile.Item;
    newItem["ContentType"] = sContentType;
    newItem.Update();
    addedFile.Update();
    web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    // handle exception here
    The above code gives the same issue when I use the 'Document' content type instead of the "My Custom Document" content type. 
    The document looks/opens fine when I create it from the browser.
    Please let me know if you have any suggestions. Thanks.

    I could not figure out a proper solution, but here is what I did to get around the issue.
    I created a document using the document template and saved it to the library(same doc library) and named it as Sample.docx
    In my code, every time I had to create a document, I would just copy the Sample.docx file to the library, but make sure I rename the file when I copy it.
    Then I can use the url of the file I saved through my code and get the list item and update the other properties/columns of the content type
    Below is the code to use an existing file and create a new file
    public static void UpdateAndCreateFile(SPWeb web)
    try
    web.AllowUnsafeUpdates = true;
    string sList = "My Documents";
    SPList list = web.Lists[sList];
    // this always uses root folder
    SPFolder folder = web.Folders[sList];
    SPFileCollection fcol = folder.Files;
    SPFile file = fcol[sList + "/Sample.docx"] ;
    file.CopyTo(sList + "/" + "test1.docx", true);
    web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    Thanks.

  • Word crash with sharepoint document and copy-pasting image from paint

    Initially I've posted this to another forum but there the rec was to post it here as well.
    I have a very annoying issue occurring in specific circumstances (but unfortunately for me that is my daily work), it happens when a document is stored on a SharePoint server. When I copy-paste an image from ms paint into word, often I get the message 'word
    has encountered an error' but then I can continue, but every 5-10 times Word crashes completely.
    When the error (not the crash) occurs, there is this nothing-saying error message stated below. Think of it.. my ‘floppy disk’ is not full, I have 8 GB of ram and I’ve all the permissions I require. The virus scanner is Symantec Endpoint
    Protection.
    All systems are in a world-wide enterprise environment (>20.000 users) – So I guess from that side everything is configured OK.
    There is a problem saving the file.
    Usually this is because the disk or floppy disk is too small for the file or is full, RAM memory is low, or there is a permission problem with the drive the file is being saved to.
    If the amount of disk space for a paging file is low, save the file to another drive. If the RAM memory is low, increase available RAM. If permissions to the drive do not allow you to save to that drive, save the file to another drive or request
    permissions from the administrator to save files to the drive.
    Note   This error can also occur if the computer is running a version of antivirus software that is incompatible with the Microsoft Office or must be updated.

    Hi,
    What is the version of Word?
    Sometimes the Preview Pane in Windows File Explorer may conflict with Word, thus the error message appears. If you have enabled the Preview Pane in File Explorer, disable it to check the result. For example, in Windows 8.1, Open File Explorer, click
    View tab on the top -> Panes -> Click Preview Pane to enable or disable it.
    If the issue persists, I suggest you collect the event logs to find the cause of the crash:
    Press Win + R, type "eventvwr" in the blank box, press Enter to open Event Viewer. Browse to Windows Logs -> Application, check if there is any error about the crash.
    You can send the event logs to our email address and we can help analyze the problem:
    [email protected]
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • 403 FORBIDDEN when opening document in sharepoint

    Hi All,
           While trying to open the word document from SharePoint document library I am getting error as 403 FORBIDDEN.Can any one help me how can I solve this issue
    Thanks, Quality Communication Provides Quality Work. http://siddiq-sharepoint2010.blogspot.in/ Siddiqali Mohammad .

    Hi siddiqali,
    It may be related your account permission lack.
    Please check the ULS log which would provide more information for helping troubshoot the issue.
    Thanks
    Daniel Yang
    TechNet Community Support

  • Word Viewer will not open documents from Sharepoint 2013 in IE11

    I've run into an issue while trying to open documents from SharePoint 2013 after upgrading to IE11. My organization uses Word Viewer with the compatibility pack and all other Word documents (local files, intranet hosted) will open with no problems. When
    trying to open a Word document from SharePoint the Word Viewer will open, but the file does not. We have verified that all Windows Updates are installed. We have tried opening SharePoint in Compatibility View and Enterprise Mode. We have re-downloaded the
    latest version of Word Viewer and reinstalled it along with the compatibility pack. If we open the SharePoint site in Explorer view and then open a Word document it will open in Word Viewer with no problem. Excel and PowerPoint documents open from SharePoint
    with no problem. This is only affecting Word documents with Word Viewer. When using the full version of Word the documents open fine. Within SharePoint we have tried activating the site collection feature "Open Document In Client Applications by Default"
    but it made no difference. We're completely at a loss how to make this work as there doesn't seem to be much information specifically pertaining to issues with Word Viewer.

    Hi Victoria.
    1. The PCs do not have Microsoft Office installed, nor are we using the Office Web Apps. "Word Viewer" means the Microsoft Word Viewer application available here (http://www.microsoft.com/en-us/download/details.aspx?id=4) that is available
    free for read-only viewing of Word documents.
    2. There are no errors when I open Word docs in Word Viewer. The Word Viewer application launches after clicking a Word document link in Sharepoint, but there is no file open in it. When that happens the IE11 Sharepoint window on the taskbar is flashing
    yellow, but when I click back to it there are no messages or alerts to click on.
    3. This issue does occur with all Word documents (.doc, .docx) in SharePoint. However, it does not occur when opening Word documents in the Word Viewer when they are local files or through IE11 from a non-SharePoint website like our local intranet.
    Those files will open with no problem in Word Viewer.
    4. I will try to get a screenshot, but we are working on creating images for deployment and I don't currently have a machine configured the same way. I'll work on reconfiguring one and post a screenshot.
    Thank you for your help!

  • I am getting error when hovering on document in sharepoint online "sorry there was a problem and we can't open this document.If this happens again, try opening the document in Microsoft Word"

     I am getting error when hovering on document in sharepoint online "sorry there was a problem and we can't open this document.If this happens again, try opening the document in Microsoft Word".I am sure that document is not corrupted and
    all. something it showing the preview and sometimes it throwing this error. I hope this error is intermident. When clicking on the link also it throws this error but on refreshing it working fine. I dont know why it is happening. Please helpme  to resolve
    this issue. 

    Hi Waqas
    Thanks for your help with this. I had a look at both posts, the URL works fine from the WAC server and I am not using a System account to test docs.
    Also, this is a production site that is accessible over the Internet, so we are using https therefore the WOPIZone is external-https.
    Issue #3 in the above blog link does not reflect the same error I see on my servers.
    I also had a look at the information in this link: http://technet.microsoft.com/en-us/library/ff431687.aspx#oauth
    Problem: You receive a "Sorry, there was a problem and we can't open this document" error when you try to view an Office document in Office Web Apps.
    If you added domains to the Allow List by using the
    New-OfficeWebAppsHost cmdlet, make sure you’re accessing Office Web Apps from a host domain that’s in the Allow List. To view the host domains in the Allow List, on the Office Web Apps Server open the Windows PowerShell prompt as an administrator and run
    the Get-OfficeWebAppsHost cmdlet. To add a domain to the Allow List, use the
    New-OfficeWebAppsHost cmdlet.
    I have not added any domains to the Allow list so this did not help either. Should I add the domain?
    Any further help with this is much appreciated.
    Thanks again.
    Yoshi

  • Creating a new "Link to a Document" opens Word document or upload document dialog - plus more!

    The Link to Document content type seems to be corrupted at root. When I attempt to create a new Link, either Word opens with a blank document or the "Upload" document dialog opens. It's been changing as I investigate.
    One things I've noticed is that the "Link to a Document" Content Type on the parent site collection now shows it's parent as Document. this explains why the Word document opens, but not why the Upload dialog does.
    While writing this question, I decided to check further and it seems that the other document types, Audio, Video etc.  all now have Document as the parent and are opening a blank Word document.
    Has anyone seen this behavior? How do I fix this?
    This is on SharePoint 2010.
    Thanks in advance.
    Barry Cohen
    Barry Cohen

    Well, I spoke too soon. The process worked for all the custom content types, but the default Document type was still messed up. I probably should have fixed that one first, but...
    Anyhow, the Document type had no template going to the Upload File dialog rather than the blank Word document it's supposed to go to. I followed the same procedure I'd followed for the other content types, checking what worked on another site and using that
    template which in this case was a blank field:
    So, I went opened Document, Document Content Type and went to advanced settings. The template field was empty, which matched the working site, so thinking that if I saved, it would match up with the working site. I saved the Document content type and when
    after several minutes the save failed with an incredibly long list of locations where that were being perceived as "read only" plus several hidden content types that were listed as sealed. This snapshot shows a few of they many pages of content types. (I poorly
    struck through confidential info):
    Besides this gigantic error, which would require going to hundreds of locations on the site to change read access settings, which are, as far as I can tell actually not "read only" or are inaccessible, such as the hidden "System Page Layout' and so forth
    which shouldn't be based upon the default document type anyway and therefor not fixable, I need to understand why this is happening and what to do about it. I don't want to spend the next two days going over all of these libaries and content types and ending
    up back where I started with all the content types still screwed up. Afterall, I've spent about a day creating all these custom Content Types only to have the default Document content type loose its settings and corrupting everything and another day fixing
    it and having it happen again.
    This is a highly unacceptable behavior on the part of SharePoint and I would really like to fix this.
    Help is sorely needed.
    Thanks in advance
    Barry Cohen

  • Word 2010 opening document from SharePoint as Read-Only

    Hello,
    I am investigating an issue in our environment (Office 2010 clients accessing SharePoint 2010 files) where documents will open in Word but as read-only and the option to edit the document is not presented.  This can be reproduced by copying and pasting
    a link to a SharePoint document into the IE address bar and hitting <Enter>. A prompt will appear to open/save, etc. Clicking open will open the document but in read-only mode and there's no yellow bar to edit the document. The second time we perform
    the same task, the document opens with the Edit Document button available. The Office Document Cache Handler browser add-in is enabled. The issue is described exactly in the last bullet of the 'more information section of this MS KB article:
    http://support.microsoft.com/kb/2661910.
    "The Server read-only bar with the [Edit Document] or [Edit Workbook] or [Edit Presentation] button bar may be missing for other reasons when clicking on a hyperlink to a Office 2010 document stored
    on a SharePoint site for the first time. Subsequent clicks on the link will render the Server read-only bar."
    We have confirmed that using the OptimisticBHO registry value resolves the issue.  However, the support article says that this issue occurs for "other reasons".  Rather than deploy a registry hack to fix this, can someone elaborate
    on what the other reasons are so that we can tackle the root cause of the issue? Is this a known bug, is the behavior due to some security update is there a SharePoint configuration setting involved, etc.? It would be helpful to know exactly why
    the issue occurs so that we can plan the resolution appropriately.
    Thanks,
    Doug
    Douglas Cote

    Hi Doug,
    Please check the KB article below and see if it answered your question:
    http://support.microsoft.com/kb/2018958/en-us
    Hope this helps.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Unable to open a word document in SharePoint 2013

    Dear all,
    We are using SharePoint Foundation 2013 with Office Word 2010. Uploading an updating a document in SharePoint generally works fine.
    We have a word document uploaded to SP on which we work a lot. I uploaded it yesterday and continued to work on the document. This morning when I wanted to open the document I get the message from Word: "Could not open 'http://xxxxxxxxx/sites/documents/General/document.docx'
    (where xxxx is the name of the server).
    This is the second time that we have this issue.
    Except this message there is nothing on SharePoint log site.
    Best, Jeppen
    Jeppen Twitter: @DoSTHGreat

    Thank you for your answer. Unfortunately these post do not help.
    Strange thing is that we can work again with the document.
    I forgot to mention that the "Download a Copy" always worked.
    Jeppen Twitter: @DoSTHGreat

  • How can I Hide/ Disable the Question mark and Exit button in the Top right corner of Link Bar of Excel Documents in SharePoint 2013?

    Hi,
    How can we  Hide / Disable the Help(?) and Close(x) buttons which are located in the right corner of the Top Link Bar in the Sharepoint Document Library pages as well as Excel Web Access?
    Our requirement is : When we try to view the Excel Services Report from another web site, Help(?) and Close(x) icons are also appearing in the Excel Web Access Web Part, but we don't want to display them in our site.
    Please let us know the solution for this case.
    Thanks in advance.
    Regards,
    Sanjana

    Hi,
    In the xlviewer.aspx, we can find the two buttons like this:
    To hide them, you need to add the CSS into the xlviewer.aspx which stays in:
    C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\LAYOUTS
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Word opening in Client Application in SharePoint document library when feature is not activated in manage features in site collection

    Hello, I wish for all Word documents to open in the browser for my SharePoint document library on my team site.
    The feature 'open in client application' is not activated in Features for the site collection and the setting in the document library is set on 'Use the server default (open in the browser)
    When I select File > new> from the ribbon in the document library - it still opens Word in the client application?
    Any ideas on this?
    Is there a general Office 365 setting over riding SharePoint somewhere?
    Regards
    kegan1

    Okie don't open up a ticket. Can you please open internet explorer...See if its the latest version. Once you have done that can you login to the SharePoint site. Then go to the internet wheel option  in top right corner > select manage add on >
    Click on toolbars and extensions on left > then click on SharePoint open documents in client and disable it. Close the browser completely now for the changes to take effect. Open internet explorer once again and then try to go to site collection click on
    file and create new. The word will open up in browser now. This has to be done on each and every machine in your firm so that users will be able to open up only in browser. Out of the box there is only one way is to customize the ribbon and remove the new
    option from there or creating an all together new ribbon for your SharePoint from visual studio.

Maybe you are looking for

  • What is the cost of the upgrade if you are under a 2 year contract already?

    Do you have to be clear of a 2 year contract for this iPhone trade-in to be a deal?  Such as I have a 4s that I got at the beginning of August for my first smartphone because it was the free option at the time.  I love the phone but because I just st

  • Album artwork shows up right on itunes but not on ipod

    I recently updated my album artwork and now, on itunes the album artwork is all correct, on my ipod while playing the music too, but when i click the center button twice to look at the album artwork in full screen mod it shows the same album artwork

  • Error -195067896​5 Shared Variable

    I have a VI that reads a SV array. If I just plop this down on a blank vi and hit the run key it works fine with no errors. But when I put it inside of a loop it runs once then gives me this error. It doesn't matter how long of a wait I put into the

  • Too much "stuff" to install Leopard

    I've backup my iPhoto Library & iTunes library to external HD. Now I delete both from my HD? Then after Leopard is installed, I drag both of them from the external HD to MacBook Pro HD? Just being extra cautious!

  • Channel Syntax in ChnDel vs. ChnAlloc in DIAdem 9.1 SP2c

    Hi, I just updated my DIAdem 9.1 to SP2c and found some inconveniences in the change of the syntax of ChnAlloc. Since SP2b you have to give just the name without the "Group/" part. But ChnDel still needs this! This is pretty ugly on working in loops.