OraOps10.dll error

Have 2 Database servers at work.
Server 1: Oracle 10g R2 on Win 2003. Used for development
Server 2: Oracle 9i (9.2) on Win 2003. Used by Customers
Our software is a web based program
Problem is when I create a test site on 'Server 2' I get the following error:
Unable to load DLL 'OraOps10.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
I have made a copy of the OraOps10.dll from 'Server 1' and pasted it into the ~Oracle\ora92\BIN directory on 'Server 2', but am still getting the error.
Any help/thoughts would be appreciated.
Thanks in advance
Toby

Does the dll exist on that box? Oracle.DataAccess.Client requires oraops and a client install to work, you cant just use the dll alone.
Hope it helps,
Greg

Similar Messages

  • Instalation and Error Message: "Unable to load DLL(OraOps10.dll)"

    Hi, I'm not sure if my question is for this forum, but maybe :)
    I create very simple application in VS.NET using ODP.NET (see attachment) which just try to connect to oracle database. But when I install this project on different computer without Visual Studio (but Redistribute Package .NET Framework 1.1 is installed!!!) and with database Oracle 8.1.7 an error message occurred:
    "Unable to load DLL(OraOps10.dll)"
    How can I create some Install project in VS using ODP.NET that can run on other PC ???
    How can I solve this problem with loading DLL???
    Thanx, Tomas

    Tomas,
    You will need the Oracle Data Provider for .NET to be installed on the new machine.
    Thanks,
    Christian

  • Oracle8i : error OraOps10.dll

    my application is developped with vb.Net 2003 (version 7.1.3088) and Oracle8i. I must use Oracle8i.
    During the developpement, I have installed Oracle10 client on developpement station.
    When I load my application, I have this error : Impossible to load OraOps10.dll.
    Can you help me?

    hi
    a)check if OraOps10.dll exists in your oracle client BIN directory directory
    b)check if path to your oracle client BIN directory is mentioned in OS "PATH" variable (for example C:\oracle\product\10.2.0\db_1\BIN\ )
    Best Regards,
    Michael Milonov

  • Unable to load DLL "OraOps10.dll"

    I am running into peculiar issue. I am developing a windows based application which connects to Oracle database.
    For initial testings, I have created installer and tested on different machines that I have. Each machine has Oracle Client installed and I did not see any problem in running application.
    But when I share this installer with customer, he is getting error "Unable to load DLL OraOps10.dll". When asked he mentioned and has shown the Oracle Client installed on his machine and he is able to run other C# applications which connects to Oracle databases.
    I do not understand why my application only getting above error. I even tried suggestions shared at One way to fix the "Unable to load DLL (OraOps.dll)" error but still no luck.
    I even tried copying executables & DLLs manually on customer's machine. But still facing same issue.
    So please help me on what else i can do.
    Thanks & Best Regards
    Sudhakar Chavali
    P.S:
    I am using Windows XP operating system and customer is also using same operating system. Both machines are of type 32 bit OS only.
    This is the location where customer's oracle client installed: C:\oracle\product\10.2.0\client_1\bin and same is the version in my case too.
    We both are using Oracle 10g and .Net framework installed is 4.0

    The only thing that comes to mind is a .net version problem. Are you both using Oracle client 10g as well? Do you have an 11g client on your development machine?
    There was no .net 4 assemblies in the 10g client, they didn't add that until 11. It's possible that something in his configuration isn't letting a .net 4 application load a .net 2 assembly.
    If that's the case, then giving the client an Oracle 11g client will fix the problem.

  • Unable to load DLL 'OraOps10.dll with a twist

    Hi,
    So, I have been struggling with an issue for the last couple of weeks that is sending my mad. I receive the following error when attempting to make a connection to a database with my web app:
    Error message:
    "Unable to load DLL 'OraOps10.dll': The specified module could not be found. (Exception from HRESULT: (0x8007007E)"
    I am using
    Windows 2008 32bit
    Oracle Client 11g
    .net v2
    IIS7
    My apps called CMA, slimier to a more well known app NCSuite
    My connection to the database seems to working doing a simple test with a .udl file.
    I have attempted the following:
    Full re-installing the Oracle drivers following online instruction to clear reg and assembly, several times
    Setting permissions on the folder to beyond what they should be
    Setting permissions on any folder that refers to oracle
    Tried installing ODP.NET just on the off chance it might help
    Had a good mess to see if it was something to do with the 64bit issue, but obviously not as Im 32bit
    Unfortunately earlier version of the Oracle client are not compatible
    One thing that confuses me is why my app would refer to OraOps10.dll rather than the OraOps11w.dll thats being used. Only Oracle 11g has ever been installed on this machine as its a fresh build. The application itself does not directly refer to the OraOps10.dll.
    Any thoughts?
    Regards

    Hi,
    I'm a bit confused by your statement "+Tried installing ODP.NET just on the off chance it might help+". You can only get that error if you're using ODP.NET in the first place. A UDL file would test an oledb connection, so it's good just to make sure the client libraries are there and tnsnames configured correctly, but otherwise a bit irrelevant to this error.
    Anyway, that error occurs when ODP either cant find it's dependencies.. either the right OraOps or client dlls, or finds them but finds the wrong ones. OraOps11 (without the 'w') gets loaded when your application loads the 1.x ODP.NET provider. The provider for .net 2.x and higher loads oraops11w.dll.
    The usual cause of this error is from apps including Oracle.DataAccess.dll in the app bin directory, rather than letting it get picked up from the GAC.
    I'd start by
    1) searching your machine for all Oracle.DataAccess.dll, and rename any outside the Oracle home and/or GAC.
    2) if that doesnt do it, use a tool like Process Explorer (http://sysinternals.com) to find out where Oracle.DataAccess.dll is being loaded from, and what version. You need to have a matching OraOps that is the same version as Oracle.DataAccess.dll they actually need to be a matched pair (check the date of the dlls), but its the mismatched version that causes the error.
    3) if neither of the above help, use Process Monitor to watch the dll's loaded 'live' to see if there is some sort of permissions issue, but the well known permissions issue that you've probably found information about was specific to 9.2 and 10.2 client, and is not an issue with 11g. That is to say, the OUI sets permissions properly in 11g, but it's still possible an IIS admin may have cranked permissions down too tight.
    Additionally,
    1) What version of ODP was your app compiled with?
    2) What version of .NET framework?
    3) What version of 11g client do you have installed, and what did you install it from? ie, 11107.0 full client? or 11107.20 odac bundle?
    4) The ODP forum is located here: ODP.NET
    Hope it helps,
    Greg

  • System.DllNotFoundException: Unable to load DLL 'OraOps10.dll'

    Hello,
    I'm developing a piece of software for a small business that connects to an Oracle 10g express database I set up. The software is written in c# with VS2008, and has ODP.NET installed. On the computer I'm developing with, the software works perfectly. Unfortunately, when I try to use it on a different computer I get the error message "System.DllNotFoundException: Unable to load DLL 'OraOps10.dll'".
    I have already created a redistributable for all the .NET components I need, including Oracle.DataAccess.dll
    I think this problem would be solved by installing VS2008 and ODP.NET on every computer needing it, but that's unrealistic. Is there another way to get this program to work?

    Hi,
    At a minimum, you need to install the Oracle core client and ODP provider on the target deployment machine. ORAOPS10.dll is a the unmanaged layer for our provider and gets installed when you install the driver from our installation bundles. That DLL is a dependency of the .NET 1.x assembly and should get installed when you install the ODP component.
    I am assuming you are using an older 10.2.0.10 version. In later versions we provide an IC bundle that includes an xcopy redistributable that makes it alot easier to wrap up with your custom install scripts, with earlier versions that reply on a full client you need to use the OUI and install the client and ODP on the target machines where the app will be deployed.
    HTH
    Jenny B.

  • How 2 find ORAOPS10.dll in a 64 bit version

    We have a .net application developed on 32 bit using odp.net to communicated with our database. When we deploy the application on a 64 bit server with a Oracle 10 Client Installed we get an: unable to load dll 'oraops10.dll'.
    We tried copying the file from the development environment. We then get another error that the files is a wrong version. This is probably because its 32 bit.
    How (where) can we get a 64 bit version of Oraops10.dll
    Can anybody plz. help, we need this fast ???

    Hi,
    The below link may help you to get reports in a business area.
    http://www.testskillshome.com/?cat=23
    Thanks,
    gran
    Edited by: user5411938 on Jan 11, 2011 10:33 AM

  • OraOps10.dll and Windows2003 Server

    Hi all,
    i've following problem:
    when starting my c# wep project on my windows 2003 server (oracle 10 client already installed, iis 6.0 installed) i get the following error :
    System.Web.HttpUnhandledException: Exception of type System.Web.HttpUnhandledException was thrown. ---> System.DllNotFoundException: Unable to load DLL (OraOps10.dll).
    i tried to reset permission on my oracle home folder - no success
    i copied the dll into the bin folder of the web project - no success
    (restarting server is not possible, because of other applications)
    On my windows xp client (vs.net 2003 installed, framework 1.1 and 2.0, odp.net 10 installed and oracle client 9.2 installed) the web project works fine - w/o any problems - why not on the server, the one thing that is different between server and client is the installed vs.net 2003 on my client, but why to install vs.net on the server - this makes no sense in my opinion!
    Anybody a solution??
    mfg
    joe

    You may need to arrange some downtime :( I think you need to reboot after installing the oracle software. While the added path is in effect for some purposes, anything running as a service won't see the environment change until after a reboot. You might try starting and stopping everything and see if that does the trick.

  • Guide to overcome hal.dll error - disk error & other errors.

    Okay to start off with - guide for installing bootcamp.
    DISCLAIMER:
    I take no responsibility at all - whatsoever for any damage the following steps cause to anything. If you follow this guide and then are annoyed at me in any way - don't be - you followed these steps knowing they could be dangerous to your hard drive / computer / sanity / etc. That said - good luck & these steps should work for everyone.
    requirements: XP SP2 CD & a copy of parallels would be useful. Also a non-apple usb keyboard for step 1 if the apple one doesn't work during xp bootup.
    1. First try the usual bootcamp assistant method. Insert the xp disk, in the setup make sure you format the drive to NTFS (not quick). If you don't get this option - skip to step 3.
    2. Reboot and hopefully everything will go without a hitch. If it doesn't and you get a hal.dll error or any other kind of error go on to the next step.
    3. Boot up mac os x. Install parallels desktop.
    4. Insert your windows xp sp2 cd.
    5. Create a new virtual machine using a virtual hard drive saved in your documents folder somewhere.
    6. Configure it so that the bootcamp drive is added as an extra secondary drive in the virtual machine. (Little plus button down at the bottom).
    7. Install XP onto the virtual machine - don't activate or anything, just get to the desktop stage as fast as possible.
    8. Parallels will have already asked for your password to dismount the boot camp drive.
    9. Double click my computer in the virtual machine, then hold down ctrl+shift and click on the BOOTCAMP partition in the my computer window.
    10. Click format.
    11. Select NTFS as file format, check enable compression - do not check quick format.
    12. Wait till its finished and then power down the virtual machine.
    ------- The following steps are taken from http://communities.vmware.com/thread/114529 and were written by MandarMS from the vmware forums. I have edited the guide a little - (you'll see where). Thanks and all credit to MandarMS.----
    13. (James: Close parallels)
    14. Quit all applications in Host Mac OS X
    15. Open Terminal utility from Macintosh HD : Applications : Utilities folder.
    16. Key-in the following command
    $ sudo fdisk /dev/rdisk0
    17. Preferably take the screenshot of the output or Note down the output (for restoring MBR).
    18. Key-in the following command
    $ sudo fdisk -e /dev/rdisk0
    setpid 3
    Choose 07 (as the partition type)
    write
    Y
    Restart your Mac System
    (James: EDIT - BELOW IS AN EXAMPLE OF THE OUTPUT OF THE PROGRAM IF YOU ARE UNSURE OF WHAT TO TYPE IN WHERE - This confused me at first but really helped in the end - James)
    For more details please check the example shown below:
    $ sudo fdisk -e /dev/rdisk0 (this will help to change the MBR)
    $ fdisk: could not open MBR file /usr/standalone/i386/boot0: No such file or directory
    Enter 'help' for information
    fdisk: 1> setpid 3 (Enter “setpid 3” press enter key)
    Starting Ending
    #: id cyl hd sec - cyl hd sec start - size
    *3: 0B 1023 254 63 - 1023 254 63 1127792680 - 337356448 Win95 FAT32L
    Partition id ('0' to disable) 0 - FF: [C] (? for help) 07 (Enter 07 Partition table)
    fdisk:*1> write (enter “write” press enter key, This will change the MBR)
    Device could not be accessed exclusively.
    A reboot will be needed for changes to take effect. OK? [n] Y (Press Y to modify changes)
    Writing MBR at offset 0.
    $ fdisk: 1> exit (enter “exit”, press enter key)
    19. Restart your Mac System
    ------ Back to me again.
    20. Welcome back - your drives have just been fixed. Reboot again and insert the windows xp sp2 cd. Hold down option at startup and boot from the cd.
    21. Go through the setup again - this time don't do anything to the drives when it asks you to format.
    22. wait...
    23. It'll reboot......
    24. It'll install..... if it doesn't - skip to step 26
    25. Welcome to windows, install your drivers and reboot a couple more times. You're good.
    26. (it didn't work... you got the hal.dll error or something similar) Boot up mac os x again and launch parallels.
    27. Start up the virtual machine - open up BOOTCAMP in my computer.
    28. Click view - folder options
    29. View types > make sure you can see hidden files and folders, view system files and etc.
    30. Right click boot.ini and click properties
    31. Uncheck read-only.
    32. Click okay - open boot.ini in notepad.
    33. If you're on a mac with 2 partitions: 1 mac hd, 1 bootcamp, delete everything in the boot.ini file and copy and paste the following into it:
    \[boot loader]
    timeout=30
    default=multi(0)disk(0)rdisk(0)partition(3)\WINDOWS
    \[operating systems]
    multi(0)disk(0)rdisk(0)partition(3)\WINDOWS="Microsoft Windows XP Professional" /noexecute=optin /fastdetect
    Obviously change the name to suit. Save it and reboot - you should be good to go now.

    Hi. Your bootcamp drive should be drive C. It shouldn't matter what drive letter it is really, you make the virtual machine disk as a virtual disk saved in your documents folder and hook it in to use your physical bootcamp drive.
    Ensure you've typed in the correct command and correct password. Press enter after you type in the password. You won't see it as you type it in, and you may need to wait some time afterwards before you'll see the next prompt. Leave it 2 minutes.
    Sorry I've been abroad.. hope you have it worked out by now anyway mate.

  • System.DllNotFoundException: Unable to load DLL 'OraOps10.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    Hi,
    I have a asp.net web application running on windows server 2008 with oracle server 10g installed.
    now we are planning to run application on another server with same server as database server. but when the deployed on new server the login page comes up and after login System.DllNotFoundException: Unable to load DLL 'OraOps10.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) exception is thrown. any help would highly be appreciated.

    Did you run the ODAC installer, OUI or xcopy, or did you just copy over Oracle.DataAccess.dll to the new machine? If the latter, then you need to run the installer to put in all the necessary Oracle DLLs ODP.NET references.

  • NI 5660 Driver DLL Errors when using Teststand 2010 and LabVIEW Run-Time Engine 2010

    This problem seems similar to the post "Resource not found error in executable on developmen​t machine." but I didn't want to repost under that thread because I only happened upon it by chance and none of my searches brought me there... so I made a more descriptive Subject.
    I am working on a system that uses a PXI Chassis with a NI 5600 Downconverter and a NI 5620 high speed digitizer, among other PXI Cards. 
    I inherited working code written in LabVIEW 2010, running with the LabVIEW Run-Time Engine 2010.  The code was using a custom executive and my task was to rewrite the test using TestStand 2010.  I reused the majority of the old code.  The old code used NI-5660 to control the 5600 and 5620.  When I run my sequence using the LV Development System and TestStand, it runs without any issues.  When I change the adapter over to LabVIEW Run-Time Engine 2010, all of my NI5660 VIs become broken due to DLL issues.  It warns that the nipxi5600u​.dll was not initialized correctly.  Many of the errors are associated with the NI Tuner and NI Scope. After this LabVIEW will crash randomly, and the seqeunce will not work in TestStand even when back with the LV Development Adapter.  The only way to recover after this is to restart the computer - TestStand automatically reverts back to the development system, the VIs are no longer broken and the sequence works again. 
    I have all of my VIs associated with a project. After reading a little bit about DLLs and TestStand, I found all of the DLLs in the dependencies section of my project and added them to my TestStand workspace.  I also used Dependency Walker to track down the problems with the nipxi5600u​.dll, the 2 DLL files that it said were not found already existed in the same folder as the original DLL (C:\Windows\System32).  I have also performed a Mass Compile to make sure everything was running in LV 2010.  If I skip the steps involving the 5660, my entire sequence runs fine. 
    The previous code was running with the LabVIEW Run-Time Engine without any issues.  Is there just a step I am missing?  Has anyone seen anything like this before?  I can send screenshots of errors to provide more detail if necessary. 

    I have tried some more things and still can't get it to work.  I have added the VIs mentioned in the Notes On Creating Modulation Executables KB both to the TestStand workspace and the LabVIEW project holding all of my VIs.  This did not change the results. 
    When I try to run my sequence, The first error I get is shown in Error 1445.bmp.  This happens when I try to use the NI 5660 initialize.vi.  If I click ignore, the next error I see is shown in Error -20551.bmp.  When I try to open the VI to look at it, I get the 2 DLL errors shown in Error loading nipxi5600u.bmp and Error loading nidaq32.bmp.  When I close TestStand, I get the error LabVIEW Fatal Error.bmp. 
    Attachments:
    Error1445.JPG ‏164 KB
    Error -20551.JPG ‏174 KB
    Error loading nipxi5600u.JPG ‏9 KB

  • Hello, I have windows 7, Im getting msvcr80.dll error 7(windows error 126) when I tried to update my itunes. Now it won't open. Does anyone have a remedy? And when I try to uninstall it says that the file cant be found.

    Hello< I have windows 7, I tried to install the new itunes version, last night 1/30/14, Im getting msvcr80.dll error 7 (windows error  126). Does anyone have a remedy for this? When I try to uninstall the ituned program it says it can't be found and to make sure I have permission to uninstall.

    Same problem today. Took five times to reinstall without any error messages. I did the following:
    1) Went to the C:\program files (x86)\iTunes and C:\program files\iTunes folders and moved every file ending in .dll to the desktop (even if two files in same location had the same name, just replaced)
    2) Restarted computer and still got error message
    3) Uninstalled all apple programs possible in the following order......itunes, apples software update, apple mobile device support, bonjour, and apple application support.....all performed using the microsoft control panel
    4) put all the .dll files on the desktop in the trash and emptied (this is a step apple support did not recomment in their posted solutions but for a final try I wanted to delete everything apple).
    5) Restarted computer.
    6) Re-installed itunes from apple website
    No error messages during re-install and was able to open shortcut in one try.

  • Server 2008 R2 Terminal Server c0000005 and c0000006 errors with KERNELBASE.dll error in RDP sessions.

    We installed a new Server 2008 R2 server this spring. It is configured as a Terminal Server with 16 Wyse t10 thin clients connecting with RDP. We are a small resort so we run Springer Miller Host and SpaSoft. Ever since moving from PCs to the thin clients
    and TS we have been seeing SpaSoft randomly crash with KERNELBASE.dll errors and also a lot of c0000005 and c0000006 errors. Springer Miller support says its a Microsoft Networking issue so no help there. The company we worked with to install this has no clue
    so I hope to reach out to this community to solve this. I can also open support case with Microsoft Support but I am not sure if they will be of any help. Here are some examples of the errors:
    "Event 1000
    Faulting application name: SpaWin.exe, version: 3.4.0.0, time stamp: 0x2a425e19
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.18409, time stamp: 0x53159a86
    Exception code: 0x0eedfade
    Fault offset: 0x0000c42d
    Faulting process id: 0x3718
    Faulting application start time: 0x01cf9ac7922487e9
    Faulting application path: \\spasoft\spaapps\TermServ\SpaWin.exe
    Faulting module path: C:\Windows\syswow64\KERNELBASE.dll
    Report Id: cfdcf9a9-06ba-11e4-a5af-000c298d9aa5"
    Also:
    "Faulting application name: VH.EXE, version: 18.80.430.0, time stamp: 0x3f73b447
    Faulting module name: VFP8R.DLL, version: 8.0.0.3117, time stamp: 0x3f73c232
    Exception code: 0xc0000006
    Fault offset: 0x0001d598
    Faulting process id: 0x2bc8
    Faulting application start time: 0x01cf99297ee1742f
    Faulting application path: J:\HOSTPLUS\fxp32\VH.EXE
    Faulting module path: J:\HOSTPLUS\fxp32\VFP8R.DLL
    Report Id: 5fbc65c4-055c-11e4-a5af-000c298d9aa5"
    And:
    "Faulting application name: SpaWin.exe, version: 3.4.0.0, time stamp: 0x2a425e19
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Fault offset: 0x00000000
    Faulting process id: 0x2aa0
    Faulting application start time: 0x01cf988e6770e619
    Faulting application path: \\spasoft\spaapps\TermServ\SpaWin.exe
    Faulting module path: unknown
    Report Id: 01029179-04b9-11e4-a5af-000c298d9aa5"
    There are no network specific errors in any of the logs. I am thinking that SpaSoft needs to be run as an administrator but I am not sure how to do that in this environment. We have disabled DEP for all but essential Windows processes. All of the firewall
    and AV has been completely disabled, and still getting these errors. Is there a way to run these applications as admin without the user actually being an admin? Should I go ahead and open a Microsoft support case? Thanks

    Hi,
    Thank you for posting in Windows Server Forum.
    Explanation
    The indicated program stopped unexpectedly. The message contains details on which program and module stopped. A matching event with Event ID 1001 might also appear in the event log. This matching event displays information about the specific error that occurred.
    User Action
    If an error report was generated for this error, you might be able to obtain more information about the error by sending the report to Microsoft for analysis.
    Yeah, you can open a support case with Microsoft as they will help and guide you for proper solution. You can go through
    this source article.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • IPod Classic Crashes randomly with ntdll.dll error

    Sometimes when I plug-in my 120GB iPod Classic, iTunes would crash, giving me a ntdll.dll error, and I would need to unplug my iPod classic before it would allow iTunes to start again. Upon disconnect, the iPod will try to restart and then it would unsuccessfully do so, and then it would reboot and tell me to restore via iTunes. After I plug it back in, the iPod would restore fine. It seems that if I don't sync my iPod for a couple of days, the possibility of this error happening is most likely, versus if I plugged it in consistently every day.
    I have had this issue for quite a while here are the steps that I've taken to try to mediate this issue:
    -Switched iPod twice with Apple Store
    -Tried the sync on two different computers with completely different hardware (but windows 7 on both)
    -Made a new iTunes library
    -Search the support forums/google
    -Tried various cables
    Here is the error logs from the most recent crash:
    Faulting application name: iTunes.exe, version: 9.0.3.15, time stamp: 0x4b590a69
    Faulting module name: ntdll.dll, version: 6.1.7600.16385, time stamp: 0x4a5bdadb
    Exception code: 0xc0000005
    Fault offset: 0x00052bf8
    Faulting process id: 0x384
    Faulting application start time: 0x01cad74f5f441de7
    Faulting application path: C:\Program Files\iTunes\iTunes.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: a9fac431-4342-11df-9742-00238bf6c0ab
    Any help would be appreciated!

    OK So I sync'd it this afternoon and in the evening, I plugged it in again, and this time it caused iTunes to crash with this error:
    Faulting application name: iTunes.exe, version: 9.0.2.25, time stamp: 0x4afca401
    Faulting module name: iTunes.dll, version: 9.0.2.25, time stamp: 0x4afca3e5
    Exception code: 0xc0000005
    Fault offset: 0x00abc4c0
    Faulting process id: 0x728
    Faulting application start time: 0x01cad7c0e0284b0c
    Faulting application path: C:\Program Files\iTunes\iTunes.exe
    Faulting module path: C:\Program Files\iTunes\iTunes.dll
    Report Id: b9bf634a-43b4-11df-b2dc-0015f20ac1cf

  • Here are the instructions on how to fix the newest update problem with the .dll error message:, Here are the instructions on how to fix the newest update problem with the .dll error message:

    Go to My Computer, Uninstall Programs, and uninstall in this exact order :
          Itunes
          Apples Software Update
         Apple Mobile Device Support
         Bonjour (my system required a reboot on this one)
         Apple Application Support
    Reboot your computer, go to the official Itunes website (make sure it's the Apple Itunes Website and not some other one!), and reinstall Itunes. 
    I got the same .dll error message after the reinstall, but my Itunes was downloaded successfully and I was able to Sync my phone. : )
    Good luck to you and God Bless! 
    (Sad that we have to come to the Discussion Forum to figure this all out instead of Apple taking care of their business and helping us out, huh?)

    Someone else said they did a system restore to a previous update, and then a java update and that worked for them, saying they were going to stick with the earlier version of itunes until they get the bugs out of the new one.  I t tried restores and that didn't work for me either, but maybe it will work for you.  Good luck and I hope you get it working soon.. 

Maybe you are looking for