Oracle grid and db installer fails upon launch - win7x64

Hi. First let me say this is not my first time installing Oracle. I have installed oracle on Linux (just DB, ASM + DB) and Windows 7 x64 (just DB) successfully in the past. I've been working with Oracle for several years now. I'm a developer, not a DBA.
I'm attempting a new development installation on my home computer, which is running Windows 7 64-bit. I've downloaded the 64 bit media for the database and grid infrastructure.
My machine is a quad core i5 with 8GB ram. The storage is as follows:
1 x 64GB SSD (C: drive with Windows installation, 20GB free)
1 x 3TB spinning (D: drive, all program data, 2.8TB free)
4 x 1TB spinning (unmounted, unformatted, for use with ASM)
I have installed both the 32 bit and 64 bit current JDK.
I am logged in as an Administrator.
I have the oracle installation media in:
D:\Temp\grid
D:\Temp\database
I have the ORACLE_BASE system environment variable set to:
D:\Oracle (this directory exists, and is empty)
Steps to produce problem:
Start > All Programs > Accessories > Terminal (Right click, run as Adminstrator)
Command Prompt input pasted below:
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Windows\system32>D:
D:\>cd \temp\grid
D:\Temp\grid>setup
D:\Temp\grid>
Oracle installer quits immediatly
I am left with an install actions log file in D:\Users\myuser\AppData\Local\Temp\OraInstall<currenttimestamp>\
The log file contains:
Using paramFile: D:\Temp\grid\install\oraparam.ini
Checking monitor: must be configured to display at least 256 colors. Actual 4294967296 Passed
The number of files bootstrapped for the jre is 0.
The number of files bootstrapped for the oui is 0.
There are no errors in the Windows event viewer.
Any steps as to what I can check would be great, I've never seen this behavior before. Thanks.

