Error: 544 Error in File UNKNOWN.RPT

I have an application that is still running Crystal 8.5 Reports.
I periodically get the following error:
Error: 544 error in file unknown.rpt.
Access to report file denied. Another program may be using it.
Open print job <PEOpenPrintJob>.
There does not seem to be any consistency to when it happens.
The reports reside on a server and the runtime application uses a.rpt on a shared directory.
I can identify the last user to successfully print the report, have them logout of the application and the error goes away for a while. Different users can continue to print using the same .rpt. Then the problem comes back a little while later.
It only appears to happen to one of the reports
If I reboot the server the problem goes away for a couple of days. Then it comes back again.
I have verified and reverified the report and all seems to be OK.
Any suggestions are appreciated.
Thanks,
Leonard

Thanks Don,
I'm sure that is the problem.
I am using Delphi 7 and creating the Crpe Object  during runtime by using the procedure to follow.
Can you tell me how I would set the AsTempCopy option during runtime?
Also, my entire application is using crpe32.dll to run reports. Are you saying I can no longer do this?
We have purchased and tested crystal XI with my application I have just put off implementation in favor of other priority projects. Are there many enhancements to Crystal 2008 or can I save on the upgrade right now and implement XI?
procedure TfrmPOPrint.btnPrintClick(Sender: TObject);
var x: integer;
    cr: TCrpe;
begin
  inherited;
  cr := TCrpe.Create(nil);
  cr.WindowButtonBar.PrintSetupBtn := True;
  cr.OnWindowClose := crWindowClose;
  if (Sender as TButton).Tag = 0 then
      cr.Output := toPrinter
  else
      cr.Output := toWindow;
  try
    cr.ReportName := '';
    cr.ReportName := fcrReportPath + fcrReportName;
    x:=0;
    while x < cr.ParamFields.Count do
    begin
      if (UpperCase((cr.ParamFields[x].Name)) = 'USERNAME')then
          cr.ParamFields[x].CurrentValue := Username;
      inc(x);
    end;
    cr.execute;
  finally
    cr.Free
  end;
end;

