Error message I need a handle on.

Does anyone know what this message really means?
ZenRC32.exe - Entry Point Not Found
"The procedure entry point FT_Exit4 could not be located in the dymanic link
library KERNEL32.dll."
I get it on a Windows XP Pro w/SP2 computer that was updated from Windows XP
Home Edition w/SP2. The server is Netware 5.1 and it is ZFD 3.2, SP unknown.
Any help is appreciated.
Delon Weuve

Delon,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
- Check all of the other support tools and options available at
http://support.novell.com.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://support.novell.com/forums)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://support.novell.com/forums/faq_general.html
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9alredy

    Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9 is alredy installed on computer. Is this a 64 bit ossue although I am sure I did not have this problem prior to a replacement hard drive being installed.

    What is your operating system, browser?
    What is the exact message you are getting?

  • Since firefox upgraded to the latest version I have not been able to use it without it crashing and repeatedly giving me this error message"Exc in ev handl: TypeError: this.annotatePage is not a function' " What can I do about this?

    The box that the above message is contained in has heading [JavaScript Application] I am at my wit's end with this. Firefox won't even open now and I am also getting this error message "Exc in ev handl: Error: Bad NPObject as private data!" Also in a box with [JavaScript Application] as a heading.

    It appears McAfee Site Advisor is conflicting with several other Firefox Add-ons, causing this error message. McAfee Site Advisor has been causing problems in Firefox for some time. You can disable McAfee Site Advisor and test. Disabling Site Advisor should not affect the functioning of McAfee; you should still be protected. <u>See the information below about a built-in function in Firefox that is similar to the function of Site Advisor.</u>
    *https://community.mcafee.com/message/203211
    *https://support.mozilla.com/en-US/questions/858623
    *http://forums.informaction.com/viewtopic.php?f=7&t=7023
    Also see: https://addons.mozilla.org/en-US/firefox/blocked/i25
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Firefox has a built-in component to help keep you from entering '''''known''''' malware and phishing sites
    *'''''Safe Browsing''''': http://www.mozilla.com/en-US/firefox/phishing-protection/
    *'''''Sample''''' warning screens:
    **http://www.mozilla.com/firefox/its-a-trap.html
    **http://www.mozilla.com/firefox/its-an-attack.html

  • No longer able to add bookmarks on Yahoo Toolbar, Error message: "Exc in ev handl: TypeError: this.oRoot.enable is not a function" started when I updated to Firefox 6.0

    Since updating to Firefox 6.0 I am no longer able to add bookmarks on Yahoo Toolbarl. I receive the following Java Error message: "Exc in ev handl: TypeError: this.oRoot.enable is not a function." When I hit the OK button in the error message it opens up "Add a Bookmark" and when I attempt to add the bookmark there I get this error message: "A problem occured while trying to save the bookmark. Please try again later."
    Is this a comparability issue that you are not aware of? Below are the versions of Firefox and Yahoo Toolbar that I currently have installed:
    Firefox: 6.0.02
    Yahoo Toolbar: 2.4.0.20110815110908
    Windows XP, Service Pack 3
    I am having this issue on my laptop and desktop. Since I use both computers the Yahoo toolbar has been great for having my bookmarks available on both computers at the same time but no I don't have that feature. I'm told that Google's toolbar also doesn't work either.
    Do you guys do any testing or Quality Assurance testing before releasing these versions?

    Add-ons are the responsibility of their authors. McAfee does not even put their extension on http://addons.mozilla.org you had to install it from their site.
    Disable "McAfee Site Advisor" extension which was just updated to 3.4.0, which probably took it out of the addons block list.
    * "Ctrl+Shift+A" > find McAfee Site Advisor and use "Disable", and then restart Firefox.
    * Do a Google Search no problem
    * It seems that if you re-enable Site Advisor again, and restart Firefox you are okay. At least you know where to look if you get the error again or Google searches slow down.

  • When connect ipod nano 6th gen i get error message "you need to format the disk in drive G: before you can use it Do you want to format it?"

    when connect ipod nano 6th gen i get error message "you need to format the disk in drive G: before you can use it Do you want to format it?" Any suggestions please

    Hi Michael
    These are the answers
     to your questions
    What is the OS version, Windows Server 2008?   
    Microsoft Windows [Version 6.0.6001]  
    SP1
     On which disk you choose to install it, the C: drive? 
    I have Raid 5
    What
    is the output of the Checkdsk?   It find Nothing
    Could
    you please upload us a screen shot?  I have no 
    Screen shot
    Is
    the C: drive is a external drive?  NO
    Besides,
    have you manually assigned the drive letter? 
    NO
    Thanks

  • Hello I Download Adobe Photoshop CC 2014 Last Night i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message I Need Help Can You Resolve This Problem i Tried Creative Cloud Sign Out Nd Sign iN But iT DidnT ReSolve My

    Hello I Download Adobe Photoshop CC 2014 Last Night
     i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message
    I Need Help Can You Resolve This Problem

    Lotfi are you receiving any error messages during the installation?  I would recommend reviewing your installation logs for errors.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log files.  You are welcome to post any specific errors you discover to this discussion.

  • Error messages help need asap!!!!

    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly ended

    Hi,
    Welcome to the forum!
    Don't say things like "urgent" or "asap" (as in your title, "error messages help need asap!!!!"). It's rude.
    971848 wrote:
    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly endedIt looks like you're missing a semicolon at the end of line 13; that's why the statement beginning at line 8 can't be understood.
    Also, you store a number in my_val, but never use that number, and you have a variable called tasktotal that's never defined. Should my_val and tasktotal be the same variable?
    Perhaps this is what you want:
    CREATE OR REPLACE FUNCTION
           no_of_task_types (x NUMBER)
    RETURN NUMBER IS
        tasktotal   NUMBER;
    BEGIN
        SELECT  COUNT(distinct t.task_type_no)
        INTO    tasktotal
        FROM    employee e, assignment a, task t
        WHERE   e.employee_id = x
        AND     e.employee_no = a.employee_no
        AND     t.task_id        = a.task_id;          -- ; at end is important
        RETURN tasktotal;
    END;
    /This question doesn't have anything to do with SQL*Plus, so maybe the SQL*Plus forum isn't the best place for it. This is strictly a PL/SQL problem; in the future, post questions like this in the PL/SQL. The FAQ page for that forum, {message:id=9360002} , can really help you.

  • Successfully downloaded and installed Adobe Reader on my PC ... ( Windows 7 home premium (64 bit) OS).  Cannot print adobe documents... Error message indicates need to install plug-in for adobe reader for windows 7 home premium (64 bit) OS               

    Cannot print adobe documents ... Error message indicates a need to install plug-in for adobe reader.
    Please advise how/where to locate the required adobe reader plug-in...
    Thank you,
    Joe Curcio

    What is the full and exact message you are getting?
    If the PDF contains Rich Media, the Flash Player plugin may be required: http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player.exe

  • I Beta tested 4.0 RC1 and now can not upgrade to 4.0. Error message is need to reboot to complete prior instalation. Have removed all previous versions of Firefox, rebooted and still same error message.

    I Beta tested up to and including 4.0 RC1 without major problems. However I can not now upgrade to 4.0. Same error message time and again, "need to reboot to complete prior upgrade instalation". I rebooted several times, then tried first removing all previous versions of Firefox using both MS Add/Remove and then iolo System Mechanic, then again downloading 4.0. Even after rebooting same error message. I can not therefore install/use Firefox.

    Do a clean (re-)install:
    * Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 4.0: http://www.mozilla.com/firefox/all.html
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data if you uninstall the current version.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere (not in the Firefox program folder) and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • Problems with iPhone 3G Activation , Error Message (-50), Need HELP!!!!!!!!

    Hi,
    I bought the iphone 3G yesterday through Virgin Mobile. I was told to activate my iphone I need to sync it with iTunes.
    I plugged in my iPhone and it try to sync for a while then an error message pops up. (*We could not complete your iTunes Store request. An unknown error occured. (-50).There was an error in iTumes store. Please try again later*.)
    I've tried several things, reinstalling iTunes, change the options in my internet browser (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5), turn off my anti-virus software. But the problem still occur.
    I can access iTunes store and my playlists etc, but when I click on Sign-in and then click on create new account the same error message pops up again.
    I've tried to run diagnostics on iTumes. It says that secure link to iTunes store failed. I've passed all connectivity and sync test. Below is the details,
    Microsoft Windows XP Home Edition Service Pack 3 (Build 2600)
    LENOVO 0658A22
    iTunes 8.0.2.20
    QuickTime 7.5.5
    FairPlay 1.1.11
    CD Driver 2.0.7.5
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 2.1.2.7
    Bonjour 1.0.6.2 (118.5)
    iTunes Serial Number D763986FFBC26648
    Current user is an administrator.
    The current local date and time is 2009-01-16 00:15:20.
    iTunes is not running in safe mode.
    Video Display Information
    Mobile Intel(R) 945GM Express Chipset Family
    Mobile Intel(R) 945GM Express Chipset Family
    ** External Plug-ins Information **
    No external plug-ins installed.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {CF15D5A8-9110-4EEF-9AFC-3CC17DD113AE}
    Description: Intel(R) PRO/Wireless 3945ABG Network Connection - Packet Scheduler Miniport
    IP Address: 192.168.1.4
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Fri Jan 16 00:09:58 2009
    Lease Expires: Fri Jan 16 01:09:58 2009
    DNS Servers: 192.168.1.1
    192.168.1.1
    Adapter Name: {F7421B4F-64B7-47A9-BFDD-A004DE5F7FCB}
    Description: Broadcom NetXtreme Gigabit Ethernet - Packet Scheduler Miniport
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 255.255.255.255
    Lease Obtained: Fri Nov 07 17:38:56 2008
    Lease Expires: Tue Jan 19 13:14:07 2038
    DNS Servers:
    Active Connection: LAN 連線
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Disabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was unsuccessful.
    An unknown error occurred (-50).
    Secure connection attempt to iPhone activation server unsuccessful.
    An unknown error occurred (-50).
    Last successful store access was 2009-01-16 00:10:18.
    ** iPod/iPhone Connectivity Tests **
    iPodService 8.0.2.20 is currently running.
    iTunesHelper 8.0.2.20 is currently running.
    Apple Mobile Device service 2.12.33.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8. Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9. Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA. Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB. Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC. Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    Connected Device Information:
    iPhone, running firmware version 2.2
    Serial Number: 878514GXY7K
    ** iPhone/iPod Touch Sync Tests **
    Sync tests completed successfully.
    Anyone have an idea of what's happening please let me know. I really want to start using my iphone.
    Thanks heaps
    Bec

    No need to SHOUT. The cable is the one used to connect your iPhone to your PC. Suggest getting another one.
    The problem may be that you're using USB to connect to the internet. It's too slow and will cause problems when you have other high speed USB connections. Use an Ethernet connection to your modem/router. For additional troubleshooting, see these Apple support articles:
    http://support.apple.com/kb/TS1495
    http://www.apple.com/support/iphone/troubleshooting/
    Message was edited by: modular747

  • Error message I need while creating PO

    Dear Experts.
    I need to set error message when we try to convert deleted purchase requisation into Purcahse order.
    Pls can any one help how to set.
    Thanks in advance,
    With Rgds,
    Vinod

    Try setting the message 06  050  Purchase requisition & item & already deleted to an "E" in the purchasing system messages in the SPRO path Materials Management -> Purchasing -> Environment Data -> Define Attributes of System Messages and then choose System messages.
    Hope this helps.

  • Error message - "You need to restart your computer". With Kernel Panic Logs. Please help identify the problem.

    Hi, just now my computer just popped out an error message saying that "You need to restart your computer". I was able to power the iMac back (and i'm typing from my iMac). I did some research about it and it has something to do with the kernel panic..either hardware or software. Since i was able to power back my iMac, i supposed it was software-related problem? Here's the log from /Library/Logs/DiagnosticReports/
    I'm sorry it was quite long and i have no idea how to attach the text file which i have saved. What could be the problem here? And any suggestions to avoid this from happening again? My heart skipped a beat just now.. Hopefully it was no something serious such as hardware problems..
    thank you!
    [quote]
    Mon Jan  7 04:41:39 2013
    panic(cpu 1 caller 0xffffff8000545709): "complete() while dma active"@/SourceCache/xnu/xnu-1504.15.3/iokit/Kernel/IOMemoryDescriptor.cpp:2273
    Backtrace (CPU 1), Frame : Return Address
    0xffffff8060213ba0 : 0xffffff8000204d15
    0xffffff8060213ca0 : 0xffffff8000545709
    0xffffff8060213ce0 : 0xffffff7f80e90e34
    0xffffff8060213d30 : 0xffffff7f80e8aac2
    0xffffff8060213d80 : 0xffffff7f813c6b84
    0xffffff8060213df0 : 0xffffff7f80d740ff
    0xffffff8060213e20 : 0xffffff7f80d7ec07
    0xffffff8060213e50 : 0xffffff7f80d7ed70
    0xffffff8060213ea0 : 0xffffff7f80d7fb39
    0xffffff8060213ef0 : 0xffffff7f80d7c076
    0xffffff8060213f10 : 0xffffff800053b31f
    0xffffff8060213f60 : 0xffffff800053afc5
    0xffffff8060213fa0 : 0xffffff80002c8527
          Kernel Extensions in backtrace (with dependencies):
             com.apple.iokit.IOAHCIBlockStorage(1.6.6)@0xffffff7f813c4000->0xffffff7f813d8ff f
                dependency: com.apple.iokit.IOAHCIFamily(2.0.7)@0xffffff7f80d72000
                dependency: com.apple.iokit.IOStorageFamily(1.6.3)@0xffffff7f80e83000
             com.apple.driver.AppleAHCIPort(2.2.0)@0xffffff7f80d79000->0xffffff7f80d90fff
                dependency: com.apple.iokit.IOAHCIFamily(2.0.7)@0xffffff7f80d72000
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)@0xffffff7f80826000
             com.apple.iokit.IOAHCIFamily(2.0.7)@0xffffff7f80d72000->0xffffff7f80d78fff
             com.apple.iokit.IOStorageFamily(1.6.3)@0xffffff7f80e83000->0xffffff7f80e9cfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; root:xnu-1504.15.3~1/RELEASE_X86_64
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 16972898800986
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI          4.2.5 (addr 0xffffff7f81330000, size 0x65536) - last unloaded 96015086516
    loaded kexts:
    com.google.filesystems.fusefs          2.1.9 - last loaded 8029647925508
    com.bresink.driver.BRESINKx86Monitoring          9.0
    com.avatron.AVExFramebuffer          1.6.1
    com.Cycling74.driver.Soundflower          1.5.2
    com.logmein.driver.LogMeInSoundDriver          1.0.0
    com.avatron.AVExVideo          1.6.1
    com.squirrels.airparrot.framebuffer          3
    com.squirrels.driver.AirParrotSpeakers          1.7
    com.rim.driver.BlackBerryUSBDriverInt          0.0.74
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AGPM          100.12.31
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleHDA          2.0.8f3
    com.apple.driver.AppleMikeyDriver          2.0.8f3
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AudioAUUC          1.57
    com.apple.kext.ATIFramebuffer          6.4.2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPort.Atheros9388          426.35.3
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.48
    com.apple.ATIRadeonX3000          6.4.2
    com.apple.kext.AppleSMCLMU          1.5.2d10
    com.apple.driver.AppleIntelHDGraphics          6.4.2
    com.apple.driver.AppleIntelSNBGraphicsFB          6.4.2
    com.apple.iokit.SCSITaskUserClient          2.6.9
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.AppleUSBCardReader          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.6
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleFWOHCI          4.7.7
    com.apple.iokit.AppleBCM5701Ethernet          3.0.8b2
    com.apple.driver.AppleUSBHub          4.2.5
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleUSBEHCI          4.2.6
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleBluetoothHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.DspFuncLib          2.0.8f3
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOFireWireIP          2.0.4
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAController          2.0.8f3
    com.apple.iokit.IOHDAFamily          2.0.8f3
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.17
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.17
    com.apple.driver.AppleBacklightExpert          1.0.2
    com.apple.driver.AppleThunderboltEDMSink          1.1.3
    com.apple.driver.AppleThunderboltEDMSource          1.1.3
    com.apple.kext.ATI6000Controller          6.4.2
    com.apple.kext.ATISupport          6.4.2
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.AppleThunderboltDPOutAdapter          1.5.9
    com.apple.driver.AppleThunderboltDPInAdapter          1.5.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.5.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.9
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.iokit.IOUSBHIDDriver          4.2.5
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.driver.AppleUSBMergeNub          4.2.5
    com.apple.driver.XsanFilter          402.1
    com.apple.driver.AppleThunderboltNHI          1.3.2
    com.apple.iokit.IOThunderboltFamily          1.7.4
    com.apple.iokit.IOFireWireFamily          4.2.7
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.9
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.9
    com.apple.iokit.IOUSBFamily          4.2.6
    com.apple.driver.DiskImages          289.1
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.8
    com.apple.iokit.IOACPIFamily          1.3.0
    [/quote]

    Suggest you uninstall SoundFlower, LogMeIn and AirParrot and see if that changes anything.
    Allan

  • ITunes error message saying needs Quicktime 7.5.5 or later.

    I have installed the latest ITunes but it comes up with error message saying it needs Quicktime 7.5.5 or later.  I have got Quicktime 7.5 installed but when I try to go to Apple website to upgrade it just says it is built into OS X and therefore I cant see anything to allow me to upgrade.  So stuck!  Any suggestions?

    Let's try installing a QuickTime 7.7 for Leopard using a .dmg installer downloaded from the Apple website:
    http://support.apple.com/kb/DL761

  • Plug in error message - I need help

    I'm not the most proficient with computers and new to ibook. I often get the following error message and can't get the content I'm after:
    This page "blah, blah blah" has content of an unspecified MIME type. Because you don’t have a plug-in installed for this MIME type, this content can’t be displayed.
    This is probably elementary. Could you provide me with what I need to do to get the content I'm after?
    Thanks,

    Update or install your Quicktime player or its plugins. http://www.apple.com/quicktime/download/mac.html

  • Error message, "Movie needs Quicktime, which is not supported by this version of iTunes

    Since itunes 12 has been downloaded, I can't play any movies or trailers due to an error message or "the movie requires Quicktime which is not supported by this version of iTunes. I have Quicktime, but it still can not play both downloaded content and movies I want to preview. Can you help?

    iTunes for Mac: Older media files may require iTunes to reopen in 32-bit mode - Apple Support

Maybe you are looking for