Merging PDFs from a network Share

I have a user using Adobe Acrobat XI on a XP SP3 system, She is trying to merge multiple PFD files that she created on a network share and getting an error to make sure that she has read write permisions to the files. Is there still an issue in Acrobat XI with network shares?

It's always an "iffy" prospect when using files on network file shares no matter what the application.  Granted it has gotten exceedingly better than it was in the 1990's but you can never truly guarantee the stability of a network connection, file locks, or file permissions.  My guess is if your user copies the files locally to their desktop they don't have this issue do they?

Similar Messages

  • Office files slow when opening from a Network Share

    Hi!
    So, we have a client who moved from having regular Office installations to Office 365 for Mid Size business and reinstalled the Office that comes along with Office 365. Ever since we did
    that, there is a delay in opening any office files from a network share. Opening up a Word or Excel document takes up a lot longer than it did before. We have another client with the exact same issue who have Office 2013, so I think its mostly something to
    do with office 2013. This problem has been going on for a month, and I have tried everything I can. I have gone through most posts on technet and the internets. Tried disabling AV, Office File Validation, added the network share to trusted locations, removed
    add-ins. Nothing works! All other files opens up quickly, pdf, jpg. We can open larger jpg or pdf files faster than smaller office documents. This is a significant problem with our clients as they work in recruitment and open up resumes all day from the network
    share and it takes forever to open. 
    Any advice or help is appreciated!
    Thanks!
    Shaneez

    Hello,
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Error Message When Importing Bookmarks From A Network Share

    An error message is generated whenever I try to import bookmarks.html from a network share on kubuntu. This same operation is sucessful on the windows version of firefox.
    To replicate:
    The bookmarks.html is created by Firefox 3.68 on windows 7. And is saved to a network share location. When trying to import this file into firefox 3.6.8 on my kubuntu 10.04 machine, I get the error message/window titled: remote files not accepted. The message states: You can only select local files.
    If I copy bookmarks.html local to the kubuntu machine, it imports without error.
    On windows, I can import bookmarks.html from the network share without error.
    Does anyone know why I can't import across the network on the kubuntu version?
    browser being run on windows 7:
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8
    browser being run on kubuntu 10.04:
    Firefox 3.6.8 Mozilla Firefox for Ubuntu canonical - 1.0.

    It appears to be any remote file, not just the bookmarks file. When trying to upload a file to a website, firefox threw up the same error:
    error message/window titled: remote files not accepted. The message states: You can only select local files.
    So what is it about files that are sitting on a server, firefox and kubuntu that causes this? I don't get the error message when using win7 on the same files.

  • Using robocopy to copy files from a network share over a WinRS command line session

    Hello,
    Preface: Using server 2008 enterprise.
    I can't seem to get robocopy to function over WinRS and I'm not sure where the problem actually lies.  Running robocopy locally on the computer does work fine, but as soon as I try to run it through a remote command prompt through the WinRS client or directly with the WinRS client I get an access denied message (error 5).
    I've tried using runas while logged into the remote command prompt as well, thinking that it could have been some sort of permissions inheritence issue.
    I've checked the permissions on the remote file share, I've even given 'Everyone', 'Anonymous Logon' and the computer's active directory account full control over the folder and the file I'm trying to copy, but still get the access denied error.
    I've tried using /COPY:DT since I read that usually resolved error 5 issues.
    None of these things have worked.
    I'm kind of out of ideas, I've read some blogs of people who have written powershell scripts which use winrm/robocopy so I figure I'm missing something stupid.  Or maybe I've stumbled upon a bug?
    C:\>robocopy \\192.168.100.1\share c:\test example.exe
       ROBOCOPY     ::     Robust File Copy for Windows
      Started : Mon Feb 09 17:35:32 2009
    2009/02/09 17:35:32 ERROR 5 (0x00000005) Getting File System Type of Source \\192.168.100.1\share\
    Access is denied.
       Source - \\192.168.100.1\share\
         Dest : c:\test\
        Files : example.exe
      Options : /COPY:DAT /R:1000000 /W:30
    2009/02/09 17:35:32 ERROR 5 (0x00000005) Accessing Source Directory \\192.168.100.1\share\
    Access is denied.

    Yep, I verified permissions on them all :(
    To maybe complicate the issue, I looked at the environment variables for myself while logged in locally to the computer and through WinRS and they look to be the same.   
    EDIT: Out of pure frustration I wrote a quick console application which impersonates the currently logged in user and copies a file from the network share I'm trying to access to the local computer.  The application properly impersonates the user - but does not copy the files while it's run through WinRM.  When you run the application as a locally logged in user it works just fine.
    WinRM must be behaving goofy :(
     This is the output of the following application:
    C:\Windows\System32>test.exe 
    Name: domain\loggedinuser 
    IsAuthenticated: True 
    User: {GUID} 
    AuthenticationType: Kerberos 
    Destination directory doesn't exist, creating new directory.. 
    Undoing impersonation.. 
    No exceptions, no nothing :(
    Imports System.IO 
    Imports System.IO.File 
    Module Module1 
       Dim impersonationContext As System.Security.Principal.WindowsImpersonationContext 
       Dim currentWindowsIdentity As System.Security.Principal.WindowsIdentity 
       Dim cpr As New copyProgress(AddressOf FileCopyProgress) 
       Dim destinationDir As DirectoryInfo = New DirectoryInfo("c:\destination\") 
       Private Delegate Function copyProgress(ByVal totalFileSize As Int64, ByVal totalBytesTransferred As Int64, ByVal streamSize As Int64, ByVal streamBytesTransferred As Int64, ByVal dwStreamNumber As Int32, ByVal dwCallbackReason As Int32, ByVal hSourceFile As Int32, ByVal hDestinationFile As Int32, ByVal lpData As Int32) As Int32 
       Private Declare Auto Function CopyFile Lib "kernel32.dll" (ByVal lpExistingFileName As String, ByVal lpNewFileName As String, ByVal lpProgressRoutine As copyProgress, ByVal lpData As Int32, ByVal lpBool As Int32, ByVal dwCopyFlags As Int32) As Int32 
       Private Function FileCopyProgress(ByVal totalFileSize As Int64, ByVal totalBytesTransferred As Int64, ByVal streamSize As Int64, ByVal streamBytesTransferred As Int64, ByVal dwStreamNumber As Int32, ByVal dwCallbackReason As Int32, ByVal hSourceFile As Int32, ByVal hDestinationFile As Int32, ByVal lpData As Int32) As Int32 
       End Function 
       Private Function FileCopyProgress2(ByVal totalFileSize As Int64, ByVal totalBytesTransferred As Int64, ByVal streamSize As Int64, ByVal streamBytesTransferred As Int64, ByVal dwStreamNumber As Int32, ByVal dwCallbackReason As Int32, ByVal hSourceFile As Int32, ByVal hDestinationFile As Int32, ByVal lpData As Int32) As Int32 
       End Function 
       Sub Main() 
          Try 
             currentWindowsIdentity = CType(System.Security.Principal.WindowsIdentity.GetCurrent, System.Security.Principal.WindowsIdentity) 
             impersonationContext = currentWindowsIdentity.Impersonate() 
             Console.WriteLine("Name: " & currentWindowsIdentity.Name) 
             Console.WriteLine("IsAuthenticated: " & currentWindowsIdentity.IsAuthenticated) 
             Console.WriteLine("User: " & currentWindowsIdentity.User.ToString) 
             Console.WriteLine("AuthenticationType: " & currentWindowsIdentity.AuthenticationType) 
             If Not destinationDir.Exists Then 
                Console.WriteLine("Destination directory doesn't exist, creating new directory..") 
                destinationDir.Create() 
             End If 
             CopyFile(Path.Combine("\\192.168.100.1\share\", "example.exe"), Path.Combine("c:\destination\", "example.exe"), cpr, 0, 0, 0) 
          Catch ex As Exception 
             Console.WriteLine(ex.ToString) 
          Finally 
             Console.WriteLine("Undoing impersonation..") 
             impersonationContext.Undo() 
          End Try 
          Console.ReadKey() 
       End Sub 
    End Module 

  • Excel 2007 ribbon freezes when opening (double clicking) a file from a network share

    So unlike other post I have found when double clicking an excel file from a network share the ribbon is frozen. If I start excel from the start menu then open the file through recent documents browse to the file from within excel the ribbon is active.
    Also, the preview pane is not active so it is not that issue.

    Hello-  I am having the same issue with a client in my office.  Minimizing then bringing it back up fixes the problem but it is still a hassle.  Have you found out anything else?  Thanks - Erik

  • Data Federator: Access Text file from secured Network Share or Sharepoint?

    Hi,
    I am using BusinessObjects Data Federator Designer XI 3.0 Service Pack 2 - 12.2.2.0 (Build 1002172322) and I'm new to DF.
    I am trying to use the Text File Datasource type to connect to a file on a secured Network Share and from a Sharepoint 2010 document repository. Is this possible?
    I am currently able to use the Text File datasource to read a file from a public network share (
    share\public\folderpath\file) or on the local federator machine using the "Local File" connection but cannot put in a username/password for accessing a secure network share. Is there a built in DF username/password that should be granted access to the share?
    Neiher the FTP File System or SMB Share seemed like it would work here either.
    For the Sharepoint connection, I know that I can make a webservice on a list and connect DF to the webservice, but I want to just connect to the document repository. I was unable to get this to work even with Sharepoint repositories using WebDav since the Local File method did not accept the url string (http://mysite.<org>.com/personal/<user>/Shared Documents). Is there any way to do this without having to change the way the file is exposed on the Sharepoint side?
    How is this normally handled? Put the files on a unsecured network share or on the DF server? Import the files into a DB and just use DB connections?
    Finally, is there a way to import XLS/XLSX files in DF or only CSV files?  I saw DI has an Excel Adaptor but didn't see anything for DF and when I tried it either could not retrieve the XML schema or reading the file's data failed.
    Thanks alot for the help.
    Kerby

    Bump, any help here with Data Federator usage?  Sharepoint, XLS files, or using secured network share?

  • Deploying Office 365 Pro Plus from a network share?

    I have setup a network share to install to a number of users, who I have applied licensing to and have created a script to run the setup with the xml configuration file.
    The install runs completely fine, installs the 365 Pro Plus, but when the user goes back and starts a program, I get the activation needed button and the user clicks on it and up comes the Install product page that redirects to their online account and asks
    for the Office to be installed again.
    Here is my xml config file. Is the autactivate portion correct?
    <Configuration>
        <Add SourcePath="\\leo\office365" OfficeClientEdition="32" >
        <Product ID="O365ProPlusRetail">
          <Language ID="en-us" />
        </Product>
      </Add>  
    <Display Level="Full" AcceptEULA="TRUE" />  
    <Logging Path="%temp%" />  
    <Property Name="AUTOACTIVATE" Value="1" />  
    </Configuration>

    Hi,
    As per the description, I understand that you are having issues with Office 365 activation after the installation.
    I have tested this on my own machine (with a similar configuration.xml file). It works well if I enter the correct email address that's associated with this Office subscription.
    Does this affect all users (email address)? I'd first suggest you check if you've installed the correct version of Office that's associated with these user accounts.
    Regards,
    Ethan Hua
    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.

  • Is there a way to provision FF to multiple users from a network share?

    Rather than deploying FF to 150,000 users, I would like to centrally provision the applicaiton from a network location. Is this possible?

    You can only use one library at a time in an Aperture slideshow, so I'd suggest to simply collect the audio that you want to use in a folder (export the songs from both iTunes Libraries) and then import this folder to Aperture. Now you have a project containing the audio files; you will see it in the Aperture Audio section of the audio Browser, right above the iTunes section.
    You can use the Apperture audio just like the audio in iTunes to drag to the timeline of your slideshow.
    Regards
    Léonie

  • I am getting the error Installation came back with 17002 when installing Office 365 ProPlus from a network share

    I have gotten this error several times, but It works fine on most machines
    Here is the most recent example of the log file:
    Timestamp Process TID Area Category EventID Level Message Correlation
    08/08/2014 11:28:29.131 SETUP (0xef8) 0x1964  Click-To-Run amaxp Medium BaseConfigure::TryGetConfiguration: EULA's have been accepted. 
    08/08/2014 11:28:29.134 SETUP (0xef8) 0x1964  Click-To-Run aoh85 Medium AdminConfigure::HandleStateAction: Configuring an install/crosssell scenario. 
    08/08/2014 11:28:29.136 SETUP (0xef8) 0x1964  Click-To-Run aqdco Monitorable TryCheckNetworkCost::HandleStateAction: Failed to initialize NetworkCostManager for http://officecdn.microsoft.com/pr/39168D7E-077B-48E7-872C-B232C3E72675.
    Assuming low cost and proceeding. 
    08/08/2014 11:28:29.136 SETUP (0xef8) 0x1964  Click-To-Run aoh9i Medium TryGetVersionDescriptor::HandleStateAction: Getting Cab: v64_15.0.4631.1002.cab 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run anwv6 Medium Descriptor::Load: Reading Available value from descriptor: 15.0.4631.1002 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run amawt Medium Descriptor::Load: Prereq Node exists. Being parsing it. 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run anwv7 Medium Descriptor::Load: Reading Bootstrapper value from descriptor: 15.0 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run amax8 Medium TryGetVersionDescriptor::HandleStateAction: Descriptor contains Prereqs. Run them now. 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run anhmm Medium Prereq::PrereqsFailed: No prereqs have failed. 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run anwwb Medium IsNativeValidator::CheckPreReq: returning: 1. 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run anhmm Medium Prereq::PrereqsFailed: No prereqs have failed. 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run an8w1 Medium O15BetaValidator::CheckPreReq: Validator has version descriptor 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run an8w6 Medium O15BetaValidator::CheckPreReq: No Office 15 installation detected. Prereq check passes. 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run an8xa Medium O15BetaValidator::CheckPreReq: returning: 1. 
    08/08/2014 11:28:30.131 SETUP (0xef8) 0x1964  Click-To-Run anhmm Medium Prereq::PrereqsFailed: No prereqs have failed. 
    08/08/2014 11:28:30.146 SETUP (0xef8) 0x1964  Click-To-Run anwwn Medium SXSValidator::CheckPreReq: Cross bitness test passed. 
    08/08/2014 11:28:30.146 SETUP (0xef8) 0x1964  Click-To-Run anhmm Medium Prereq::PrereqsFailed: No prereqs have failed. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run anwwp Medium BootstrapperValidator::CheckPreReq: returning: 1. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run anhmm Medium Prereq::PrereqsFailed: No prereqs have failed. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run an8w0 Medium ClientValidator::CheckPreReq: returning: 1. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run anhmm Medium Prereq::PrereqsFailed: No prereqs have failed. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run anwwe Medium DiskSpaceValidator::CheckPreReq: Free disk space is sufficient. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run anhmm Medium Prereq::PrereqsFailed: No prereqs have failed. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run aoh9n Medium TryGetClient::HandleStateAction: Installation path is: C:\Program Files\Microsoft Office 15 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run amaya Medium TryGetClient::HandleStateAction: Looking for existing client. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run amayd Medium TryGetClient::HandleStateAction: Did not find an existing client. Downloading a new one. 
    08/08/2014 11:28:30.147 SETUP (0xef8) 0x1964  Click-To-Run aon8l Medium TryGetClient::HandleStateAction: Getting Cab: i641033.cab 
    08/08/2014 11:28:30.643 SETUP (0xef8) 0x1964  Click-To-Run Telemetry amawv Medium MonitoredScope::ExecuteUnderStopWatch: TryGetClient::HandleStateAction: Getting Cab. Approximate duration: 499 milliseconds. 
    08/08/2014 11:28:30.643 SETUP (0xef8) 0x1964  Click-To-Run amaye Medium TryGetClient::HandleStateAction: Found C2R Client in extracted cab. 
    08/08/2014 11:28:30.643 SETUP (0xef8) 0x1964  Click-To-Run aoh9t Medium TryLaunchClient::HandleStateAction: Launching OfficeClickToRun.exe with parameters: scenario=unknown acceptalleulas="True" cdnbaseurl="http://officecdn.microsoft.com/pr/39168D7E-077B-48E7-872C-B232C3E72675"
    productreleaseid="none" culture="en-us" baseurl="http://officecdn.microsoft.com/pr/39168D7E-077B-48E7-872C-B232C3E72675" lcid="1033" platform="x64" version="15.0.4631.1002" updatebaseurl="\\server\share\Office365"
    updatesenabled="True" productstoadd="O365ProPlusRetail_en-us_x-none" trackedduration=499 
    08/08/2014 11:41:30.450 SETUP (0xef8) 0x1964  Click-To-Run apx75 Monitorable TryLaunchClient::HandleStateAction: C2R Client returned failing error code 17002 
    08/08/2014 11:41:30.450 SETUP (0xef8) 0x1964  Click-To-Run aoh72 Medium ExitBootStateMachine::HandleStateAction: Bootstrapper workflow exiting with result: 0x0 
    08/08/2014 11:41:30.450 SETUP (0xef8) 0x1964  Click-To-Run aoh9z Medium AdminBootstrapper::Main: Installation came back with 17002. 
    08/08/2014 11:41:30.450 SETUP (0xef8) 0x1964  Logging Liblet aqc99 Medium Logging liblet uninitializing. 
    Anyone have any ideas what is causing it?
    I don't think it is permissions as I have seen on some forums because the share has read/execute permissions for domain users and domain computers

    Hi,
    Are you deploying Office 365 with the latest Office Deployment Tool? Try to download the latest version of ODT from below link, then try again:
    http://www.microsoft.com/en-us/download/details.aspx?id=36778
    A similar issue was resolved here, you might want to have a look:
    http://social.technet.microsoft.com/Forums/en-US/eeb7b577-7868-487a-851d-a6d8c1c6bbda/office-c2r-installation-error-17002?forum=officeitpro
    BTW, Microsoft Office 365 Community > Forums > Deploy Office 365
    is a better source for this kind of problem and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks,
    Ethan Hua CHN
    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.

  • Adobe Reader 11.0.9 will not open PDF's from network shares

    Having an issue on computers running 11.0.8 that auto update to 11.0.9.  Opening a PDF from a network share that previously worked will no longer, giving the following error: "There was an error opening this document. The network path was not found".  I tried backing off to 11.0.8 again, as that's what get.adobe.com/reader is serving up, but it pops it right back to .9 after a few minutes as auto-updates are on. 
    Network path was put in the Security (Advanced) section, even turned Protected Mode off.
    Ideas?

    Can you please send process monitor logs:
    To take process monitor log follow the below steps:
    1) Download process monitor from http://technet.microsoft.com/en-in/sysinternals/bb896645.aspx
    2) Launch process monitor.
    3) Now try to open the PDF file at network share. It will not open with the network error so just cancel the error dialog.
    4) Save process monitor logs as a .pml file.
    5) Send it to me.
    Try above workflows with Protected Mode checkbox checked.
    Thanks,
    Shakti K

  • Can not print from network share.

    When a PDF document is printed from a network share whe're getting this error:
    Windows cannot find 'T:\temp\test.pdf'. Make sure you typed the name correctly, and then try again. To search for a file, click the Start button, and then click Search.
    This happens when a user click on the document with a right mouse click and select "print".
    But when the users copies it to his desktop and then select print with the right mouse click. The document print as normally. What could be the problem?
    we are using adobe reader 7.0.0

    Suggest that you check to make sure that you installed Bonjour Print Services for Windows v2.0.2 on the PC.
    Run the program and hopefully it will find your printer so you can select it and click to get things going.

  • Adobe Acrobat X PDF Printer not printing to Network Share

    Until recently we have been able to print to PDF onto a network share/drive without an issue.  Now it does not work, and we are not sure if it is an antivirus blocking it or perhaps an Adobe update, or even a combination of the two.
    We can print to PDF fine to a local drive, or with an older version of Adobe Acrobat (8 or 9), just not with X.
    Has  anyone encountered this issue, or have any insight on what might be a solution to our problems?
    I have tried disabling all the antivirus services, but that had no change.
    I also reinstalled Adobe Acrobat X to see if it would work.
    Lyle

    I have just tried this, i.e.,  printing to a network shares (in this case a network share many miles away over a wireless internet connection from a hotel on Windows 7 64-bit and Windows Server 2008 64-bit), and have not been able to reproduce the problem.
    Please provide the particulars of your network shares. For what it is worth, the Adobe software simply creates and writes the file to whatever location you point to. It doesn't even know if the destination is local or remote or anything to do with the network topology if remote.
    You might also want to check any firewall software you might have installed to make sure that it is not blocking these remote file operations from Acrobat or any of its components.
              - Dov

  • Crashes when running applications from network share - "Windows cannot access the file for one of the following reasons"

    Hi,
    starting a couple of weeks ago, we get the following error(s) when running applications from a network share. We don't know what causes this, we are not aware of any major changes in our network infrastructure or client/Server configuration. We did upgrade
    a lot of machines to Windows 8, but the issue also occurs on older Win7 computers.
    We figured out a workaround though: The applications run fine when launching from a FQDN share (like
    \\share.domain.Company.com) and only cause problems when running from
    \\share directly. They have worked fine for years without FQDN though.
    Any ideas?
    Error Details (the Kind of error differs greatly):
    # 1 #
    Log Name: Application
    Source: Application Error
    Date: ...
    Event ID: 1005
    Task Category: (100)
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: vmDEV
    Description:
    Windows cannot access the file for one of the following reasons: there is a problem with the network connection, the disk that the file is stored on, or the storage drivers installed on this computer; or the disk is missing. Windows closed the program XYZ
    because of this error.
    Program: XYZ
    File:
    The error value is listed in the Additional Data section.
    User Action
    1. Open the file again. This situation might be a temporary problem that corrects itself when the program runs again.
    2. If the file still cannot be accessed and
    - It is on the network, your network administrator should verify that there is not a problem with the network and that the server can be contacted.
    - It is on a removable disk, for example, a floppy disk or CD-ROM, verify that the disk is fully inserted into the computer.
    3. Check and repair the file system by running CHKDSK. To run CHKDSK, click Start, click Run, type CMD, and then click OK. At the command prompt, type CHKDSK /F, and then press ENTER.
    4. If the problem persists, restore the file from a backup copy.
    5. Determine whether other files on the same disk can be opened. If not, the disk might be damaged. If it is a hard disk, contact your administrator or computer hardware vendor for further assistance.
    Additional data
    Error value: C000020C [ also seen with code C00000C4]
    #2 (German error Messages from now on, we only use German OSes, the above english one is translated based on similar error Messages I found on the web) #
    Name der fehlerhaften Anwendung: XYZ.exe, Version: 2015.0.496.5054, Zeitstempel: 0x54ea67c3
    Name des fehlerhaften Moduls: clr.dll, Version: 4.0.30319.34014, Zeitstempel: 0x52e0b784
    Ausnahmecode: 0xc0000006
    Fehleroffset: 0x00026549
    ID des fehlerhaften Prozesses: 0x13ac
    Startzeit der fehlerhaften Anwendung: 0x01d055a854d36445
    Pfad der fehlerhaften Anwendung: \\share\application.exe
    Pfad des fehlerhaften Moduls: C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll
    Berichtskennung: 949ea933-c19b-11e4-bf04-78542e186754
    Vollständiger Name des fehlerhaften Pakets:
    Anwendungs-ID, die relativ zum fehlerhaften Paket ist:
    Anwendung: XYZ.exe
    Frameworkversion: v4.0.30319
    Beschreibung: Der Prozess wurde aufgrund einer unbehandelten Ausnahme beendet.
    Ausnahmeinformationen: Ausnahmecode c0000006, Ausnahmeadresse 720B6549
    Stapel:
    # 3 #
    Anwendung: WpfApp.exe
    Frameworkversion: v4.0.30319
    Beschreibung: Der Prozess wurde aufgrund einer unbehandelten Ausnahme beendet.
    Ausnahmeinformationen: System.Runtime.InteropServices.SEHException
    Stapel:
       bei SP.Forms.AutoCompleteSelectionBase.OnEnter(System.EventArgs)
       bei System.Windows.Forms.Control.NotifyEnter()
       bei System.Windows.Forms.ContainerControl.UpdateFocusedControl()
    # 4 #
    Anwendung: WpfApp.exe
    Frameworkversion: v4.0.30319
    Beschreibung: Der Prozess wurde aufgrund einer unbehandelten Ausnahme beendet.
    Ausnahmeinformationen: System.Runtime.InteropServices.SEHException
    Stapel:
       bei System.IO.UnmanagedMemoryStream.ReadByte()
       bei System.IO.BinaryReader.ReadByte()
       bei System.IO.BinaryReader.Read7BitEncodedInt()
       bei System.Resources.ResourceReader._LoadObjectV2(Int32, System.Resources.ResourceTypeCode ByRef)
       bei System.Resources.ResourceReader.LoadObjectV2(Int32, System.Resources.ResourceTypeCode ByRef)
       bei System.Resources.ResourceReader.LoadObject(Int32, System.Resources.ResourceTypeCode ByRef)
       bei System.Resources.RuntimeResourceSet.GetObject(System.String, Boolean, Boolean)
       bei System.Resources.RuntimeResourceSet.GetObject(System.String, Boolean)
       bei System.Resources.ResourceManager.GetObject(System.String, System.Globalization.CultureInfo, Boolean)
       bei System.Resources.ResourceManager.GetStream(System.String, System.Globalization.CultureInfo)
    # 5 #
    Anwendung: WpfApp.exe
    Frameworkversion: v4.0.30319
    Beschreibung: Der Prozess wurde aufgrund einer unbehandelten Ausnahme beendet.
    Ausnahmeinformationen: System.Runtime.InteropServices.SEHException
    Stapel:
       bei System.Reflection.RuntimeParameterInfo.get_Name()
       bei System.Diagnostics.StackTrace.ToString(TraceFormat)
       bei System.Environment.GetStackTrace(System.Exception, Boolean)
       bei System.Exception.GetStackTrace(Boolean)
       bei System.Exception.ToString(Boolean, Boolean)
       bei System.Exception.ToString(Boolean, Boolean)
       bei System.Exception.ToString(Boolean, Boolean)
       bei System.Exception.ToString()
    # 6 #
    Name der fehlerhaften Anwendung: XYZ.exe, Version: 2015.0.496.5054, Zeitstempel: 0x54ea834f
    Name des fehlerhaften Moduls: KERNELBASE.dll, Version: 6.3.9600.17278, Zeitstempel: 0x53eeb460
    Ausnahmecode: 0xe0434352
    Fehleroffset: 0x00012f71
    ID des fehlerhaften Prozesses: 0xa68
    Startzeit der fehlerhaften Anwendung: 0x01d0559cb7ec4ed6
    Pfad der fehlerhaften Anwendung: \\share\XYZ.exe
    Pfad des fehlerhaften Moduls: C:\WINDOWS\SYSTEM32\KERNELBASE.dll
    Berichtskennung: 010514d0-c190-11e4-bf04-78542e186754
    Vollständiger Name des fehlerhaften Pakets:
    Anwendungs-ID, die relativ zum fehlerhaften Paket ist:
    # 7 #
    Name der fehlerhaften Anwendung: XYZ.exe, Version: 2015.0.496.5054, Zeitstempel: 0x54ea7a6e
    Name des fehlerhaften Moduls: ntdll.dll, Version: 6.3.9600.17630, Zeitstempel: 0x54b0d74f
    Ausnahmecode: 0xc0000006
    Fehleroffset: 0x0006db27
    ID des fehlerhaften Prozesses: 0x18dc
    Startzeit der fehlerhaften Anwendung: 0x01d0559cb08529c3
    Pfad der fehlerhaften Anwendung: \\share\xyz.exe
    Pfad des fehlerhaften Moduls: C:\WINDOWS\SYSTEM32\ntdll.dll
    Berichtskennung: ef389186-c18f-11e4-bf04-78542e186754
    Vollständiger Name des fehlerhaften Pakets:
    Anwendungs-ID, die relativ zum fehlerhaften Paket ist:

    Hi,
    >>The applications run fine when launching from a FQDN share
    It sounds like a DNS suffix issue. When this issue occurs, please try to ping share on the client, then check if the corresponding IP address is correct. If the IP address is wrong, please adjust your settings of DNS to make sure that the client can resolve
    the share correctly.
    If it's very hard to change the settings of the DNS for some reason, as a work around, we can add the entry into the clients' hosts file.
    Best Regards.
    Steven Lee 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 Support, contact [email protected]

  • Excel 2013 hangs while trying to open a file from network share

    Hi,
    I am having issue opening excel file from a network share. it happens randomly, the file opens and hangs abruptly. Nothing happens after that ( we can only move the cursor), if we click on the excel sheet we get a beep sound. after i kill the excel process
    and open it again ,it works fine.
    Where did the member use the Excel file? Local disk, SharePoint, File server, or network shared disk?
           Network shared file and sometime locally
    Does the issue occur in the special file or every file?
          it happens randomly and the whole excel freezes. i have to kill the excel session.
    Which Office version is the file created? Excel 2013 or early? If it is XLS format, please try to convert to XLSX to test.
         Network file server has office 2010 and the user is trying to open it in excel 2013
      Does the file have some macros?
     Yes, they have macros in some files 
    Does the issue occur recently? If it is, have you installed some programs or update before you encountered it?
           it happened before too.
    Do you get some error message when Excel crashed?
    Yeah. Attaching the error message from event viewer. We get file corrupt errors and below too.
    Please suggest

    Hi Suren424,
    Since your first image showed that "To see if more information about the problem is available, check the problem history in the Action Center control panel." Please go to this path (Control Panel\All Control Panel Items\Action Center\Problem Reports)
    to check the detailed information, and you might upload the screenshot or info here.
    Then, please try the following methods and check if they are helpful:
    1. File --> Options --> Advanced --> uncheck "Ignore other applications that use Dynamic Data Exchange (DDE)"
    2. Turn off "Protected View"  --> (File –-> Options –-> Trust Center --> Protected View --> Uncheck all options
    3. I notice that >>Network file server has office 2010 and the user is trying to open it in excel 2013 <<, it also might be caused by the Microsoft Office File Validation for Office 2010, please try to change setting in server with
    the link:
    http://support.microsoft.com/kb/2501584
    If you have any update , please feel free let us know.
    Regards,
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Windows 7 - Files missing from network share after trying to burn and no data cached to be burned

    I ran into an issue trying to burn some file from a network share using Windows 7 Home Professional.  I was trying to burn some .jpg files from a mapped network share drive using explorer.  Every time I would drag the files to be burned from
    the share drive to the explorer screen to be burned, the files would disappear from the share.  To make things worse the files would not show up in the screen to be burned.  I was unable to locate any of the files on either of the systems when performing
    a search after this took place.  I verified that the steps that I was taking to burn the files were the same as outlined on the Microsoft site.  No matter what I did to burn these files, they were deleted from the mapped network drive. 
    Below are the steps that I took that both resulted in the files being deleted as well as what I had to do to finally burn the disc.
    Steps that resulted in files being deleted:
    1. Insert blank CD into drive. 
    2. From prompt select burn using explorer (Mastered Format)
    3. Enter title and select with CD/DVD, click Next.
    4. Open a second explorer window, navigate to mapped network drive with files to be burned and snap next to explorer to be burned.
    5. Drag and drop the files from the share drive to CD.
    This where the train would fall off the tracks every time.  I would receive a message that the file(s) no longer exist and if I wanted to continue.  From here the files would be deleted from the share drive.  The best part is that the files
    would also NOT be locally stored to be burned. 
    Steps to burn share files WITHOUT delete:
    Follow steps outlined above, but instead of just dragging and dropping the files as outlined in step 5 select the files from the network share location, right mouse select copy.  Then right mouse select paste in the explorer window to be burned.
    I have tested this many times and every time ended up with the same problem.  At this point I am sure that there is a problem with the way that Windows 7 is performing the burn.  The system that I was using to burn is Windows 7 Home Professional
    with all the patches and updates loaded.  The remote system is Windows XP Professional with all the patches and updates loaded.
    Thanks in advance

    Yes, the problem is still continuing. However, after looking into as much of it as I can, I can confirm something that r.p.b_ started stumbling on. The files are deleted IF AND ONLY IF a user is using the built-in Windows 7 disc burning utility AND is dragging
    and dropping the files to the drive from a network share; this doesn't happen locally. If you watch what happens in the native folder, the files are literally scrubbed from the drive as they are processed and added to the image. However, if you Right Click
    on the files and copy them, then Right Click->Paste onto the drive, they remain. (The keyboard shortcuts also worked.) Also, 3rd party disc burning utilities function they way the should. (In other words, they don't delete the files.)
    My speculation is that there's a bug in the coding that sees the network share as a temporary buffer file while the image is being prepared. Then, as the files are processed in what ever way is needed, the "temporary buffer" is being deleted. The result:
    lost files on a network share. But, this is just speculation.

Maybe you are looking for

  • HT1452 I want to reset the permissions on a western digital external hard drive to work between mac and windows... How can I do this easily?

    I have a MacBook Pro and have recently bought a Western Digital external hard drive.  I used it on my windows laptop first and unfortunately now on the Mac it is read only.  How can I set it so that I can use it successfully between the both the Mac

  • Memory leak in OCI Direct Path sample program in threaded mode

    I have a slightly (okay, more than slightly) modified version of the sample program cdemodp.c, which uses OCI to do a Direct Path load. Since my eventual aim is to make a C++ module that loads a table from a file as part of a multithreaded program, I

  • Scripting bridge challenge (problem)

    I need help! hi, i have a cocoa app that has been upgraded to support applescript. I can work with it just fine from the script editor. I intend it to be able to send commands so i am adding scripting bridge support, and I have hit a wall. the docume

  • DTW - oVatGroups error message

    Hi all, I'm trying to update the vat groups table through DTW. Many of the tax rates must be changed from 21% to 20% and doing it manually would take a lot of time. What happens is that i'm always getting an error message: "Can not find this object i

  • Oracle Forms Recognition Error - import step

    I am committing tiff images from ODC to a file system location where OFR is listening. I am getting the following error performing the OFR import step: Error in classification and extraction step on document 'path'description Error extracting class '