'Crw32.exe needs to close' error. Faulting Module Mod:pscript5.dll

We are using Crystal Reports 9 and have been for quite some time now.  A couple of weeks ago we had two users complaining of the same issue.  Sometimes when they want to print to PDF, Crystal will start to print, but it will not load past page 1.  The error "crw32.exe needs to close" comes up with the faulting module Mod:pscript5.dll. After the program closes, the portion of the document that made it to the printer pops up in Adobe Acrobat. It's usually just the first few lines of the first page. This happens sometimes. Sometimes the document will print the whole way through, other times it won't. It does it on multiple documents as well. We first noticed it when printing larger documents(50pages or so), but it will also do it on a 1 or 2 page document. I've uninstalled and reinstalled Crystal and Adobe Acrobat with no success. I downloaded the service pack for Crystal, changed printer drivers, added Crystal Reports to the DEP exceptions list, and tried printing to Adobe Reader, but none of it worked. I've also monitored the memory while Crystal is running and trying to print the report, but there weren't any significant jumps in memory usage. I know that pscript.dll is a post script printing file, but I kind of think that it isn't a printing issue and it's throwing up the wrong error. It errors with more than one printer. And it will work some of the time. It seems to be hit and miss. Has anyone run into this issue or have any other suggestions?

Good info, now we know for sure.
CR 9 used one set of routines to format the reports, back then we were PRE-WYSIWYG, meaning we did not use Adobes formatting technique's when viewing and printing. In CR 10 and above we moved to their model which is why newly created Reports render and work properly.
Only thing I can suggest is if you must use that printer driver to update your reports, Open each one, Verify database, set up page size to the PDF printer and then save as to a new location. YOu can try checking off the no Printer option and Dissociate... to see if that helps.
So yes in one sense it is a CR issue but at the same time CR 9 worked fine with the current Printers and PDF viewers at the time.
CR 9 has been out of support for years now and we do recommend that you update your reports each version, the further apart the version numbers of the RPT's are the more chance that some functionality may have issues when opened in a new version.
No new patches are available so nothing we can do, possibly Adobe can make their Print Driver more backward compatible....
Thanks
Don