Wow. I found the solution buried here: Re: Can't run Oracle 11g r2 setup.exe on win2008 r2 sp1 x64
Apparently if the amount of free space is too great (you're kidding me, right Oracle?!) the installer will just die. Sounds like a bug that someone should look into fixing....
So from the post I've mentioned above, I gather that you need less than 2 TB of free space. I navigated to my D drive and did the following:
D:\Temp>fsutil file createnew imhuge.dat 1024000000000
File D:\Temp\imhuge.dat is created
Now, the OUI happily starts.

Similar Messages

  • How should I try out Oracle Grid and Oracle database?

    I want to try out Oracle Grid and Oracle database in a virtualized test environment. I have already downloaded the Oracle VM VirtualBox for Windows platform. The OS for the production environment is RHEL. So, do I just need to download Oracle Linux? How about the VM Manager, VM Server, and Oracle programs?

    You can use the standard distribution media from http://www.oracle.com/technetwork/indexes/downloads/index.html and https://edelivery.oracle.com/linux to install Oracle Linux and Oracle 11g in Virtualbox. Virtualbox can use real disk media as well as .iso disk image files. Oracle Linux 6 is not certified for any Oracle database product yet. Your best option will be to install Oracle Linux 5.7 and then install the Oracle-Validated software package to prepare Oracle Linux for the Oracle database installation.
    Virtualbox and Oracle VM are different products. Oracle VM, including OVM server and manager installs its own operating system and is designed for installations on bare metal machines. Virtualbox is an application that requires a primary host OS, e.g. Windows, MacOSX, Linux, to install one or more virtual machines with Windows or Linux guest systems.

  • Unable to install Adobe Digital Reader 3.0. Keep receiving error message "migration has stopped working" and then installation fails.

    Every time I try to install Adobe Digital Reader 3.0 I get an error message "migration has stopped working" and the installation fails. Is there a solution to this?

    Trying to install. Installation fails and I am unable to open it to migrate
    epub books to transfer to ereader
    In a message dated 8/31/2014 9:50:51 A.M. Eastern Daylight Time, 
    [email protected] writes:
    Unable  to install Adobe Digital Reader 3.0. Keep receiving error message 
    "migration has stopped working" and then installation fails.
    created by kglad (https://forums.adobe.com/people/kglad)  in 
    Downloading, Installing, Setting Up - View the full  discussion
    (https://forums.adobe.com/message/6688648#6688648)

  • When clicking InDesign CS6 exec setup, it stalls and says "Installer failed to initialize.

    Atter downloading and unzipping InDesign CS6, When I get as far as clicking the exec setup, it stalls and says “Installer failed to initialize. Then it says that theremay be a missing file.

    We can't know. You have not provided system info or other technical details.
    Mylenium

  • Connect as: normal with Oracle 12c and Toad 12 FAILS.

    Connect as: normal with Oracle 12c and Toad 12 FAILS.
    I've been looked at forums, blogs and wikies but I couldn't found why my new user, that I created before, can't connect as NORMAL but as SYSDBA it can.
    I don't know why this occurs.
    My intention is create a user/schema in a local DB to have my own db.
    I can create a new user but when I go to connect to this new schema I only connect as SYSDBA, this is a big trouble because I can "see" object's DBA and I don't want this, I want create my own new schema db and not share name's object or name's tables with DBA.
    For example, object JOB exists as SYSDBA and I can't create a new table with this name.
    Please, help me.
    Thanks very much for read me.

    Hello rp0428!!
    I'll show you all step that you wrote.
    In sql plus:
    sho con_name
    CON_NAME
    CDB$ROOT
    SELECT name, created, open_mode FROM v$database;
    NAME CREATED                OPEN_MODE
    ORCL 23/07/2013 15:59:44 READ WRITE
    SELECT username, account_status, lock_date, expiry_date FROM dba_users WHERE USERNAME like '%IMEI%' ORDER BY 1;
    username       account_status  lock_date     expiry_date
    IMEILOCAL   OPEN                                    22/01/2014 12:20:25
    SELECT USERNAME,CON_ID,USER_ID FROM CDB_USERS WHERE USERNAME like '%IMEI%';
    USERNAME     CON_ID   USER_ID
    IMEILOCAL      3               117
    select GRANTEE,con_id from cdb_ROLE_PRIVS where GRANTED_ROLE='CONNECT' AND GRANTEE LIKE '%IMEI%';
    GRANTEE                  con_id
    IMEILOCAL                3
    SELECT NAME, CON_ID, DBID, CON_UID, GUID FROM V$CONTAINERS ORDER BY CON_ID;
    NAME       CON_ID    DBID                CON_UID         GUID
    ORCLC    3               2835062256     2835062256     14236144864B451C8E04D5C6453034FA
    To create my user I did:
    select con_id,dbid,NAME,OPEN_MODE from v$pdbs;
    2    4064112103    PDB$SEED    READ ONLY
    3    2835062256    ORCLC      MOUNTED
    alter PLUGGABLE database ORCLC open;
    select con_id,dbid,NAME,OPEN_MODE from v$pdbs;
    --2    4064112103    PDB$SEED    READ ONLY
    --3    2835062256    ORCLC      READ WRITE
    alter session set container=ORCLC;
    CREATE TABLESPACE DATA3 DATAFILE 'C:\app\X05699SA\oradata\orcl\DATA3.dbf' SIZE 50M;
    CREATE USER IMEILOCAL IDENTIFIED BY IMEILOCAL DEFAULT TABLESPACE DATA3 TEMPORARY TABLESPACE TEMP PROFILE DEFAULT ACCOUNT UNLOCK;
    select username, password, created, password_versions, default_tablespace from dba_users where username like '%IMEI%';
    username      password     created                         password_versions    default_tablespace
    IMEILOCAL                       24/07/2013 16:41:35   11G                             DATA3
    GRANT CREATE SESSION TO IMEILOCAL;
    GRANT CREATE TABLE TO IMEILOCAL;
    GRANT CREATE VIEW TO IMEILOCAL;
    GRANT CREATE procedure TO IMEILOCAL;
    GRANT CREATE trigger TO IMEILOCAL;
    GRANT CONNECT TO IMEILOCAL;
    GRANT CREATE SEQUENCE to IMEILOCAL;
    GRANT create any context TO IMEILOCAL;
    GRANT create public synonym TO IMEILOCAL;
    GRANT execute on dbms_rls TO IMEILOCAL;
    GRANT administer database trigger TO IMEILOCAL;
    SELECT user, osuser, terminal, program FROM gv$session WHERE sid = (SELECT sid FROM v$mystat WHERE rownum = 1);
    user     osuser                                 terminal                      program
    SYS    SECTORIALES\X05699SA MX3500906DC1549 Toad.exe
    SELECT u.username, u.default_tablespace, u.temporary_tablespace "TMP TBS", u.profile, r.granted_role,
    r.admin_option, r.default_role
    FROM sys.dba_users u, sys.dba_role_privs r
    WHERE u.username = r.grantee and u.username like '%IMEI%'
    GROUP BY u.username, u.default_tablespace, u.temporary_tablespace, u.profile, r.granted_role,
    r.admin_option, r.default_role;
    IMEILOCAL USERS TEMP DEFAULT CONNECT NO YES
    SELECT tablespace_name FROM dba_tablespaces;
    SYSTEM
    SYSAUX
    TEMP
    USERS
    EXAMPLE
    DATA3
    SELECT name, password FROM user$ where name like '%IMEI%';
    IMEILOCAL passwordx
    select USERNAME, USER_ID, CREATED,                      COMMON, ORACLE_MAINTAINED from all_users WHERE username like '%IMEI%' order by 1;
              IMEILOCAL    117           24/07/2013 16:41:35       NO              N
    select * from user$ where name like '%IME%';
    117 IMEILOCAL 1 passwordx 3 2 24/07/2013 16:41:35 26/07/2013 12:20:25   0  1   0 0 DEFAULT_CONSUMER_GROUP  0   S:566C0A818AC42C203D49706D3586926A7656F5B16AA6C37E8FE10A1F779B;H:6FB057BA9F5B0690B93FD9A20695654D      
    Here you're my tnsnames.ora
    # tnsnames.ora Network Configuration File: C:\app\X05699SA\product\12.1.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    LISTENER_ORCL =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    ORCL =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = orcl.iecisa.corp)
    # Here you're my listener.ora Network Configuration File: C:\app\X05699SA\product\12.1.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\app\X05699SA\product\12.1.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:C:\app\X05699SA\product\12.1.0\dbhome_1\bin\oraclr12.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    I think my problem source from about CDBs and PDBs, that is new in Oracle 12c and I'm not configure correcly my new DB and neither my new User
    Thanks for all!!!

  • Oracle Forms and Reports Installation - Creating domain failed

    I installed the weblogic 10.3.6 (Oracle WebLogic Server 11gR1 (10.3.6) + Coherence + OEPE - Package Installer) in my Microsoft Windows(32-bit JVM) system first.
    But there was an error occorred when the package of forms and reports (Oracle Forms and Reports 11gR2 (11.1.2.2.0)) was installing.
    Please find the following error message for your reference.
    Do you have any idea? Please kindly advise.
    Thanks a lot!
    2014-04-02 14:11:14,099 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - read template from "C:/Users/GZ/AppData/Local/Temp//tmp1396419069239wls.jar"
    2014-04-02 14:11:16,185 INFO  [main] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - C:\Oracle\Middleware\wlserver_10.3\common\lib\components.xml does not contain component elements and will be skipped
    2014-04-02 14:11:17,556 INFO  [main] com.oracle.cie.domain.WLSTemplateBuilder - No config-groups.xml found in template
    2014-04-02 14:11:17,556 INFO  [main] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2014-04-02 14:11:18,205 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: read template from "C:/Users/GZ/AppData/Local/Temp//tmp1396419069239wls.jar"
    2014-04-02 14:11:18,477 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set config option ServerStartMode to "prod"
    2014-04-02 14:11:18,477 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set config option ServerStartMode to "prod"
    2014-04-02 14:11:18,490 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - create Machine "PC-42A26D.GZAD.MSAD.LOCAL" as obj0
    2014-04-02 14:11:18,604 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: create Machine "PC-42A26D.GZAD.MSAD.LOCAL" as obj0
    2014-04-02 14:11:18,612 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - find Server "AdminServer" as obj1
    2014-04-02 14:11:18,652 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "AdminServer" as obj1
    2014-04-02 14:11:18,698 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set obj1 attribute Machine to "PC-42A26D.GZAD.MSAD.LOCAL"
    2014-04-02 14:11:18,705 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj1 attribute Machine to "PC-42A26D.GZAD.MSAD.LOCAL"
    2014-04-02 14:11:18,706 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set obj1 attribute ListenPort to "7002"
    2014-04-02 14:11:18,716 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj1 attribute ListenPort to "7002"
    2014-04-02 14:11:18,716 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - create Server!SSL "AdminServer!AdminServer" as obj2
    2014-04-02 14:11:18,724 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: create Server!SSL "AdminServer!AdminServer" as obj2
    2014-04-02 14:11:18,735 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set obj2 attribute HostnameVerificationIgnored to "true"
    2014-04-02 14:11:18,739 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj2 attribute HostnameVerificationIgnored to "true"
    2014-04-02 14:11:18,739 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - find User "weblogic" as obj3
    2014-04-02 14:11:18,755 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: find User "weblogic" as obj3
    2014-04-02 14:11:18,755 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - delete obj3
    2014-04-02 14:11:18,763 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: delete obj3
    2014-04-02 14:11:18,764 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - create User "weblogic" as obj4
    2014-04-02 14:11:18,768 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: create User "weblogic" as obj4
    2014-04-02 14:11:18,771 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set obj1 attribute PeriodLength to "200000"
    2014-04-02 14:11:18,807 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj1 attribute PeriodLength to "200000"
    2014-04-02 14:11:18,807 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set obj1 attribute IdlePeriodsUntilTimeout to "20"
    2014-04-02 14:11:18,815 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj1 attribute IdlePeriodsUntilTimeout to "20"
    2014-04-02 14:11:18,815 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set obj1 attribute DGCIdlePeriodsUntilTimeout to "21"
    2014-04-02 14:11:18,821 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj1 attribute DGCIdlePeriodsUntilTimeout to "21"
    2014-04-02 14:11:18,822 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set obj1 attribute IdleConnectionTimeout to "1000"
    2014-04-02 14:11:18,830 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj1 attribute IdleConnectionTimeout to "1000"
    2014-04-02 14:11:18,833 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set obj4 attribute Password to "********"
    2014-04-02 14:11:18,837 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj4 attribute Password to "********"
    2014-04-02 14:11:18,837 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set config option OverwriteDomain to "true"
    2014-04-02 14:11:18,837 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set config option OverwriteDomain to "true"
    2014-04-02 14:11:18,837 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - set config option JavaHome to "C:/Oracle/Middleware/jdk160_29"
    2014-04-02 14:11:18,837 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: set config option JavaHome to "C:/Oracle/Middleware/jdk160_29"
    2014-04-02 14:11:18,948 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - validateConfig "KeyStorePasswords"
    2014-04-02 14:11:18,953 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: validateConfig "KeyStorePasswords"
    2014-04-02 14:11:18,954 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - write Domain to "C:/Oracle/Middleware/user_projects/domains/base_domain"
    2014-04-02 14:11:19,441 INFO  [main] com.oracle.cie.domain.DomainChecker - ListenPort internal Validation result= [null]
    2014-04-02 14:11:19,441 INFO  [main] com.oracle.cie.domain.DomainChecker - ListenPort external Validation result= [null]
    2014-04-02 14:11:21,609 INFO  [Thread-1] com.oracle.cie.domain.StartMenu - Creating start menu program=C:\Oracle\Middleware\user_projects\domains\base_domain\bin\startWebLogic.cmd link=Start Admin Server for Weblogic Server Domain
    2014-04-02 14:11:21,659 INFO  [Thread-1] com.oracle.cie.domain.StartMenu - Creating start menu program=C:\Oracle\Middleware\user_projects\domains\base_domain\bin\stopWebLogic.cmd link=Stop Admin Server
    2014-04-02 14:11:21,667 INFO  [Thread-1] com.oracle.cie.domain.StartMenu - Creating start menu program=C:\Windows\system32\rundll32.exe link=Admin Server Console
    2014-04-02 14:11:21,759 INFO  [Thread-1] com.oracle.cie.domain.DomainRegistryWrapper - need to initialize domainRegistrydocument object
    2014-04-02 14:11:21,777 INFO  [Thread-1] com.oracle.cie.domain.DomainGenerator - Domain Generation Successful!
    2014-04-02 14:11:21,783 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: write Domain to "C:/Oracle/Middleware/user_projects/domains/base_domain"
    2014-04-02 14:11:21,784 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - close template
    2014-04-02 14:11:21,784 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: close template
    2014-04-02 14:11:21,784 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - read domain from "C:/Oracle/Middleware/user_projects/domains/base_domain"
    2014-04-02 14:11:21,967 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: read domain from "C:/Oracle/Middleware/user_projects/domains/base_domain"
    2014-04-02 14:11:21,967 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - add template C:/Oracle/Middleware/oracle_common/common/templates/applications/jrf_template_11.1.1.jar to domain
    2014-04-02 14:11:22,011 WARN  [main] com.oracle.cie.domain.template.dependency.TemplateSelectionTarget - Catalog does not have matching template for location C:\Users\GZ\AppData\Local\Temp\tmp1396419069239wls.jar
    2014-04-02 14:11:22,071 INFO  [main] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2014-04-02 14:11:22,100 INFO  [main] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2014-04-02 14:11:22,101 ERROR [main] com.oracle.cie.domain.ConfigGroupsEngine$ConfigTopology - Multiple definitions of server-group BI-ADF-ADMIN-SVR are not allowed
    2014-04-02 14:11:22,101 INFO  [main] com.oracle.cie.domain.script.ScriptExecutor - fail: add template C:/Oracle/Middleware/oracle_common/common/templates/applications/jrf_template_11.1.1.jar to domain
    2014-04-02 14:11:22,101 ERROR [main] com.oracle.cie.domain.script.ScriptExecutor - fail: add template C:/Oracle/Middleware/oracle_common/common/templates/applications/jrf_template_11.1.1.jar to domain
    com.oracle.cie.domain.ConfigGroupsException: Multiple definitions of server-group BI-ADF-ADMIN-SVR are not allowed
    at com.oracle.cie.domain.ConfigGroupsEngine$ConfigTopology.merge(ConfigGroupsEngine.java:2762)
    at com.oracle.cie.domain.ConfigGroupsEngine.mergeTopology(ConfigGroupsEngine.java:551)
    at com.oracle.cie.domain.ConfigGroupsEngine.merge(ConfigGroupsEngine.java:479)
    at com.oracle.cie.domain.AbstractTemplate.addConfigGroups(AbstractTemplate.java:314)
    at com.oracle.cie.domain.script.ScriptExecutor.addTemplate(ScriptExecutor.java:605)
    at com.oracle.cie.domain.script.jython.WLScriptContext.addTemplate(WLScriptContext.java:416)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.python.core.PyReflectedFunction.__call__(Unknown Source)
    at org.python.core.PyMethod.__call__(Unknown Source)
    at org.python.core.PyObject.__call__(Unknown Source)
    at org.python.core.PyInstance.invoke(Unknown Source)
    at org.python.pycode._pyx3.addTemplate$20(C:\Users\GZ\AppData\Local\Temp\WLSTOfflineIni364664194239939514.py:89)
    at org.python.pycode._pyx3.call_function(C:\Users\GZ\AppData\Local\Temp\WLSTOfflineIni364664194239939514.py)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyFunction.__call__(Unknown Source)
    at org.python.pycode._pyx15.f$0(C:\Users\GZ\AppData\Local\Temp\tmp1396419069304.py:42)
    at org.python.pycode._pyx15.call_function(C:\Users\GZ\AppData\Local\Temp\tmp1396419069304.py)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyCode.call(Unknown Source)
    at org.python.core.Py.runCode(Unknown Source)
    at org.python.util.PythonInterpreter.execfile(Unknown Source)
    at weblogic.management.scripting.WLST.main(WLST.java:139)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.WLST.main(WLST.java:29)

    hi user ...
    on windows there are some steps in front of installation and configuration.
    1) cleare the Windows Env (Path .. Programme x86 )
         no Blank in Path and so on
    2) insert into your local host file your server and IP Adress
    3) in Windows 32 setup of WLS is JDK included so you don't have to install the jdk in front of WLS
    4) verify if you are using the right installation medium (jdk 32 bit, wls 32 bit , fmw 32 bit
    in your OraInventory/logs directory is a *.out file for your installation please can you put this file in the forum
    is there a nodemanager up and running (if so please stop)
    Jan-Peter

  • Oracle CRS(10.1) installation fails

    Hi,
    Following is a detailed synopsis of my unsuccessful attempt at installing Oracle Cluster Ready Services(10.1) on a two node Windows 2000 advanced server system with external SCSI hard disk.
    Following is the Configuration of both the Nodes
    1.Intel Pentium P4 2.80 Ghz CPU
    2.512 MB RAM
    3.37 GB HDD
    4.Windows 2000 Advanced Server SP4
    5.Adaptec SCSI CARD 39160 ULTRA160 SCSI Controller
    6.Two -10/100 Mbps Fast Ethernet PCI Adapter (DLINK)
    Clusterware
    Oracle Cluster Ready Services 10.1.0.2
    Configuration for SCSI
    1.Model Make :SEAGATE
    2.Model Number :ST336607
    3.Firmware: 0007
    4.Model Name: Cheetah 10K.6
    5.Capacity: 36.7GB
    6.Speed: 10000 rpm
    Following are the pre-installation steps.
    1.The system setup involved 2 identical nodes with Windows 2000 Advanced Server SP4 OS.
    2.Two static Public IP's for both the nodes
    3.Two private IP's which can be pinged. (1st Node Private IP 10.10.10.2 2nd Node Private IP 10.10.10.3)
    4.Entry of the private IP's can also be found in the host file.
    5.ORA_DBA win group was created on both the nodes.
    6.Both the nodes are connected to a external SCSI hard disk
    CRS installation Steps
    1.On the Cluster Configuration page the Public Node Names and corresponding Private Node Names were entered.
    2.On the Network Interface Usage Page one interface was selected as Public (192.168.144.0) and the other interface was selected as Private (10.10.10.0)
    3.On Disk formatting Options page the ‘Do not format any logical drives was selected’.
    4.Finally the Logical partitions made on the SCSI hard disk were assigned to the OCR and voting disk.
    OUI installed the Oracle folder and services on the primary node and on the remote node. But failed to start the services on both the nodes.
    Following is snippet of the OUI installing log.
    Save Cluster Inventory
    Error occured while trying to stop service OracleOUIOraCr10g_homeService on one or more cluster nodes. Please stop service on nodes pc-p41300 using the Service Control Manager.
    Invoking OUI on cluster nodes pc-p41300
    C:\DOCUME~1\salil\LOCALS~1\Temp\OraInstall2005-01-04_09-19-56PM\oui\bin\setup.exe -jreLoc C:\DOCUME~1\salil\LOCALS~1\Temp\OraInstall2005-01-04_09-19-56PM\jre\1.4.2 -paramFile C:\DOCUME~1\salil\LOCALS~1\Temp\OraInstall2005-01-04_09-19-56PM\oui/clusterparam.ini -silent -ignoreSysPrereqs -attachHome -local -noClusterEnabled ORACLE_HOME=D:\oracle\product\10.1.0\crs ORACLE_HOME_NAME=OraCr10g_home CLUSTER_NODES=PC-P41295,pc-p41300 CRS=true
    PRKC-1010 : Failed to stop the service on all nodes
    Starting to execute configuration assistants
    Launched configuration assistant 'Oracle Cluster Ready Services Configuration Assistant'
    Tool type is: Optional.
    The command being spawned is: 'D:\oracle\product\10.1.0\crs/install/crssetup.config.bat'
    Start output from spawned process:
    Successfully accumulated necessary OCR keys.
    Using ports: CSS=49895 CRS=49896 EVMC=49898 and EVMR=49897.
    node <nodenumber>: <nodename> <private interconnect name> <hostname>
    node 1: pc-p41300 pc-p41300-node pc-p41300
    node 2: pc-p41295 pc-p41295-node pc-p41295
    Creating OCR keys for user 'salil', privgrp ''..
    Operation successful.
    Now formatting voting device: \\.\votedsk
    Successful in setting block0 for voting disk.
    Format complete.
    Step 1: checking status of CRS cluster
    Step 2: configuring OCR repository
    Step 3: configuring safe mode for CRS stack
    Step 4: Starting up CRS stack on all nodes
    pc-p41300 service OracleCSService in improper STOPPED state, err(997)
    PC-P41295 service OracleCSService in improper PENDING state, err(997)
    Following errors were also observed at Operating System Level
    Event ID:11
    Description: The driver detected a controller error on \Device\SCSI\adpu160m1
    Note: adpu160m is the driver for the adaptec controllers
    Event ID:9
    Description: The device, \Device\SCSI\adpu160m1, did not respond within the time out period.
    Since the above method failed following alternate method was tired
    The CRS software was installed on just one node. This installation went about without any problems with all the services up and running.
    Using the ADDNode utility provided by CRS another node was added. But again when CRSSetup.exe tried to start the services on the remote node following error was encountered.
    PC-P41300 service OracleCSService in improper PENDING state, err(997)
    I would be grateful if some could help me with this problem.
    Thanking you in Anticipation,
    Regards,
    Salil([email protected])

    sa**** wrote:
    Hi,
    Following is a detailed synopsis of my unsuccessful attempt at installing Oracle Cluster Ready Services(10.1) on a two node Windows 2000 advanced server system with external SCSI hard disk.
    <B>Following is the Configuration of both the Nodes</B>
    1.Intel Pentium P4 2.80 Ghz CPU
    2.512 MB RAM
    3.37 GB HDD
    4.Windows 2000 Advanced Server SP4
    5.Adaptec SCSI CARD 39160 ULTRA160 SCSI Controller
    6.Two -10/100 Mbps Fast Ethernet PCI Adapter (DLINK)
    <B>Clusterware</B>
    Oracle Cluster Ready Services 10.1.0.2
    <B>Configuration for SCSI</B>
    1.Model Make :SEAGATE
    2.Model Number :ST336607
    3.Firmware: 0007
    4.Model Name: Cheetah 10K.6
    5.Capacity: 36.7GB
    6.Speed: 10000 rpm
    <B>Following are the pre-installation steps.</B>
    1.The system setup involved 2 identical nodes with Windows 2000 Advanced Server SP4 OS.
    2.Two static Public IP's for both the nodes
    3.Two private IP's which can be pinged. (1st Node Private IP 10.10.10.2 2nd Node Private IP 10.10.10.3)
    4.Entry of the private IP's can also be found in the host file.
    5.ORA_DBA win group was created on both the nodes.
    6.Both the nodes are connected to a external SCSI hard disk
    <B>CRS installation Steps</B>
    <P>1.On the Cluster Configuration page the Public Node Names and corresponding Private Node Names were entered.
    2.On the Network Interface Usage Page one interface was selected as Public (192.168.144.0) and the other interface was selected as Private (10.10.10.0)
    3.On Disk formatting Options page the ‘Do not format any logical drives was selected’.
    4.Finally the Logical partitions made on the SCSI hard disk were assigned to the OCR and voting disk.
    OUI installed the Oracle folder and services on the primary node and on the remote node. But failed to start the services on both the nodes.
    <B>Following is snippet of the OUI installing log.</B>
    <HR>
    Save Cluster Inventory
    Error occured while trying to stop service OracleOUIOraCr10g_homeService on one or more cluster nodes. Please stop service on nodes pc-p41300 using the Service Control Manager.
    Invoking OUI on cluster nodes pc-p41300
    C:\DOCUME~1\salil\LOCALS~1\Temp\OraInstall2005-01-04_09-19-56PM\oui\bin\setup.exe -jreLoc C:\DOCUME~1\salil\LOCALS~1\Temp\OraInstall2005-01-04_09-19-56PM\jre\1.4.2 -paramFile C:\DOCUME~1\salil\LOCALS~1\Temp\OraInstall2005-01-04_09-19-56PM\oui/clusterparam.ini -silent -ignoreSysPrereqs -attachHome -local -noClusterEnabled ORACLE_HOME=D:\oracle\product\10.1.0\crs ORACLE_HOME_NAME=OraCr10g_home CLUSTER_NODES=<font face="tahoma,verdana,sans-serif" size="1" color="#000">PC-P41295,pc-p41300</font> CRS=true
    PRKC-1010 : Failed to stop the service on all nodes
    Starting to execute configuration assistants
    Launched configuration assistant 'Oracle Cluster Ready Services Configuration Assistant'
    Tool type is: Optional.
    The command being spawned is: 'D:\oracle\product\10.1.0\crs/install/crssetup.config.bat'
    Start output from spawned process:
    Successfully accumulated necessary OCR keys.
    Using ports: CSS=49895 CRS=49896 EVMC=49898 and EVMR=49897.
    node <NODENUMBER>: <NODENAME><PRIVATE name interconnect><HOSTNAME>
    node 1: pc-p41300 pc-p41300-node pc-p41300
    node 2: pc-p41295 pc-p41295-node pc-p41295
    Creating OCR keys for user 'salil', privgrp ''..
    Operation successful.
    Now formatting voting device: \\.\votedsk
    Successful in setting block0 for voting disk.
    Format complete.
    Step 1: checking status of CRS cluster
    Step 2: configuring OCR repository
    Step 3: configuring safe mode for CRS stack
    Step 4: Starting up CRS stack on all nodes
    <HR>
    <B>pc-p41300 service OracleCSService in improper STOPPED state, err(997)
    PC-P41295 service OracleCSService in improper PENDING state, err(997)</B>
    <HR>
    <B>Following errors were also observed at Operating System Level</B>
    <B>Event ID:11</B>
    Description: The driver detected a controller error on \Device\SCSI\adpu160m1
    Note: adpu160m is the driver for the adaptec controllers
    <B>Event ID:9</B>
    Description: The device, \Device\SCSI\adpu160m1, did not respond within the time out period.
    Since the above method failed following alternate method was tired
    The CRS software was installed on just one node. This installation went about without any problems with all the services up and running.
    Using the ADDNode utility provided by CRS another node was added. But again when CRSSetup.exe tried to start the services on the remote node following error was encountered.
    <B>PC-P41300 service OracleCSService in improper PENDING state, err(997)</B>
    I would be grateful if some could help me with this problem.
    <P>Thanking you in Anticipation,
    Regards,
    Salil([email protected]) </P>
    I do not know what you're talking about, I'm new to this.

  • Oracle Grid control 10G R2 failed

    Hello all;
    I just have installed Oracle Grid control 10G R2 on my PC ( xp sp2 ) , the installation continued until I found it is paused on OMS Configuration and gave me the following message :
    Configuration assistant "OMS Configuration" failed
    The "C:\grid_conrol_home\agent10g\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------
    I looked at "C:\grid_conrol_home\agent10g\cfgtoollogs\configToolFailedCommands" file and I found :
    oracle.sysman.emcp.agent.AgentPlugIn
    Can you please help me in this issue .
    Regards,

    Have a look at the logs at:
    C:\grid_control_home\agent10g\cfgtoollogs\omsca
    FJFranken

  • Oracle Database Configuration Assistant Installation Failed

    I am installing Oracle8i for linux on a Redhat 6.0 box (dual
    PII-350, 256 MB RAM). At the end of a "typical" installation run
    from the runInstaller, it says:
    "A required command line argument is missing."
    And the ODCA failed to create the database. Net8 configuration
    assistant was installed fine.
    If I run the svrmgrl :
    sh-2.03$ ./svrmgrl
    Oracle Server Manager Release 3.1.5.0.0 - Production
    (c) Copyright 1997, Oracle Corporation. All Rights Reserved.
    Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
    With the Partitioning and Java options
    PL/SQL Release 8.1.5.0.0 - Production
    SVRMGR> connect
    Username: internal
    Connected.
    SVRMGR> startup
    LRM-00109: Kan ikke bne parameterfilen '?/dbs/[email protected]'
    ORA-01078: failure in processing system parameters
    What's wrong here?
    Thanks for any insights.
    -Dong
    null

    : : : LRM-00109: Kan ikke bne parameterfilen '?/dbs/[email protected]'
    =The message is in Danish
    Hermann Ragaller (guest) wrote:
    : I think that is a know bug in the installer.
    : Ignore the problem and start the db assistant from the command
    : line afterwards:
    : $ dbassist
    : I created the database this way. The option "copy seed database
    : from cd" did not work because it could not see the cd, so I
    : choose create from scratch. That worked fine.
    : Btw, I had the same strange message - its not german, looks
    more
    : like swedish or dutch to me...
    : Hermann
    : Simon Griffiths (guest) wrote:
    : : I'm not sure what the bit of German means, but I'm pretty
    sure
    : : oracle cannot find your parameter file to open the database
    : with.
    : : By default it looks in a file
    : : $ORACLE_HOME/dbs/init${ORACLE_SID}.ora
    : : You probably don't have one of these !
    : : Have you set $ORACLE_SID yet ?
    : : I gave up on the assistant and used the create scripts in
    : : $ORACLE_HOME/rdbms/install/create. These work fine without
    any
    : : editing.
    : : A mininum would be :
    : : crdb1.sh i815
    : : crdb2.sh i815
    : : crdb3.sh i815
    : : dong (guest) wrote:
    : : : I am installing Oracle8i for linux on a Redhat 6.0 box
    (dual
    : : : PII-350, 256 MB RAM). At the end of a "typical"
    installation
    : : run
    : : : from the runInstaller, it says:
    : : : "A required command line argument is missing."
    : : : And the ODCA failed to create the database. Net8
    : configuration
    : : : assistant was installed fine.
    : : : If I run the svrmgrl :
    : : : sh-2.03$ ./svrmgrl
    : : : Oracle Server Manager Release 3.1.5.0.0 - Production
    : : : (c) Copyright 1997, Oracle Corporation. All Rights
    Reserved.
    : : : Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
    : : : With the Partitioning and Java options
    : : : PL/SQL Release 8.1.5.0.0 - Production
    : : : SVRMGR> connect
    : : : Username: internal
    : : : Connected.
    : : : SVRMGR> startup
    : : : LRM-00109: Kan ikke bne parameterfilen '?/dbs/[email protected]'
    : : : ORA-01078: failure in processing system parameters
    : : : What's wrong here?
    : : : Thanks for any insights.
    : : : -Dong
    null

  • Itunes and app store crashes upon launch.

    I installed Version 10.9.2 and I started having this problem. Itunes would crash upon launch, and wouldn't open. Same with app strore. I would appreaciate any help you would offer. Here is the report:
    Process:         iTunes [1107]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         11.1.5 (11.1.5)
    Build Info:      iTunes-1115011001005005~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [155]
    Responsible:     iTunes [1107]
    User ID:         501
    PlugIn Path:       /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    PlugIn Identifier: com.apple.CommerceKit
    PlugIn Version:    1.2.0 (232.6.1)
    Date/Time:       2014-04-25 11:52:20.696 -0700
    OS Version:      Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:  A3C07E76-CC2A-0317-D848-14FFD171B19C
    Crashed Thread:  0  iTunes main  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x00007fff79967360
    VM Regions Near 0x7fff79967360:
        __DATA                 00007fff7993a000-00007fff7993c000 [    8K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    --> __DATA                 00007fff7993c000-00007fff7996f000 [  204K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        __DATA                 00007fff7996f000-00007fff79970000 [    4K] rw-/rwx SM=COW  /usr/lib/system/libsystem_m.dylib
    Application Specific Information:
    objc_msgSend() selector name: copyWithZone:
    Thread 0 Crashed:: iTunes main  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff91f6f091 objc_msgSend + 17
    1   libobjc.A.dylib                         0x00007fff91f80d06 objc_setProperty_atomic_copy + 38
    2   com.apple.CommerceKit                   0x00007fff93ce42d5 -[CKStoreClient setClientType:] + 519
    3   com.apple.CommerceKit                   0x00007fff93ce3bea -[CKStoreClient init] + 61
    4   com.apple.CommerceKit                   0x00007fff93ce3b98 __31+[CKStoreClient sharedInstance]_block_invoke + 40
    5   libdispatch.dylib                       0x00007fff90c7f2ad _dispatch_client_callout + 8
    6   libdispatch.dylib                       0x00007fff90c7f21c dispatch_once_f + 79
    7   com.apple.CommerceKit                   0x00007fff93ce3b6e +[CKStoreClient sharedInstance] + 46
    8   com.apple.iTunes                        0x0000000106a8a43e 0x106862000 + 2262078
    9   com.apple.iTunes                        0x0000000106fc0ca2 0x106862000 + 7728290
    10  com.apple.iTunes                        0x0000000106fc281f 0x106862000 + 7735327
    11  com.apple.iTunes                        0x0000000106fc27a7 0x106862000 + 7735207
    12  com.apple.CoreFoundation                0x00007fff90bb4e0c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    13  com.apple.CoreFoundation                0x00007fff90aa88dd _CFXNotificationPost + 2893
    14  com.apple.Foundation                    0x00007fff9211a7ba -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    15  com.apple.AppKit                        0x00007fff930e4e6e -[NSApplication finishLaunching] + 440
    16  com.apple.AppKit                        0x00007fff930e4983 -[NSApplication run] + 128
    17  com.apple.iTunes                        0x000000010716e212 0x106862000 + 9486866
    18  com.apple.iTunes                        0x0000000106bf2934 0x106862000 + 3737908
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff8bfade6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b49bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b49efb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8bfae662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff90c8143d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff90c81152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8bfade6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b49bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b49efb9 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8bfa9a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8bfa8d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff90b08fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff90b085e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff90b07f25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff90bbd811 CFRunLoopRun + 97
    6   com.apple.mobiledevice                  0x000000010d558701 __thr_AMRegisterForCallbacks + 217
    7   libdispatch.dylib                       0x00007fff90c7f2ad _dispatch_client_callout + 8
    8   libdispatch.dylib                       0x00007fff90c8109e _dispatch_root_queue_drain + 326
    9   libdispatch.dylib                       0x00007fff90c82193 _dispatch_worker_thread2 + 40
    10  libsystem_pthread.dylib                 0x00007fff8b49bef8 _pthread_wqthread + 314
    11  libsystem_pthread.dylib                 0x00007fff8b49efb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8bfa9a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8bfa8d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff90b08fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff90b085e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff90b07f25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff90bbd811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x000000010687d403 0x106862000 + 111619
    7   com.apple.iTunes                        0x000000010686708d 0x106862000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff8b49a899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff8b49a72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff8b49efc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8bfad716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b49cc3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001068663cb 0x106862000 + 17355
    3   com.apple.iTunes                        0x0000000106cdcd57 0x106862000 + 4697431
    4   com.apple.iTunes                        0x0000000106cdd486 0x106862000 + 4699270
    5   com.apple.iTunes                        0x000000010686708d 0x106862000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff8b49a899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8b49a72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8b49efc9 thread_start + 13
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8bfad9aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff90b54ab3 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff8b49a899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8b49a72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8b49efc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8bfade6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b49bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b49efb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8bfa9a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8bfa8d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff90b08fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff90b085e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff90b07f25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff90bbd811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000106d8e7f0 0x106862000 + 5425136
    7   com.apple.iTunes                        0x000000010686708d 0x106862000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff8b49a899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff8b49a72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff8b49efc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8bfade6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b49bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b49efb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00006080002ff180  rcx: 0x0000000000000028  rdx: 0x0000000000000000
      rdi: 0x00007fff79967360  rsi: 0x00007fff93b22181  rbp: 0x00007fff5939d4b0  rsp: 0x00007fff5939d478
       r8: 0x00007fff799537f0   r9: 0x00007ff688e00000  r10: 0x0000000000000006  r11: 0x00007fff93ce4cd8
      r12: 0x00006080002ff180  r13: 0x00007fff5939d8e0  r14: 0x0000000000000028  r15: 0x00007fff91f6f080
      rip: 0x00007fff91f6f091  rfl: 0x0000000000010246  cr2: 0x00007fff79967360
    Logical CPU:     3
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x106862000 -        0x107f0cff7  com.apple.iTunes (11.1.5 - 11.1.5) <3598851A-8792-30BD-861C-7E5BC8C141B1> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x1082eb000 -        0x10836bff7  com.apple.iTunes.iPodUpdater (10.7 - 10.7) <2709E6B0-39E2-3D75-92E3-E9F27C307C4A> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x1083b2000 -        0x1083ddff7  com.apple.avfoundationcf (2.0 - 138.1) <AB1DD559-FD70-39FE-8AE1-632CCA8040A2> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x108418000 -        0x108736fe7  com.apple.iad.iAdCore (1.0 - 1) <9E8CC242-A900-3BD1-B044-F07F592B9B3D> /Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCo re
           0x1087fd000 -        0x108801fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10880c000 -        0x10880ffff  com.apple.iPod (1.7 - 20) <9B9FD104-A8EE-3884-8610-B06700AC344E> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x10881c000 -        0x108b48ff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x108b71000 -        0x108ba8ff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x108bbd000 -        0x108c93fe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x108cb2000 -        0x108cb4ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x108cb9000 -        0x108cfcff7 +libgnsdk_submit.1.9.5.dylib (1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x108ecf000 -        0x108ed3ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <82D2F703-F961-3298-B06F-14B772D23C7B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x108fb5000 -        0x108fb8ffa  libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x1092cb000 -        0x1092d3ff3  libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x1094d0000 -        0x10a245fff  com.apple.CoreFP (2.5.16 - 2.5.16) <1C390A93-4187-37E7-8A7E-4417876F069B> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x10d11d000 -        0x10d251ff7  com.apple.CoreADI (1.34.0 - 1.34.0) <33B6ECA7-680E-3517-A1C1-9785BA022516> /System/Library/PrivateFrameworks/CoreADI.framework/CoreADI
           0x10d258000 -        0x10d429fff  com.apple.audio.units.Components (1.10 - 1.10) <7AB53801-51BD-347E-B267-BCF71C15C023> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10d4d3000 -        0x10d5c4ff7  com.apple.mobiledevice (710.5 - 710.5) <C250816A-3B97-329D-9F6B-38DACA981CED> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x10d629000 -        0x10d81ffff  com.apple.audio.codecs.Components (4.0 - 4.0) <604485EE-4446-308F-9460-0A6CE9C2D98C> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x112525000 -        0x11252bff7  com.apple.BookKit (1.0.1 - 158) <34C7F87F-63B6-3E53-A7B1-8A6656405F41> /System/Library/PrivateFrameworks/BookKit.framework/BookKit
        0x7fff69e33000 -     0x7fff69e66817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8758d000 -     0x7fff8759eff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8759f000 -     0x7fff875a6fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff875a7000 -     0x7fff875f2fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff875f3000 -     0x7fff87638ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87639000 -     0x7fff87643ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff87875000 -     0x7fff87997ff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff87998000 -     0x7fff879ddfff  libcurl.4.dylib (78.92.2) <548E2D61-103F-3737-9C7C-0C26246CD4C8> /usr/lib/libcurl.4.dylib
        0x7fff87a3d000 -     0x7fff87a58ff7  libPng.dylib (1042.2) <103F76EB-0FB7-320E-822F-53483CCB7299> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff87a59000 -     0x7fff87a67fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff87a92000 -     0x7fff87a94fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff87a95000 -     0x7fff87aacfff  com.apple.PackageKit.PackageUIKit (3.0 - 332) <419D2A01-3A7A-3EB4-B4E5-55DEEB786572> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff87d4f000 -     0x7fff87d9dfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff87e58000 -     0x7fff87e69ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff87e86000 -     0x7fff87e9cfff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff87f29000 -     0x7fff87f58fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff87f59000 -     0x7fff87fc8ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff87fd0000 -     0x7fff880b7ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff880b8000 -     0x7fff880bdfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff880cb000 -     0x7fff880cdfff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff880ce000 -     0x7fff880d3ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8818a000 -     0x7fff8856bffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff88575000 -     0x7fff88590ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff88591000 -     0x7fff885c0ff9  com.apple.GSS (4.0 - 2.0) <1B71A3E1-E31D-32CC-A733-ED155CC4A6A2> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff88611000 -     0x7fff88691fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff88693000 -     0x7fff8893dff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff88980000 -     0x7fff889cdfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff889ce000 -     0x7fff88a1bff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff88a1c000 -     0x7fff88bb8ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff88bb9000 -     0x7fff88bc6ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff88bc7000 -     0x7fff88bcbfff  com.apple.ServerInformation (2.0 - 1) <85F3EFCA-246B-30A1-8757-ECC97533D38D> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff88bf3000 -     0x7fff88c6afff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff88cd7000 -     0x7fff88dbbfff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff88dbc000 -     0x7fff88dc0ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff88dc1000 -     0x7fff88dc5ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff88dc6000 -     0x7fff892e9fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff892ea000 -     0x7fff89380ff7  com.apple.PackageKit (3.0 - 332) <70BE1C7F-0609-32D3-9FA3-3C2CCF7FE999> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff89381000 -     0x7fff8938efff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff893dc000 -     0x7fff893defff  com.apple.loginsupport (1.0 - 1) <4FBB283B-5BBD-3918-AC89-3A7286CFA145> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff89b38000 -     0x7fff89b6dffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89b6e000 -     0x7fff89bb5fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff89bd0000 -     0x7fff89c00fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff89c01000 -     0x7fff89c04fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff89c05000 -     0x7fff89cd6fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff89ce1000 -     0x7fff89ce2fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff89d41000 -     0x7fff89d88ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff89d89000 -     0x7fff89d91ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff89d92000 -     0x7fff89d96fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff89d97000 -     0x7fff89dbeffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff89dbf000 -     0x7fff89e81ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff89e82000 -     0x7fff8a1b8fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8a284000 -     0x7fff8a286fff  libRadiance.dylib (1042.2) <63C92F09-F862-3303-9EF6-55A80B48F2CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8a287000 -     0x7fff8a297fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8a2c0000 -     0x7fff8a2d7ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8a2d8000 -     0x7fff8a319fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8a31a000 -     0x7fff8a36bfff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8a36c000 -     0x7fff8a3c7ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8a3c8000 -     0x7fff8a3d1fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8a3d8000 -     0x7fff8a3e3fff  libkxld.dylib (2422.92.1) <A7DFFC8C-45EE-3525-A961-EF93C2FB1340> /usr/lib/system/libkxld.dylib
        0x7fff8a425000 -     0x7fff8a4e9ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8a4ea000 -     0x7fff8a91dffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8a989000 -     0x7fff8aa5aff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8aa5b000 -     0x7fff8aa93ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8aa94000 -     0x7fff8aabdfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8aabe000 -     0x7fff8aac0ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8aac1000 -     0x7fff8aad4ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8aad5000 -     0x7fff8aad6ffb  libScreenReader.dylib (333.10) <B8857530-E7BC-3C40-B10E-23C815801074> /usr/lib/libScreenReader.dylib
        0x7fff8aadc000 -     0x7fff8ab41ffb  com.apple.Heimdal (4.0 - 2.0) <1560A2CC-2C0C-3F7B-868C-BD5ADB241F5A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8ab42000 -     0x7fff8ab54fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8ab62000 -     0x7fff8ab8eff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8ab8f000 -     0x7fff8abbbfff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8abbc000 -     0x7fff8abe0fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8abe1000 -     0x7fff8abe1fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8abe2000 -     0x7fff8abf1ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8ac20000 -     0x7fff8ac45ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8ac46000 -     0x7fff8ac58ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8ac59000 -     0x7fff8ac61fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8ac62000 -     0x7fff8add0ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8ae14000 -     0x7fff8b384fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8b40c000 -     0x7fff8b40effb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8b428000 -     0x7fff8b48bff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8b499000 -     0x7fff8b4a0ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8b6e5000 -     0x7fff8b93eff9  com.apple.security (7.0 - 55471.14.1) <FF57C9BB-4E52-33E5-8927-59AEADB6CA27> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b93f000 -     0x7fff8ba30ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8bc48000 -     0x7fff8bc53ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8be46000 -     0x7fff8be4ffff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8be50000 -     0x7fff8be96fff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8be97000 -     0x7fff8bf23ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8bf24000 -     0x7fff8bf97fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8bf98000 -     0x7fff8bfb4ff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8bfb5000 -     0x7fff8c0a4fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8c441000 -     0x7fff8d293ff7  com.apple.WebCore (9537 - 9537.75.14) <8C80717D-91D3-32D5-92F4-804AC1D1E881> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8d294000 -     0x7fff8d32ffff  com.apple.PDFKit (2.9.1 - 2.9.1) <F4DFF4F2-6DA3-3B1B-823E-D9ED271A1522> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8d330000 -     0x7fff8d331ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8d332000 -     0x7fff8d3baff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8d4be000 -     0x7fff8d549fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff8d589000 -     0x7fff8d590ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff8de5a000 -     0x7fff8de5affd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8df53000 -     0x7fff8dfa4ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8dfa5000 -     0x7fff8dfb7fff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8dfb8000 -     0x7fff8e048fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8e049000 -     0x7fff8e04bff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8e04f000 -     0x7fff8e051fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8e052000 -     0x7fff8e326fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8e3c2000 -     0x7fff8e401fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e402000 -     0x7fff8e42fff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8e430000 -     0x7fff8e43aff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8e465000 -     0x7fff8e47eff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8e47f000 -     0x7fff8e4c1ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8e4c5000 -     0x7fff8e590fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8e591000 -     0x7fff8e595ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
        0x7fff8e596000 -     0x7fff8e5bdff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8e5be000 -     0x7fff8e6edfef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8e6ee000 -     0x7fff8e6f1fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8e6f2000 -     0x7fff8e72dfff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8e72e000 -     0x7fff8e7b8fff  com.apple.SoftwareUpdate.framework (6 - 574.2) <5F447EBB-E877-3A78-A9B3-F6A966990755> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff8eb1a000 -     0x7fff8eb80fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8eb81000 -     0x7fff8eb81fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8eb82000 -     0x7fff8ecd5ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ecd6000 -     0x7fff8f124fff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8f16b000 -     0x7fff8f1d8fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8f1d9000 -     0x7fff8f1e3ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8f1e4000 -     0x7fff8f1ebfff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8f1ee000 -     0x7fff8f2dcfff  libJP2.dylib (1042.2) <DD2DE799-C053-3C6A-91EC-D637CBD6FF90> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f2e7000 -     0x7fff8f2edff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8f2f8000 -     0x7fff8f32cfff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff8f32d000 -     0x7fff8f617fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8fb1f000 -     0x7fff8fb21fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8fb22000 -     0x7fff8fb23ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8fb24000 -     0x7fff8fb25fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8fbdb000 -     0x7fff8fbe6ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8fbe7000 -     0x7fff8fbeaffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8fbeb000 -     0x7fff8fc0dfff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8fc0e000 -     0x7fff8fc97ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff8fc98000 -     0x7fff8fc98fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8fc99000 -     0x7fff8fc99fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8fc9a000 -     0x7fff8ff6affc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8ffe0000 -     0x7fff9000aff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff9000b000 -     0x7fff9014cfff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff90280000 -     0x7fff90283fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff90a4f000 -     0x7fff90a59ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff90a5a000 -     0x7fff90a84ff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib
        0x7fff90a85000 -     0x7fff90a8dffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90a8e000 -     0x7fff90a97ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90a98000 -     0x7fff90c7dfff  com.apple.CoreFoundation (6.9 - 855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90c7e000 -     0x7fff90c98fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
        0x7fff90c99000 -     0x7fff90c9afff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff90c9b000 -     0x7fff90c9cff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff90c9f000 -     0x7fff90ca5ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff90cb8000 -     0x7fff90cd4fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff90cde000 -     0x7fff90d2cff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
        0x7fff90d2d000 -     0x7fff90d44ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90d45000 -     0x7fff90d62ff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff90d63000 -     0x7fff90dacfff  com.apple.CoreMedia (1.0 - 1273.49) <D91EC90A-BFF1-300D-A353-68001705811C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff90dad000 -     0x7fff90dadfff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff90dae000 -     0x7fff90e01fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff90e02000 -     0x7fff90e02fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff90e05000 -     0x7fff90e19fff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff910ac000 -     0x7fff910c7ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff910c8000 -     0x7fff910f0ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff910f1000 -     0x7fff91a1068f  com.apple.CoreGraphics (1.600.0 - 599.21.1) <23BCDB0F-4E60-31BA-859C-820351D50111> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff91cbd000 -     0x7fff91ccdffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff91cce000 -     0x7fff91cd2fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff91cd3000 -     0x7fff91cd8fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff91cd9000 -     0x7fff91ce7fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff91ce8000 -     0x7fff91db1fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff91db2000 -     0x7fff91db9ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff91e1b000 -     0x7fff91e27ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff91e2e000 -     0x7fff91e32ff7  libGIF.dylib (1042.2) <0A9267FF-D93A-36DF-87B9-BA34C1166C0C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff91e33000 -     0x7fff91f69ffc  com.apple.WebKit (9537 - 9537.75.14) <98D7B16B-B2C8-3A4E-9AE9-7A8385ACFBA9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff91f6a000 -     0x7fff92117f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff92118000 -     0x7fff92416fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff92578000 -     0x7fff92579ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff9257a000 -     0x7fff9259efff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff9259f000 -     0x7fff925f8fff  libTIFF.dylib (1042.2) <1C80C3FD-639C-3781-8A30-265410DD444F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff9263b000 -     0x7fff926c4fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff926c5000 -     0x7fff926cbfff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff92833000 -     0x7fff9285cff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff9285d000 -     0x7fff9289bff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff9289c000 -     0x7fff92a54ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
        0x7fff92aab000 -     0x7fff92ad0ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff92ad1000 -     0x7fff92c01ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff92c02000 -     0x7fff92c07ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff92c08000 -     0x7fff92c10fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff92c11000 -     0x7fff92c2cfff  com.apple.DistributionKit (700 - 846) <E4562C9C-9367-3C8E-87C2-80C6C0C7B187> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff92c2d000 -     0x7fff92d33fff  com.apple.ImageIO.framework (3.3.0 - 1042) <DEA4FF1B-D340-32C3-977D-D249709C6031> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff92d39000 -     0x7fff92d3aff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff92d3b000 -     0x7fff92d87ffe  com.apple.CoreMediaIO (407.0 - 4561) <BC8222A6-516C-380C-AB7D-DE78B23574DC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff92dba000 -     0x7fff92e0cfff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff92f5c000 -     0x7fff930ccff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff930cd000 -     0x7fff93c43fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff93c44000 -     0x7fff93c45ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff93c46000 -     0x7fff93c5eff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff93c73000 -     0x7fff93efcfff  com.apple.CommerceKit (1.2.0 - 232.6.1) <FFC0E26C-1D4F-3682-91D7-ACFF4C837EEB> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff93efd000 -     0x7fff93f2cfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff93f2d000 -     0x7fff93fddff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff93fde000 -     0x7fff93fe1fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff93fea000 -     0x7fff94003ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff9400a000 -     0x7fff94016ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff94017000 -     0x7fff9425fff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff94273000 -     0x7fff942cbff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff942cc000 -     0x7fff942ccfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff942cd000 -     0x7fff942f1ff7  libJPEG.dylib (1042.2) <0AFE20D1-F24D-3548-A562-DB8FA7995655> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff942f2000 -     0x7fff94669ff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <DC1116A7-934C-37C1-9AB2-354DBA43EAD7> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff9466a000 -     0x7fff948cbfff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff948cc000 -     0x7fff948ccffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff948cd000 -     0x7fff948cdff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff948ce000 -     0x7fff948fffff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff94950000 -     0x7fff94951ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff94961000 -     0x7fff949affff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff949b0000 -     0x7fff94a1aff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff94a1b000 -     0x7fff94a24ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff94a25000 -     0x7fff94a28ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff94a7c000 -     0x7fff94a7fff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff94a80000 -     0x7fff94ab9ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff94d3b000 -     0x7fff94e1afff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff94e1b000 -     0x7fff94e28ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff94e40000 -     0x7fff94e6eff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff94e6f000 -     0x7fff94ed3fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff94ed4000 -     0x7fff94ed6ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff94ed7000 -     0x7fff94eefff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff94ef0000 -     0x7fff94efbfff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff94efc000 -     0x7fff94f06fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff94f07000 -     0x7fff94f14ff4  com.apple.Librarian (1.2 -

    Hi elifyilmaz,
    Welcome to the Support Communities!  The article below will help you troubleshoot the issue you are having with your recent iTunes installation:
    Troubleshooting iTunes installation on Mac OS X
    http://support.apple.com/kb/ht2311
    I hope this information helps ....
    - Judy

  • Oracle Grid root.sh is failing onFirstNode configuration failed at /u01/app/grid/11.2.0.4/crs/instal due to ora.oc4j start timeout

    We have a 4 node Rac, oracle root.sh is failing on the First Node. when I looked at the logs I found the oc4j is timeout to start on Node1 whereas it is able to start on all other nodes with in 2 mins. this is causing to fail root.sh. Can you please help me what is the issue.
    Oracle Rac Node 1 oc4j failed on Node1 due to timeout able to start on other node.
     oracle:]/u01/app/grid/11.2.0.4/bin > ./crsctl start res ora.oc4j -n node1
    CRS-2672: Attempting to start 'ora.oc4j' node1
    CRS-2674: Start of 'ora.oc4j' on 'node1' failed
    CRS-2679: Attempting to clean 'ora.oc4j' on node1
    CRS-2681: Clean of 'ora.oc4j' on 'node1' succeeded
    CRS-4000: Command Start failed, or completed with errors.  [oracle:]/u01/app/grid/11.2.0.4/bin > ./crsctl start res ora.oc4j -n node2
    CRS-2672: Attempting to start 'ora.oc4j' on 'node2'
    CRS-2676: Start of 'ora.oc4j' on 'node2' succeeded

    Please follow Metalink Note 1050908.1.
    This might help
    Cheers
    FJFranken

  • Why does InDesign successfully download and install but quit upon launch?

    I've successfully downloaded, installed and launched 4 CS6 apps, but the 5th, InDesign, quits unexpectedly upon launch.
    I'm running Mac OS 10.8.2. I'd originally migrated the apps from an older machine, but realized that wasn't working, so I deactivated the apps on the old machine, and uninstalled the apps on the new and reinstalled. All launch fine, except InDesign. I tried uninstalling and reinstalling again, but no luck. Thanks for any and all help!

    Thanks. I'd sent the report to Adobe, but I guess they don't send direct responses. Here is the crash info I believe you're asking for:
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
        __TEXT                 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.BIB                     0x00dd10fe 0xdce000 + 12542
    1   com.adobe.BIB                     0x00dd1148 0xdce000 + 12616
    2   com.adobe.BIB                     0x00dd13e3 0xdce000 + 13283
    3   com.adobe.BIB                     0x00dd1469 0xdce000 + 13417
    4   com.adobe.InDesign.PDF            0x162c1820 GetPlugIn + 1222048
    5   com.adobe.InDesign.PDF            0x162df5a6 GetPlugIn + 1344294
    6   libsystem_c.dylib                 0x90ac8ecb __cxa_finalize + 184
    7   libsystem_c.dylib                 0x90acbdc5 exit + 23
    8   com.adobe.InDesign                0x00001d5d start + 61

  • Windows Virtual PC and XP installation fails, with eror code: 80070002

    Windows Virtual PC and XP installation of: RefreshPkg.msu, fails, with eror code: 80070002
    I have tried to look around for at fix but with no luck so far, PLEASE HELP !
    Incl. CBS log with error:
    2014-02-21 16:30:10, Info                  CBS    Clearing HangDetect value
    2014-02-21 16:30:10, Info                  CBS    Saved last global progress. Current: 1, Limit: 1, ExecuteState: CbsExecuteStateFailed
    2014-02-21 16:30:10, Info                  CBS    Doqe: Unlocking driver updates, Count 3
    2014-02-21 16:30:10, Info                  CBS    WER: Generating failure report for package: Microsoft-Windows-VirtualPC-Package-TopLevel-MergedCab~31bf3856ad364e35~amd64~~7.1.7600.16393,
    status: 0x80070002, failure source: AI, start state: Staged, target state: Installed, client id: WindowsUpdateAgent
    2014-02-21 16:30:10, Info                  CBS    Failed to query DisableWerReporting flag.  Assuming not set... [HRESULT = 0x80070002 - ERROR_FILE_NOT_FOUND]
    2014-02-21 16:30:10, Info                  CBS    Failed to add %windir%\winsxs\pending.xml to WER report because it is missing.  Continuing without it...
    2014-02-21 16:30:10, Info                  CBS    Failed to add %windir%\winsxs\pending.xml.bad to WER report because it is missing.  Continuing without
    it...
    2014-02-21 16:30:11, Info                  CBS    SQM: Reporting package change completion for package: Microsoft-Windows-VirtualPC-Package-TopLevel-MergedCab~31bf3856ad364e35~amd64~~7.1.7600.16393,
    current: Staged, original: Staged, target: Installed, status: 0x80070002, failure source:
    AI, failure details: "Firewall Rule 80070002 40 Install (first install) Microsoft-Windows-VirtualPC-Application, Culture=neutral, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=amd64, versionScope=NonSxS ",
    client id: WindowsUpdateAgent, initiated offline: False, execution sequence: 917, first merged sequence: 917
    2014-02-21 16:30:11, Info                  CBS    SQM: Upload requested for report: PackageChangeEnd_Microsoft-Windows-VirtualPC-Package-TopLevel-MergedCab~31bf3856ad364e35~amd64~~7.1.7600.16393,
    session id: 142862, sample type: Standard
    2014-02-21 16:30:11, Info                  CBS    SQM: Ignoring upload request because the sample type is not enabled: Standard
    2014-02-21 16:30:11, Info                  CBS    Startup: Package: Microsoft-Windows-VirtualPC-Package-TopLevel-MergedCab~31bf3856ad364e35~amd64~~7.1.7600.16393
    completed startup processing, new state: Staged, original: Staged, targeted: Installed.  hr = 0x80070002
    2014-02-21 16:30:11, Info                  CBS    Startup: Package: Microsoft-Windows-VirtualPC-Package-MiniLP~31bf3856ad364e35~amd64~ar-SA~7.1.7600.16393 completed
    startup processing, new state: Staged, original: Staged, targeted: Installed.  hr = 0x800f0826
    2014-02-21 16:30:11, Info                  CBS    Startup: Package: Microsoft-Windows-VirtualPC-Package-MiniLP~31bf3856ad364e35~amd64~cs-CZ~7.1.760

    See ZDnet article Microsoft releases fix for Windows Update corruption errors found @
    http://www.zdnet.com/microsoft-releases-fix-for-windows-update-corruption-errors-7000026582/
    The Microsoft KB article is found @
    http://support.microsoft.com/kb/947821
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Application is downloaded from Application Catalog and then installation fails

    Hi,
    Application Catalog was working fine. We did some configuration changes on certificates, IIS and Client Settings today. I then noticed Application Catalog was not working installing applications. I tried to restore my old configuration. Now I can list applications
    on Application Catalog, I can send request and download application but installation fails. Strangely, I can install SAP package (not an application) on the same client but MS Office, Visio, Project applications can not be installed. What should I check? Thanks.
    Yavuz Selim Atmaca

    Thanks Jason,
    AppDiscovery.log says:
        Performing detection of app deployment type Microsoft Visio Professional 2013 - Windows Installer (*.msi file)(ScopeId_1822068D-B6FF-4675-BDDF-3C1DACEE4251/DeploymentType_2c5b1740-49ac-4a03-9280-13f13592575a, revision 1) for user.
    +++ MSI application not discovered [MSI Product Code: {90150000-0051-0000-0000-0000000FF1CE}, MSI Product version: ]
    +++ Did not detect app deployment type Microsoft Visio Professional 2013 - Windows Installer (*.msi file)(ScopeId_1822068D-B6FF-4675-BDDF-3C1DACEE4251/DeploymentType_2c5b1740-49ac-4a03-9280-13f13592575a, revision 1) for S-1-5-21-3053715753-1702837565-2100719752-7169.
    AppEnforce.log has some red marked errors and says:
    AdvertisePackage - MsiAdvertiseProduct Failed : 0x80070643
    AdvertisePackage failed (0x80070643).
    Lowright users might fail to install this application if it requires higher privileges
    Executing Command line: "C:\Windows\system32\msiexec.exe" /i "visproww.msi" /q with user context
    Working directory C:\Windows\ccmcache\1k
    Post install behavior is BasedOnExitCode
    Process 5716 terminated with exitcode: 1603
    Looking for exit code 1603 in exit codes table...
    Unmatched exit code (1603) is considered an execution failure.
    ++++++ App enforcement completed (5 seconds) for App DT "Microsoft Visio Professional 2013 - Windows Installer (*.msi file
    (The user account that I am logging computer and logging to Application Catalog has local admin privileges on the computer.)
    Yavuz Selim Atmaca

  • Finder quit unexpectedly, can't do anything backed up files, wiped drive, went to reinstall os and its getting 35% and saying installation failed restart and try again...what do I do?

    Turned on my computer one night its says finder quit unexpectedly so I ask around and general consensus is to fix it back up files and do a system restore which is no problem right? Wrong...I went in and tried just installing the os onto the HD, when that didn't work I went through the disk utility and tried cleaningand repairing the HD and retrying installation. When that failed I double checked backup then while booted from the disk I word the HDand attempted installation once more. Once again to no avail, so here I'm my files on an external my HD is empty and my OS won't install. Any assistance is very much appreciated.

    TarahCurrie Sep 10, 2014 3:48 PM
    Restore From Time Machine Backup
    Reinstall OS X
    Get Help Online
    Disk Utility
    MacBook Pro, Mac OS X (10.5.8)
    You are running 10.5.8
    Did you try booting off your Install disk holding the c key down.  From here you can get to the drop down menu just a few clicks in (you are not going to install) and run  the Disk Utility>Repair Disk.  See if it will let you do this.

Maybe you are looking for

  • How do I get back to default screen display after clicking View/Full Screen Display?

    After I click View/Full Screen on the Firefox menu bar, I lose the main FF Menu bar. When I hit the esc key, the screen remains locked in full screen view mode. Then I have to reboot my computer to get back to the default FF menu and display mode. Wh

  • Adobe Flash Player plugin: missing

    Adobe Flash Player plugin successfully installed (several times). But every page display: Click here to download plugin. MSW7, Firefox, notebook

  • ATG 10 CIM Confoguration Error

    Can anyone pls help. Getting the following error in CIM console. while configuring Publishing Server using ATG CIM. All the other servers are configured without any error. An unexpected error has occurred. Property #targetName can not occur more than

  • Security and Network Management: EAP-PEAP AUTHENTICATION

    Hi, does someone has the example of the implementation of EAP-PEAP authentication on a Cisco Aironet 1242 AP? I'm trying to make the configuration of one, but not succeeding. Jorge

  • Special function Output type failing

    Hi, I configured a special function output type and set the dispatch time to 4. The output includes a custom program that executes a function module to create reservation. Its created in Form entry. However its failing to output when I save my order.