Similar Messages

  • Error in File UNKNOWN.RPT: The request could not be submitted for backgroun

    I receive: Error in File UNKNOWN.RPT: The request could not be submitted for background processing.
    The error is on a windows Server 2008 SP2 production server. The report generates fine if I run it from within Visual studio 2008 on the server but not through IIS. The Crystal Reports is the version that came with vs2008 (10.5).
    Initially I was getting unauthorized access errors so I granted full access to everyone for the bin and managed crystal report folders under program files. This fixed the unauthorized access problem but now I get the background processing error. I also tried to inpersonate an admin account with the same result. I tried to copy the crystal reports dll's to the bin folder for the project but that did not help either. I am running out of ideas. I did notice that a 16kb rpt file is generated in the Windows/temp folder every time I try to run the report.
    the crashing page is here Link:[http://futuretechgroup.com/cgi-bin/crystaltest.aspx]
    Here is the event log:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 5/24/2010 12:24:56 PM
    Event time (UTC): 5/24/2010 7:24:56 PM
    Event ID: 87ee3d9297fb409ea7b440b059a0f07d
    Event sequence: 4
    Event occurrence: 1
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/5172/ROOT-1-129192026961318172
        Trust level: Full
        Application Virtual Path: /
        Application Path: C:\inetpub\vhosts\futuretechgroup.com\httpdocs\
        Machine name: FTG2009
    Process information:
        Process ID: 3644
        Process name: w3wp.exe
        Account name: FTG2009\IWPD_1(yanoshftg)
    Exception information:
        Exception type: CrystalReportsException
        Exception message: Load report failed.
    Request information:
        Request URL: http://futuretechgroup.com/cgi-bin/crystaltest.aspx
        Request path: /cgi-bin/crystaltest.aspx
        User host address: 70.173.237.72
        User: 
        Is authenticated: False
        Authentication Type: 
        Thread account name: FTG2009\IWPD_1(yanoshftg)
    Thread information:
        Thread ID: 5
        Thread account name: FTG2009\IWPD_1(yanoshftg)
        Is impersonating: False
        Stack trace:    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       at cgi_bin_CrystalTest.CreateReport() in C:\inetpub\vhosts\futuretechgroup.com\httpdocs\cgi-bin\CrystalTest.aspx.vb:line 15
       at cgi_bin_CrystalTest.Page_Load(Object sender, EventArgs e) in C:\inetpub\vhosts\futuretechgroup.com\httpdocs\cgi-bin\CrystalTest.aspx.vb:line 9
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    1. The OS is 32bit
    2. Yes. The C drive is the primary drive
    3. For the sake of simplicity and to troubleshoot the sample code has no datasource just 'Hello' in the report header. The Actual work order report that I need has ADO as datasource and it builds a PDF report without any problems when I run the page from VS2008 (development server) so I think the dll's are where thay are supposed to be. The c:\windows\assembly folder has about 25 CrystalDecisions files (10.5.37).
    Do I still need to create a deployment package even though I have everything else working?
    Below is the code I am using to create the report
        Sub CreateReport()
            Dim myReport As New ReportDocument
            'Try
            myReport.Load(Server.MapPath("CrystalReport.rpt"))
            'Catch ex As Exception
            'MsgBox(ex.InnerException.ToString)
            'End Try
            Dim g As Guid = Guid.NewGuid
            Dim woPath As String = "../FileTemp/" & g.ToString & ".pdf"
            'Try
            Dim CrExportOptions As ExportOptions
            Dim CrDiskFileDestinationOptions As New  _
            DiskFileDestinationOptions()
            Dim CrFormatTypeOptions As New PdfRtfWordFormatOptions()
            CrDiskFileDestinationOptions.DiskFileName = _
                                        Server.MapPath(woPath)
            CrExportOptions = myReport.ExportOptions
            With CrExportOptions
                .ExportDestinationType = ExportDestinationType.DiskFile
                .ExportFormatType = ExportFormatType.PortableDocFormat
                .DestinationOptions = CrDiskFileDestinationOptions
                .FormatOptions = CrFormatTypeOptions
            End With
            myReport.Export()
            'Catch ex As Exception
            'MsgBox(ex.ToString)
            'End Try
            Response.Redirect(woPath)
        End Sub

  • Error in File UNKNOWN.RPT  (Crystal for VS 2008)

    I have read and implemented nearly every suggested solution to solve this riddle of a Crystal Error I am stumped with.  Of course, on my dev box the report runs perfectly, as it should.  However, if I deploy my simple report web project to my client's Windows 2003 Standard Server, running IIS 6, I get this error.  I have literally implemented, or attempted to implement every single suggestion Google users have to offer, including adding security for nearly every user that has ever existed, to nearly every folder that has ever existed.  I have uninstalled/reinstalled/upgraded from Crystal for VS 2008, up to Crystal 12, down to Crystal 10.....and the same exact error appears.
    <br><br>
    Here is what my report app consists of:
    1. A single Crystal Report for VS 2008, in a reports folder (which I have granted full control permissions to everybody and my mother, along with permissions to Windows/Temp)
    2. That report, when called from the code behind, loads the report and immediately exports the report to a stream, so I can render that stream to a pdf viewer for the user.  (yes, very simple)
    3. (I do pass load a dataset that is passed into the report too)
    <br><br>
    What happens on the server when the report is referenced/ran<br>
    1. A Crystal .rpt file is geneated in the Windows/Temp folder<br>
    2. The frustrating error appears on the screen<br>
    <br><br>
    I have read through all BO suggested fixes for this, and nothing.<br>
    I have implemented all types of permissions changes, and nothing.<br>
    I have checked then rechecked the registry settings (even though everything happens on the C: drive), and nothing<br>
    I have reinstalled different versions/runtimes etc...and am now back to the original Crystal for VS 2008, and nothing<br>
    <br><br>
    My only total confusion, is that this report runs fine on my new Windows 2003 server.  The only difference between my server and my client's server, is that my client's server also has Helm installed.  That's it.
    <br><br>
    What is next?  Is there any other solution I have not tried?
    <br><br><br>
    Actual Error Message:<br>
    Error in File UNKNOWN.RPT:<br>
    The request could not be submitted for background processing. <br>
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. <br>
    <br>
    Exception Details: System.Runtime.InteropServices.COMException: Error in File UNKNOWN.RPT:
    The request could not be submitted for background processing.
    <br><br>
    Source Error:
    <br><br>
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    <br><br>
    Stack Trace:
    <br><br>
    [COMException (0x800002ad): Error in File UNKNOWN.RPT:
    The request could not be submitted for background processing.]
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +95
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +271
    <br>
    [CrystalReportsException: Load report failed.]
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +333
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +894
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod) +85
       Reports.ViewQuoteReport.Page_Load(Object sender, EventArgs e) in C:\inetpub\wwwroot\AutoID\Reports\ViewQuoteReport.aspx.vb:30
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +50
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
    Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3082
    Edited by: ohjonny on Feb 2, 2010 7:29 AM
    Edited by: ohjonny on Feb 2, 2010 7:30 AM

    I would pin this on the Helm (e.g.; works without, does not work with...). Couple of things you can try:
    1) Call who ever you got your particular Helm from and see if they have any ideas
    2) Use Process Monitor to see if it tells you what files / folders / reg entries are not being accessed. ProcMon is here:
    http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx
    Ludek

  • 20544,"Error in File UNKNOWN.RPT:"

    Post Author: SaurabhM
    CA Forum: Crystal Reports
    Hi,
    20544,"Error in File UNKNOWN.RPT:Access to report file denied. Another program may be using it."
    I am getting this particular error after 20 instance of my report opens up.
    The crystal report verision i m using is 8.5 & i m using ocx control for the same .the front end is VBA excel.
    If anybody have any idea about rectification of this error pls do share.
    Thanks in advance.
    SauabhM

    Hi, 
    I haven't gotten this message creating a report but I have gotten it trying to publish to Crystal Enterprise.  I found out the version of Crystal I was using was older than Crystal Enterprise.  After I installed the service pack onto my machine the message went away. 
    I only got the message with reports using parameters from the repository.  New parameters without LOVs were fine. 
    Good luck,
    Brian

  • Error occurred when uploading file (unknown file format) in t.code SFP

    Hi,
    According to SAP Note 1465628 - ESI Limit increased and length of temp. ESI no increased, when we are doing Step 4. PDF form changes (valid for ECC 6.0 and above)....and point (i)...in transaction SFP (From - HR_IN_ESI_005_99), system shows the below message.
    Error occurred when uploading file (unknown file format)
    Message no. FPUIFB068
    Plz guide..

    Hi Anil,
    Refer following links :
    Re: Adobe Form assignment
    Adobe Uploading form error unknown file forma
    Hope this will help.
    Regards,
    Vivek

  • Unable to retrieve Object.Error in File: Unknown Database Connector Error

    Hi,
    I have deployed two report on BO XI server. Both the reports are designed in Crystal Report designer XI.
    I got all database credentilas, saved in CMC by my administrator so that these reports should not prompt me for any database login parameters when I am trying to run them from BOXI test server.
    When I am running one of my report, the report is working fine. But this is not the case with other report.
    This second report is working well with some inputs.
    Case 1 - It is having to input date parameter(Date1 and Date2), when I am entering one input date parameter (Date1) and other (Date2) is set to NULL, it is displaying correct result. But when I am giving any date for Date2 it is throwing me an error -
    "Error in File Manager_Agent_Report.rpt: Unknown Database Connector Error
    Unable to retrieve Object.
    Error in File Manager_Agent_Report.rpt: Unknown Database Connector Error "
    Case 2 - Similiarly it is having an other input field which I am using in filetering the records in Report.
    If I am setting it to NULL or If I am not giving this field, while entering the input. I am getting an output.
    But incase I am giving this particular field then again it is promptig me the  above mentioned error.
    The report are working fine if I am executing them from crystal report designer.
    Please help me to find a solution for the same.
    Thanks
    Deepak

    Deepak, firstly are you trying to connect to one database or two in these reports? I would check the ODBC connections both in server and client machine (testing server or whatever you testing it on). Make sure both connection settings are exactly the same.
    Secondly I will check the parameters values under Objects under the CMC and see if there is anything changed there.
    Report back if you have checked both and it still giving errors
    Regards
    Jehanzeb

  • Iam trying to import a short video in final cut express and I'm getting this error... File Error: 1 file(s) recognized, 0 access denied, 1 unknown.  How do I solve this problem? The video is on my desktop it's an mpg.

    Iam trying to import a short video in final cut express and I'm getting this error... File Error: 1 file(s) recognized. 0 access denied, 1 unknown. How do I solve this problem?  The video is on my desktop and it's an mpg file. Please help me 

    Get a copy of MPEG Streamclip and convert your MPG file to QuickTime/Apple Intermediate Codec (AIC).  In FCE, select one of the setups that uses AIC that best matches your clip (say, 1920x1080i60).  Create a new sequence, then import the converted file.
    Note that if your MPG file is actually MPEG2 you will also need the QuickTime MPEG2 Component in addition to MPEG Streamclip. 
    What was the source of the MPG file?  How about if you open it in QuickTime, then do Window > Show Movie Inspector.  Tell us what it says for codec/compression, frame size & frame rate.

  • CR: Error in File ~tmp2be86bbf9f5e260.rpt: Database Connector Error

    dear all, this has finally got the better of me.
    i have been successfully scheduling a set of reports each month, until now. they all come back with the following error, each with a different ~tmp.rpt file
    Error in File ~tmp2be86bbf9f5e260.rpt: Database Connector Error
    each report communicates with an SAP ECC system. the user is fine, i have even tried my username to connect to sap, and same error occurs.
    no runtime errors in sap.
    the actual reports can be opened with crystal reports, and refreshed to show data without any problem.
    could this be an integration issue. i checked by removing the sap role, and adding it back without any issues.
    i have also cloned the CrystalReportsJobServer and tried to schedule with this one, same thing happens
    here are the instance details
    Title: Inv Count Cars 
    Document Type: Crystal Report 
    Status Failed 
    External Destination: None 
    Owner: ABC~400/GSMITH 
    Server Used: ABSAP02.CrystalReportsJobServer 
    PID: 11240 
    Folder Path: Reports/ 
    Remote Instance: No 
    Creation Time: 1/09/2011 14:59 
    Expiry: 1/09/2021 14:59 
    Start Time: 1/09/2011 14:59 
    End Time: 1/09/2011 14:59 
    Printer: None 
    Formats: Crystal Reports 
    Parameters: null; chrysler 
    Error Message: Error in File ~tmp2be86bbf9f5e260.rpt: Database Connector Error 
    could this be an integration ?
    i would very much appreciate anyones help
    thanks
    g
    Edited by: Glen Spalding on Sep 1, 2011 7:27 AM

    all servers up and running without any problems
    ODBC database connection works fine
    here a list i have made, so i can remember what i have done
    the issue is on the production box, and the dev box works fine.
    1. checked sap user, ok
    2. checked individual reports, ok
    3. checked dev environment, ok
    4. checked production IFRS & OFRS, ok
    5. checked production report on dev environment, ok
    6. checked working dev report on production environment, failed
    7. u201Crepairu201D of installation kit
    8. CRYSTALREPORTJBBSERVER failing
    9. cloned server, server failed
    10. tried rogue sap user/password on dev environment, returned different error
    11. bounced production, same problem, failed
    12. checked OBDC connection
    13. checked new SIA with new Job Server, still same thing, failed
    14. No Windows Events
    15. SAP note raised (0000724225 2011)
    16. BOBI Server Trace files nothing obvious
    17. tried with report sample to different backend, and CrystalReportsJobServer, ok
    18. brand new crystal reports with different user, failed
    19. noticed in trace file error 707 with JobScheduleChild process

  • HT2914 Hello: I am very much a novice with Final Cut. I am trying to import some video files from my desktop but keep getting an error message that says, "File error 1 file recognized, 0 access denied, 1 unknown". The file type is .mov, 35MB, 1920 x 1080,

    Hello:
    I am very much a novice with Final Cut.  I am trying to import some video files from  my desktop but keep getting an error message that says, "File error  1 file recognized, 0 access denied, 1 unknown".  The file type is .mov, 35MB, 1920 x 1080, Codec MPEG-2 video linear PCM timecode, color profile HD (1+1+1).  Can someone help?  Thanks, Paul

    You can't import MPEG-2 files directly to FCP X.
    Can you play this file in Quicktime Player? If so, then you can use the free program MPEG Streamclip to convert this to Quicktime. Use the ProRes codec.

  • Error : Unknown error trying to lock file

    Hello,
    I am facing this issue since last 2 weeks.
    I have one doc lib in it am saving excel documents. When am trying to open any excel document it wil open doc innitially in read only mode. When i click on "edit workbook" option to edit this excel file it will give me this error "Unknowen
    error trying to lock the file".
    Kindly share your views on this that how can i resolve this error.

    Try below:
    http://wiki.uky.edu/sharepoint/Wiki%20Pages/Unknown%20Error%20Trying%20to%20Lock%20File.aspx
    If it persists, there is a KB article about “Office 2003 and 2007 Office documents open read-only in Internet Explorer”, the scenario of your issue is very similar
    to the issue fixed in this KB article, I suggest following the resolution and checking. For more information, please refer to:
    http://support.microsoft.com/kb/870853
    http://social.technet.microsoft.com/wiki/contents/articles/11155.sharepoint-2007-unknown-error-trying-to-lock-file.aspx
     HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters
    On the Edit menu, point to New, and then click Multi-String Value.
    Type AuthForwardServerList, and then press ENTER.
    On the Edit menu, click Modify.
    In the Value data box, type the URL of the server that hosts the Web share, and then click OK.
    Exit Registry Editor.

  • Cannot Add PST File to Outlook 2010. An Unknown error occurred, error code 0x80070002

    Computer is running Windows 7 64 Enterprise with Office 2010. 
    There was a PST file that was connected to the computer until we had a network outage yesterday. I deleted the entry for the PST file and went to add the PST file back and received the following message when I clicked the "add file" button.
    An Unknown error occurred, error code 0x80070002
    I have ran the Office repair, and recreated the users profile on the computer. 
    The users PST file connects to other computers without an issue. I would like to have to avoid having the wipe the computer and do a clean install. 
    Please let me know if you need more details. 

    The users PST file connects to other computers without an issue.
    Are you saying the same PST can be used on other computers without an issue? At what exact point do you get this error? In which dialog and which exact button click?
    Please try to create a new profile and let it build a new pst file. Later, you can redirect it to your existing PST file and see if it works.
    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.

  • I'm editing in FCS 5.1, but when I try to save the project, it says "File error: file unknown."  Any advice?  Thanks!

    I'm editing in FCS 5.1, but when I try to save the project, it says "File error: file unknown."  Any advice?  Thanks!

    have you tried doing a save as to a different location?  If that doesn't work, do a search here.  I seem to remember people having the same problem.
    You could also try doing an xml export (I think 5.1 has that capability). 

  • Error in File ~tmp81c59e23760a10.rpt: Invalid argument for database

    When trying to run the report via Crystal Reports Server, we get the following error:
    Error in File ~tmp81c59e23760a10.rpt: Invalid argument for database.
    Opening the report in Crystal Reports 2008 and running a verify database, confirms that everything is working. Yet when we run it through Crystal Reports Server it errors every time.
    We are using a Progress ODBC driver which works fine when running reports via Crystal Reports 2008
    Can you please shed some light on this.
    I have already checked to see if there was a service pack or any other hot fixes available.

    Hi Brett,
    I believe I have the same error. ie
    Invalid Argument provided.
    Error in File xxxxx {C8F4D455-6B45-4859-B1B0-3E77619E5AD0}.rpt:
    Invalid argument for database."
    Have you managed to resolve the issue yet?
    We're running Crystal Reports 2008 Basic on MS SQL Server 2005.
    The Crystal Report works fine, when run on the server (and/or in terminal server session), but if it is run from a desktop client, which connects to the server, it gives the error above.
    So in my case, it must permissions or component related (ie something not loaded, that should be).
    I found the following on the internet:
    u201DIDataReader supports only one table by default
    When you view a report that has tables with the data source set to
    IDataReader for each one, and many of the tables are linked together, you
    may see the following error message: "Invalid database argument." Calls
    made to SetDataSource() from an IDataReader are supported only for
    reports that contain one table.
    Workaround
    To use an IDataReader with multiple tables, create a report with one
    command table that selects the necessary fields.u201C
    From researching in SAP BOBJ Notes I found somethings to try, or look at, but can't quite tackle them yet. I'll let you know how it goes.
    Best Regards,
    George

  • An unknown error has occured - opening file

    Hi, I'm trying to open a few different AI files that I created and saved a few days ago. They are both giving me an "an uknown error has occurred" message and won't let me open them. I've tried restarting and updating illustrator. Any ideas what is wrong? Thanks.

    cskdr,
    It the issue is limited to specific files:
    One thing often tried first is to create a new document and File>Place the corrupted one to see how much may be rescued that way (remember to tick Paste remembers Layers in the Layer palette flyout/dropdown first, and to untick it afterwards).
    Here are some websites where you can see whether it can rescue the file, and if it can, you may pay for a subscription to have it done,
    http://www.recoverytoolbox.com/buy_illustrator.html
    http://markzware.com/adobe-software/fix-illustrator-file-unknown-error-occurred-pdf2dtp-fi le-recovery/
    http://www.illustrator.fixtoolbox.com/
    As far as I remember, the first one is for Win and the one is for Mac, while the third one should be for both.
    Here are a few pages about struggling with it yourself:
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-illustrator-ai-file/
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator-files.html
    http://kb2.adobe.com/cps/500/cpsid_50032.html
    http://kb2.adobe.com/cps/500/cpsid_50031.html
    http://helpx.adobe.com/illustrator/kb/enable-content-recovery-mode-illustrator.html
    If the issue applies to all files:
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save curent artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • TS3694 i have error when i install restore and update in file unknown occurred error 1015

    i have error when i install restore and update in file unknown occurred error 1015

    http://http://support.apple.com/kb/TS3694#error1015 this should help you with your problem.

Maybe you are looking for