Similar Messages

  • Application Error - Faulting module name: KERNELBASE.dll, version: 6.1.7600.16385

    Hi,
    we have one Visual C++ application and this application also using few external dlls. while exiting from application, getting following error. This
    is happened in Windows 7.
    Please help us to resolve this issue.
    Log Name:     
    Application
    Source:       
    Application Error
    Date:         
    28/07/2010 11:44:16 AM
    Event ID:     
    1000
    Task Category: (100)
    Level:        
    Error
    Keywords:     
    Classic
    User:         
    N/A
    Computer:     
    CRIWKS12.crillylaw.local
    Description:
    Faulting application name: WinTest.exe, version: 2.7.1.0, time stamp: 0x4b78d5b8
    Faulting module name: KERNELBASE.dll, version: 6.1.7600.16385, time stamp: 0x4a5bdaae
    Exception code: 0x0eedfade
    Fault offset: 0x00009617
    Faulting process id: 0x10b8
    Faulting application start time: 0x01cb2df647dfd847
    Faulting application path: C:\Program Files\xxx\xxx\xxx\ WinTest.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: a17377fd-99e9-11df-8941-90fba60d7539
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2010-07-28T01:44:16.000000000Z" />
    <EventRecordID>3773</EventRecordID>
    <Channel>Application</Channel>
    <Computer>CRIWKS12.crillylaw.local</Computer>
    <Security />
    </System>
    <EventData>
    <Data> WinTest.exe</Data>
    <Data>2.7.1.0</Data>
    <Data>4b78d5b8</Data>
    <Data>KERNELBASE.dll</Data>
    <Data>6.1.7600.16385</Data>
    <Data>4a5bdaae</Data>
    <Data>0eedfade</Data>
    <Data>00009617</Data>
    <Data>10b8</Data>
    <Data>01cb2df647dfd847</Data>
    <Data>C:\Program Files\xxx\xxx\xxx\ WinTest.exe</Data>
    <Data>C:\Windows\system32\KERNELBASE.dll</Data>
    <Data>a17377fd-99e9-11df-8941-90fba60d7539</Data>
    </EventData>
    </Event>
    PS. I apologise for not being able to provide the application's name.

    Hi Jesse ,
    I am pasting the entire module where the code fails:
    /// <summary>
    /// Pool the job execution status
    /// </summary>
    private void PoolJobExecutionStatus()
    int waitIndex = 0;
    while (true)
    try
    lock (this.lockingObject)
    this.ReOpenRegistryConnection();
    currentJob = SR.Job.Load(this.currentJobId, this.poolingConnection);
    JobStatusEventArgs jobStatusArg = (currentJob.Status == SR.JobStatus.Aborted) ?
    new JobStatusEventArgs(currentJob.Name, currentJob.Status, currentJob.ErrorMessage) :
    new JobStatusEventArgs(currentJob.Name, currentJob.Status);
    this.dispatcher.BeginInvoke(new EventHandler<JobStatusEventArgs>(RaiseUpdateStatus), DispatcherPriority.Normal, new object[] { this, jobStatusArg });
    if (currentJob.Status == JobStatus.Aborted || currentJob.Status == JobStatus.Completed)
    this.PoolJobThread.Abort();
    break;
    catch (ThreadAbortException)
    catch (ConnectionFailure ex)
    TridentErrorHandler.HandleUIException(ex);
    // If reconnection fails more than the max reconnection value then exit.
    if (this.connectionAttempts >= this.maxConnectionAttempts)
    break;
    this.connectionAttempts++;
    catch (BackendStorageException ex)
    TridentErrorHandler.HandleUIException(ex);
    // If reconnection fails 5 times then exit.
    if (this.connectionAttempts >= this.maxConnectionAttempts)
    break;
    this.connectionAttempts++;
    catch (Exception ex)
    TridentErrorHandler.HandleUIException(ex);
    break;
    try
    Thread.Sleep(500);
    // If job is in waiting state, every 3 min show the user retry message.
    // (waitIndex == 360) Specifes 3 min.
    if (currentJob.Status == JobStatus.Waiting && waitIndex == 360)
    waitIndex = 0;
    JobStatusEventArgs jobStatusArg = new JobStatusEventArgs(this.currentJob.Name, this.currentJob.Status, TridentResourceManager.GetString("JobTerminatedByUserMessage"));
    this.dispatcher.BeginInvoke(new EventHandler<JobStatusEventArgs>(RaiseUpdateStatus), DispatcherPriority.Normal, new object[] { this, jobStatusArg });
    catch (Exception ex)
    TridentErrorHandler.HandleUIException(ex);
    waitIndex++;
    public void StartDataProductService(Guid jobId, Connection poolConnection)
    this.currentJobId = jobId;
    this.poolingConnection = poolConnection;
    this.ClearTempData();
    this.HaltService();
    this.PoolJobThread = new Thread(this.PoolJobExecutionStatus);
    this.PoolJobThread.Start();
    Hope this helps
    Regards,
    Rahul

  • Mmc is getting crashed with error Faulting module name: KERNELBASE.dll on windows server 2012 r2

    I am facing issue with BizTalk admin console, getting below error, 
    i  thought it will be due to sql server or WMI so restarted sql services as well WMIS services but no luck. restarted Distributed transaction services as well as restarted machine but it did not solve.
    also when i tried with other MMC's i am getting below error in event viewer,
    Faulting application name: mmc.exe, version: 6.3.9600.16384, time stamp: 0x52158765
    Faulting module name: KERNELBASE.dll, version: 6.3.9600.17055, time stamp: 0x532943a3
    Exception code: 0xe0434352
    Fault offset: 0x00011d4d
    Faulting process id: 0x215c
    Faulting application start time: 0x01d004a6e0c31506
    Faulting application path: C:\windows\SysWOW64\mmc.exe
    Faulting module path: C:\windows\SYSTEM32\KERNELBASE.dll
    Report Id: 3d994be7-709f-11e4-80ee-00505689506c
    Faulting package full name: 
    Faulting package-relative application ID:
    Application: mmc.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.Reflection.TargetInvocationException
    Stack:
       at Microsoft.ManagementConsole.Internal.SnapInMessagePumpProxy.OnThreadException(System.Object,
    System.Threading.ThreadExceptionEventArgs)
       at System.Windows.Forms.Application+ThreadContext.OnThreadException(System.Exception)
       at System.Windows.Forms.Control.WndProcException(System.Exception)
       at System.Windows.Forms.Control+ControlNativeWindow.OnThreadException(System.Exception)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr, Int32, IntPtr, IntPtr)
       at System.Windows.Forms.UnsafeNativeMethods.IntDestroyWindow(System.Runtime.InteropServices.HandleRef)
       at System.Windows.Forms.UnsafeNativeMethods.DestroyWindow(System.Runtime.InteropServices.HandleRef)
       at System.Windows.Forms.NativeWindow.DestroyHandle()
       at System.Windows.Forms.Control.DestroyHandle()
       at System.Windows.Forms.Control.Dispose(Boolean)
       at Microsoft.BizTalk.Administration.SnapIn.Forms.GroupHub.OperationsCtrl.Dispose(Boolean)
       at System.ComponentModel.Component.Dispose()
       at Microsoft.ManagementConsole.FormView.InternalShutdown()
       at Microsoft.ManagementConsole.View.HandleShutdownRequest(Microsoft.ManagementConsole.Internal.IRequestStatus)
       at Microsoft.ManagementConsole.View.ProcessRequest(Microsoft.ManagementConsole.Internal.Request)
       at Microsoft.ManagementConsole.ViewMessageClient.ProcessRequest(Microsoft.ManagementConsole.Internal.Request)
       at Microsoft.ManagementConsole.Internal.IMessageClient.ProcessRequest(Microsoft.ManagementConsole.Internal.Request)
       at Microsoft.ManagementConsole.Executive.RequestStatus.BeginRequest(Microsoft.ManagementConsole.Internal.IMessageClient,
    Microsoft.ManagementConsole.Internal.RequestInfo)
       at Microsoft.ManagementConsole.Executive.SnapInRequestOperation.ProcessRequest()
       at Microsoft.ManagementConsole.Executive.Operation.OnThreadTransfer(Microsoft.ManagementConsole.Executive.SimpleOperationCallback)
       at System.RuntimeMethodHandle.InvokeMethod(System.Object, System.Object[], System.Signature,
    Boolean)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(System.Object, System.Object[], System.Object[])
       at System.Reflection.RuntimeMethodInfo.UnsafeInvoke(System.Object, System.Reflection.BindingFlags,
    System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
       at System.Delegate.DynamicInvokeImpl(System.Object[])
       at Microsoft.ManagementConsole.Executive.DelegateMessage.OnExecute()
       at Microsoft.ManagementConsole.Executive.Message.Execute()
       at Microsoft.ManagementConsole.Executive.SnapInThread.DispatchPendingSnapInMessages()
       at Microsoft.ManagementConsole.Executive.SnapInThread.OnDataReadyAsync(System.Object, System.EventArgs)
       at Microsoft.ManagementConsole.Executive.MmcThreadMessageWindow.WndProc(System.Windows.Forms.Message
    ByRef)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr, Int32, IntPtr, IntPtr)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG ByRef)
       at System.Windows.Forms.Application+ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr,
    Int32, Int32)
       at System.Windows.Forms.Application+ThreadContext.RunMessageLoopInner(Int32, System.Windows.Forms.ApplicationContext)
       at System.Windows.Forms.Application+ThreadContext.RunMessageLoop(Int32, System.Windows.Forms.ApplicationContext)
       at System.Windows.Forms.Application.Run()
       at Microsoft.ManagementConsole.Internal.SnapInMessagePumpProxy.Microsoft.ManagementConsole.Internal.ISnapInMessagePumpProxy.Run()
       at Microsoft.ManagementConsole.Internal.ISnapInMessagePumpProxy.Run()
       at Microsoft.ManagementConsole.Executive.SnapInThread.OnThreadStart()
       at System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
       at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback,
    System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback,
    System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback,
    System.Object)
       at System.Threading.ThreadHelper.ThreadStart()
    does any one face similar issue if yes can you please help me to solve this?
    Regards,
    Amit
    Regards, Amit More

    If its only this MMC might try them over here.
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=biztalkgeneral
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Event 1000,Application Error Faulting module name: KERNELBASE.dll

    I develop one tool using C#.But it will stop working intermittently.The failure information is as below.I don't know what's wrong with it.
    Faulting application name: TVSUAuto.exe, version: 1.0.5294.41796, time stamp: 0x53b25f89
    Faulting module name: KERNELBASE.dll, version: 6.3.9600.16384, time stamp: 0x5215fa76
    Exception code: 0xe0434352
    Fault offset: 0x0000000000008384
    Faulting process id: 0x8d4
    Faulting application start time: 0x01cf96029eff97c7
    Faulting application path: C:\TVSUAuto.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 0503be2e-01f7-11e4-825d-5c514f0bf2b5

    Hi,
    That exception code indicates a .NET exception has been thrown and was not handled. You probably want to add some exception handling and logging code to your application so you get an idea about what happens. Otherwise you'll need to post your codes to oneDrive
    so that we can test it.
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • I continually get this: Application Error 1000_(100)_"Faulting application name: MyAppName.exe Faulting module name: MSVBVM60.DLL

    I have a VB6 application which connects to a SQL Server.  I am running my exe on a Windows Server Terminal Server.  I frequently have my EXE crash and close at random.  My EXE doesn't log any error because the crash occurred outside of my
    application. 
    Here is the Windows event error:
    07/17/14 4:59:49 PM    Application Error    1000    (100)    "Faulting application name: MyApp.exe, version: 8.0.0.0, time stamp: 0x53adc042
    Faulting module name: MSVBVM60.DLL, version: 6.0.98.15, time stamp: 0x4a5bda6c
    Exception code: 0xc0000006
    Fault offset: 0x00054948
    Faulting process id: 0x24d4
    Faulting application start time: 0x01cfa1fe336df3db
    Faulting application path: N:\MyApp\MyApp.exe
    Faulting module path: C:\Windows\system32\MSVBVM60.DLL
    Report Id: 498ee913-0df5-11e4-a940-000c29a03ae8"
    I have tried to search the internet but I have yet to find a solution.  Any help or explanation would be greatly appreciated.

    Hello,
    Thank you for your post.
    I’m afraid that it is not the correct forum for this issue, since this forum is to
    discusses the usage of Visual Studio IDE such as
    WPF & SL designer, Visual Studio Guidance Automation Toolkit,
    Developer Documentation and Help System and
    Visual Studio Editor.
    Since you are working with VB6 application, I suggest that you can consult on these popular third-party forums which support Visual Basic 6for better solutions:
    VB Forums
    VB City
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Event 1000, Application Error (Faulting application name: w3wp.exe - Faulting module name: KERNELBASE.dll)

    Hello Guys,
    While running a web application am getting an error like: Remote server not responding. Below are the details of event viewers which been captured at the same time when this error happened:
    Event 1000, Application Error
    Faulting application name: w3wp.exe, version: 7.5.7600.16385, time stamp: 0x4a5bd0eb
    Faulting module name: KERNELBASE.dll, version: 6.1.7600.16850, time stamp: 0x4e211da1
    Exception code: 0xe053534f
    Fault offset: 0x000000000000a88d
    Faulting process id: 0x%9
    Faulting application start time: 0x%10
    Faulting application path: %11
    Faulting module path: %12
    Report Id: %13
    Event 1001, Windows Error Reporting
    Fault bucket , type 0
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: w3wp.exe
    P2: 7.5.7600.16385
    P3: 4a5bd0eb
    P4: KERNELBASE.dll
    P5: 6.1.7600.16850
    P6: 4e211da1
    P7: e053534f
    P8: 000000000000a88d
    P9: 
    P10: 
    Attached files:
    C:\Windows\Temp\WERC9CD.tmp.WERInternalMetadata.xml
    C:\Windows\Temp\WERC9CE.tmp.hdmp
    C:\Windows\Temp\WEREE30.tmp.mdmp
    These files may be available here:
    C:\ProgramData\Microsoft\Windows\WER\ReportQueue\AppCrash_w3wp.exe_30877924d6b2c607fe88a8718915f25fb79093_cab_e905f2b0
    Analysis symbol: 
    Rechecking for solution: 0
    Report Id: d46a6849-8f6a-11e1-98af-00215e6e4855
    Report Status: 4
    This is an priority issue which we are facing in IIS. IIS is configured for Framework 2.0 and underlying OS is - Windows
    Server 2008 R2 Standard.This issue is replicable and occurring frequently Please suggest how to resolve it. Any input related to above issue is appreciable.

    Please refer similar discussions and see if they help
    Faulting application name: w3wp.exe 
    http://telligent.com/support/communityserver/community_server_2008/f/288/t/1067447.aspx 
    Event ID: 1000, Faulting application w3wp.exe, faulting module unknown, 
    http://social.msdn.microsoft.com/forums/en-US/clr/thread/9be88a2f-c8cc-4a73-9371-45ab73982123
    For IIS related queries, please post them in IIS forum - http://forums.iis.net/
    A UNIVERSE without WINDOWS is CHAOS !
    This posting is provided "AS IS" with no warranties or guarantees and confers no rights.
    About Me !!!

  • Help = APPCRASH - AMDS.exe - Fault Module Name:FPServiceProvider.dll ???

    Hi All,
    I've been getting this error for near on 2 weeks now: -
    Problem Event Name: APPCRASH
    Application Name: AppleMobileDeviceService.exe
    Application Version: 2.50.39.0
    Application Timestamp: 49f9b7cf
    Fault Module Name: FPServiceProvider.dll
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 4a52bc3e
    Exception Code: c0000005
    Exception Offset: 00001b40
    OS Version: 6.0.6002.2.2.0.256.6
    Locale ID: 1033
    Additional Information 1: 5b9d
    Additional Information 2: 456ef6f7a144bdf05482252ff40e7113
    Additional Information 3: 9091
    Additional Information 4: 94e2f166e28b52b5ec4820600038893b
    Strangley enough this all happened when I upgraded my iTunes to 8.2.1.6 and ever since then my iTunes and Ipod Touch 1G have not been friends!!!
    Please help - I've been racking my brains on this for the past few hours - restarting AMDS services, re-installing iTunes, QuickTime and all things Apple, Resetting my iPod Touch to factory default and still I find no light at the end of the tunnel...
    I had a glimmer of hope earlier by unticking ROOT HUB(s) USB Controllers "Allow Computer to turn of this device to save power" but what do ya know iTunes then had an error and kept closing down on me instead!? (iTunes by itself works fine now - with my entire library still intact:)
    I've now trawled through every forum that I can to resolve this issue and have to resort to this before I systematically go for a ceremonial burning of my beloved iTouch (it really has become that desperate!)
    Please help....?.....
    Thanks for anything!
    Alex.
    I thought I'd put a day

    That I did Katrina,
    And it looks like that was the cause! Which I realised as I was writing this post!!! - I removed all traces of FoxyProxy including the Video streamer and normal version (think latter was the culprit!) and all ist gud now! Thanks for the tip off all the same though Katrina
    Hopefully this can help others not go through the same as I did!
    Peace, Love and Apples
    Alex

  • CS5 has stopped working pop up everytime when selecting fonts. details:  Problem signature:   Problem Event Name:APPCRASH   Application Name:Illustrator.exe   Application Version:15.1.0.39   Application Timestamp:4d76c9e3   Fault Module Name:CoolType.dll

    Stops responding, etc
    details
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Illustrator.exe
      Application Version:    15.1.0.39
      Application Timestamp:    4d76c9e3
      Fault Module Name:    CoolType.dll
      Fault Module Version:    5.7.83.9418
      Fault Module Timestamp:    4c296b69
      Exception Code:    c0000005
      Exception Offset:    00021ae1
      OS Version:    6.1.7601.2.1.0.768.3
      Locale ID:    1033
      Additional Information 1:    8e1b
      Additional Information 2:    8e1b636bd3438ac15d03ef1549553b25
      Additional Information 3:    1b31
      Additional Information 4:    1b316dab8b65bf468124c367b4a50e14

    But I am assuming that when I make the installer, the 32-bit Run Time Engine is appened with the installer, as show below
    Since from the picture you can see its including the support installers from '\Program Files (x86)\'
    The application runs queries to fetch data from database in SQL server 2008, and for that I am using a Microsoft SQL Native Client 2008 R2 64 bit ( this is the only version that installs on either PC, even the one on which I developed my LV Application).
    I am not using any driver, only toolkits for reports - and for that I un-checked the "Remove unused polymorphic VI instances" when making the executable, otherwise LV throws up an exception that share variable are not being included.
    Yes I did reboot every time after I ran the installation.
    Still getting the same error.

  • Directory server 5.1 application error - faulting module libslapd.dll

    we are running directory server 5.1 (build 2001.326.2045) on windows nt, with multi-master replication on two servers. one server went down. there are no clues as to why in the access or error logs.
    the windows event viewer shows an application error. the faulting application is slapd.exe, faulting module is libslapd.dll, and fault address is 0x0003edb0
    any help would be appreciated. any questions please ask. thanks!
    Edited by: amlefty on Aug 26, 2009 8:12 PM

    we are running directory server 5.1 (build 2001.326.2045) on windows nt, with multi-master replication on two servers. one server went down. there are no clues as to why in the access or error logs.
    the windows event viewer shows an application error. the faulting application is slapd.exe, faulting module is libslapd.dll, and fault address is 0x0003edb0
    any help would be appreciated. any questions please ask. thanks!
    Edited by: amlefty on Aug 26, 2009 8:12 PM

  • IE Application Error: Faulting Module Flash10v.ocx

    I'm running Windows 2003 Server, Enterprise, with Terminal Services and all users connecting via RDP.  Have 32-bit IE8 and Adobe Flash Player 10.3.183.5.  I'm having problems with one third party website application which requires Flash Player.  I receive an iexplore.exe - application error stating "The instruction at "0x08b4288b" referenced memory at "0x0ffcf2e4".  The memory could not be read".  Under Application in Event Viewer I receive a corresponding Application Error which states "Faulting application iexplore.exe, version 8.0.6001, faulting module Flash10v.ocs, version 10.3.183.5, fault address 0x000b288b".  I was having the same problem with the previous version of Flash Player as well, so updating did not solve it.  In the past we've had problems with Flash Player updates and this particular website, and were able to solve it by changing the permissions of a few registry keys to allow "everyone" Read permissions for those keys.  This method did not work this time, so I'm hoping someone can tell me how to locate the registry entries related to Flash Player so I can modify the permissions.

    I'm running Windows 2003 Server, Enterprise, with Terminal Services and all users connecting via RDP.  Have 32-bit IE8 and Adobe Flash Player 10.3.183.5.  I'm having problems with one third party website application which requires Flash Player.  I receive an iexplore.exe - application error stating "The instruction at "0x08b4288b" referenced memory at "0x0ffcf2e4".  The memory could not be read".  Under Application in Event Viewer I receive a corresponding Application Error which states "Faulting application iexplore.exe, version 8.0.6001, faulting module Flash10v.ocs, version 10.3.183.5, fault address 0x000b288b".  I was having the same problem with the previous version of Flash Player as well, so updating did not solve it.  In the past we've had problems with Flash Player updates and this particular website, and were able to solve it by changing the permissions of a few registry keys to allow "everyone" Read permissions for those keys.  This method did not work this time, so I'm hoping someone can tell me how to locate the registry entries related to Flash Player so I can modify the permissions.

  • Crw32.exe has encountered an error.

    Hi,
      We have upgraded cr 8 to cr11. The Sybase version we have is 15.0.2.
    With cr8 we were able to connect to Sybase successfully nad desing the report and preview it.
    But with cr11, when we try to preview the report, we get an error "crw32.exe has encountered an error and cr crashes.
    Please experts provide your suggestions.
    Regards,
    Sandhiya

    Hi Poonam,
    As you requested,
    Hi Sandhiya
    As per the issue description, you are unable to connect to Sybase 15.0 with Crystal Reports XI.
    Please let us know the following details:
    1) Exact version of Crystal Reports Designer. (To get this information, open Crystal Reports. Go to Help > About Crystal Reports).
    11.0.0.1282
    2) Are you able to create report using the Xtreme Sample database?
    we have no issues with SQL SERVER
    3) What is the version of the Sybase driver?
    ASE 15.00.00.200
    4) If you have Sybase 12.5 driver, create a DSN and use it with CR XI.
    5) Which connectivity type (ODBC, OLEDB or Native) are you using to connect to Crystal Reports?
    I tried to connect using ODBC and OLEDB
    6) If you are using ODBC connection, what happens if you change the connectivity type to ODBC or Native?
    7) Have you manually uninstall CR 8 before installing CR 11?
    Yes.
    8) To manually uninstall the product, follow the steps from the SAP Note # 1214506.
    Hope this helps.
    Thanks!

  • App exe crashing at startup. Faulting module path c:\windows\syswow64\kernalbase.dll

    EFC.exe
    1.0.0.0
    5112551d
    KERNELBASE.dll
    6.1.7601.1756
    4e2211319
    e043434f4d
    000033b9bc
    ca0
    01cf1842e22633839b
    E:\EFC.exe
    C:\Windows\syswow64\KERNELBASE.dll
    360e333ec-8508-131e3-87391-00505633914193
    Faulting application name: EFC.exe, version: 1.0.0.0, time stamp: 0x511233551d
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17651, time stamp: 0x4e21133319
    Exception code: 0xe043444f4d
    Fault offset: 0x04000b9bc
    Faulting process id: 0xca0
    Faulting application start time: 0x01cf1842e22644839b
    Faulting application path: E:\EFC.exe
    Faulting module path: C:\Windows\syswow64\KERNELBASE.dll
    Report Id: 360e33ec-8508-11e3-8791-00505694414193

    Hi,
    From your message, I think faulting application name is EFC.exe.
    The forum supports .Net Framework setup. If it is related to the forum, please give me more information.
    If not, I will move the thread to the off-topic forum.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • "iTunes needs to close" error

    I had to get a new hard drive for my Inspiron 6000/XP Media Edition and after setting it up I have downloaded iTunes 7.6 and keep getting the "iTunes has encountered a problem and needs to close" error. I have downloaded, removed and re-downloaded it a half dozen times and even tried the 7.5 version with the same results.
    Anybody out there got any ideas? b noir? Canst thou help me? Thanks!

    Welcome to Apple Discussion!
    See if any of these help...
    Troubleshooting an unexpected quit or restart of Windows, iTunes, or QuickTime
    iTunes won't open or unexpectedly quits
    iTunes 6 for Windows unexpectedly quits when opened
    Also, make sure that iTunes is up to date...
    Download iTunes
    btabz

  • Adobe Premiere CS6 APPCRASH Fault Module Name:dvamarshal.dll

    Hi, I have successfully downloaded and used a few CS6 programs in my new Creative Cloud membership, i.e. Photoshop, Flash, Bridge.
    However, I've downloaded and installed and updated, twice, Adobe Premiere CS6. I did uninstall it in between installs.
    The program won't open. The error message I keep getting is:
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    ADOBE PREMIERE PRO.EXE
      Application Version:    6.0.3.0
      Application Timestamp:    505748bf
      Fault Module Name:    dvamarshal.dll
      Fault Module Version:    6.0.3.1
      Fault Module Timestamp:    505737ee
      Exception Code:    c0000005
      Exception Offset:    0000000000030ff1
      OS Version:    6.1.7601.2.1.0.768.3
      Locale ID:    1033
      Additional Information 1:    bc8d
      Additional Information 2:    bc8dea4e9dd9b75bfdb3ece306df51b9
      Additional Information 3:    a1f5
      Additional Information 4:    a1f5d345bd6ec37be171cb28c9fbe7f4
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    My computer is an HP Envy 15 Notebook PC running Windows 7 Home Premium.
    Processor: Intel Core i7-3610QM 2.30GHz
    8GB RAM
    64 bit OS
    Any suggestions on how to correct this? I don't want to go to a full computer reformat if there is a simpler solution since I just did one recently. Is there anything I can update or download as a patch, perhaps to fix this?
    Thanks for any advice! I appreciate your time and looking into this.

    11. Jeff Bellune, 
      Mar 22, 2013 5:34 AM    in reply to debaniehael 
    Report
    See if the solution here helps:
    Adobe Community: PPro CS6 Hanging on Startup - Crashes or stops working.
    Hi Jeff,
    I actually did this yesterday, since I came across the same post. It didn't help. But thanks for suggesting it.
    I've taken Premiere Pro CS6 off my computer and will try to reload it today. I am also having issues with the computer itself. If I go away from it and come back in say 10 minutes, everything is frozen. I need to contact HP about this and who knows, maybe Premiere will actually open if I get this other freezing problem taken care of.
    I read to fix the HP freeze problem, to shut off the CoolSense feature, and I did, but it's still locking up. I have turned off any sleep, hibernate or other feature like that so it shouldn't be going into any kind of power saver mode. I adjusted my power settings.
    I'm still under warranty, so will contact HP. Then I'll get back on the Premiere issue. When it rains it pours, eh? :>)

  • Photoshop Elements has stopped working, Faulting module name: ntdll.dll

    I use windows 7, pse 9, I went to the application and log and this is the error message I get:
    Faulting application name: PhotoshopElementsEditor.exe, version: 9.0.0.0, time stamp: 0x4ca3884b
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b60
    Exception code: 0xc0000005
    Fault offset: 0x0001f8c4
    Faulting process id: 0xca8
    Faulting application start time: 0x01cd513a0df54fd0
    Faulting application path: C:\Program Files\Adobe\Photoshop Elements 9\PhotoshopElementsEditor.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 7fee6f40-bd2d-11e1-9d1b-e0cb4eddc8b4
    The organizer works fine but editor has never worked for me and I just installed it a few days ago
    Message title was edited by: Brett N

    Thanks for the log info. We've seen instances of that "ntdll.dll" as the faulting module before, see if this Adobe document helps, even though it's for Acrobat:
    http://helpx.adobe.com/acrobat/kb/acrobat-8-crashes-error-cites.html
    Ken

Maybe you are looking for