Bootcamp disk0s4 after Yosemite update (fdisk and testdisk info)

Hello everyone and Loner T,
I've been following the threads where similar issues were reported. I downloaded Testdisk and GPT disk. And I've been trying to follow the directions as best I could on my own to provide you with the information needed for support. I have a 40 GB Windows 7 Bootcamp partition on a 200 GB Macbook Pro Early 2008 HDD. Before the Yosemite upgrade, I have successfully added another 10 GB to the windows partition by shrinking the Mac OS partition. After the upgrade, the bootcamp was not visible as a bootable partition to be selected after restart and displayed as disk0s4 in Disk Utility. In addition, the 10 GB are now displayed as unallocated space. I have since downgraded to Mavericks 10.9.5 since Yosemite keeps on lagging on my maschine. I hope you can help me too recover the data stuck under Windows. Thank you for your kind assistance.
1.     I have run the following commands in terminal with the specified output:
diskutil list
diskutil cs list
sudo gpt -vv -r show /dev/disk0
sudo fdisk /dev/disk0
Last login: Mon Dec 15 22:00:47 on console
Robert-4:~ RGl$ diskutil list
/dev/disk0
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *200.0 GB   disk0
   1:                        EFI EFI                     209.7 MB   disk0s1
   2:                  Apple_HFS Star Cluster            149.2 GB   disk0s2
   3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
   4:       Microsoft Basic Data                         40.0 GB    disk0s4
Robert-4:~ RGl$ diskutil cs list
No CoreStorage logical volume groups found
Robert-4:~ RGl$ sudo gpt -vv -r show /dev/disk0
Password:
gpt show: /dev/disk0: mediasize=200049647616; sectorsize=512; blocks=390721968
gpt show: /dev/disk0: Suspicious MBR at sector 0
gpt show: /dev/disk0: Pri GPT at sector 1
gpt show: /dev/disk0: Sec GPT at sector 390721967
      start       size  index  contents
          0          1         MBR
          1          1         Pri GPT header
          2         32         Pri GPT table
         34          6      
         40     409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
     409640  291386712      2  GPT part - 48465300-0000-11AA-AA11-00306543ECAC
  291796352    1269536      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
  293065888   19532640      
  312598528   78123008      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
  390721536        399      
  390721935         32         Sec GPT table
  390721967          1         Sec GPT header
Robert-4:~ RGl$ sudo fdisk /dev/disk0
Disk: /dev/disk0 geometry: 24321/255/63 [390721968 sectors]
Signature: 0xAA55
         Starting       Ending
#: id  cyl  hd sec -  cyl  hd sec [     start -       size]
1: EE    0   0   2 - 1023 254  63 [         1 -  312598527] <Unknown ID>
*2: 07 1023 254  63 - 1023 254  63 [ 312598528 -   78123008] HPFS/QNX/AUX
3: 00    0   0   0 -    0   0   0 [         0 -          0] unused   
4: 00    0   0   0 -    0   0   0 [         0 -          0] unused   
2.     I have followed the instructions in Bootcamp win8.1 autorepair fail after yosemite upgrade post to perform a deep search in Testdisk.
After analyzing the EFI GPT partition map, Testdisk returns:
Disk /dev/disk0 - 200 GB / 186 GiB - 390721968 sectors (RO)
Current partition structure:
     Partition                  Start        End    Size in sectors
1 P EFI System                    40     409639     409600 [EFI System Partition]
2 P Mac HFS                   409640  291796351  291386712 [Star Cluster]
3 P Mac Boot               291796352  293065887    1269536 [Recovery HD]
No FAT, NTFS, ext2, JFS, Reiser, cramfs or XFS marker
4 P MS Data                312598528  390721535   78123008 [BOOTCAMP]
QuickSearch returns:
Disk /dev/disk0 - 200 GB / 186 GiB - 390721968 sectors (RO)
The harddisk (200 GB / 186 GiB) seems too small! (< 250 GB / 232 GiB)
Check the harddisk size: HD jumpers settings, BIOS detection...
The following partitions can't be recovered:
     Partition               Start        End    Size in sectors
>  MS Data                390721535  488376311   97654777
   Mac HFS                390721924  391991459    1269536
Continue on MS Data returns:
Disk /dev/disk0 - 200 GB / 186 GiB - 390721968 sectors (RO)
     Partition               Start        End    Size in sectors
>P EFI System                    40     409639     409600 [EFI]
D Mac HFS                   409640  291796351  291386712
D MS Data                195411976  293066752   97654777
D Mac HFS                291796352  293065887    1269536
D MS Data                293066752  390721528   97654777
D MS Data                293066759  390721535   97654777
D Mac HFS                389452392  390721927    1269536

The first entry you posted is the correct one. Glad to see you found it. I have this table to make sure no existing partitions are lost.
GPT 3 Start
GPT 3 Size
GPT 3 End
NTFS Start
Sector Offset
NTFS Size
NTFS End
291796352
1269536
293065888
293066752
864
97654777
390721528
The 'Sector Offset' being positive is good. A negative value means you lose GPT#3. The NTFS size is roughly 48GB which is good.
You need to use the following steps. If you see any error messages during the following steps, please stop and post back here with the error message. The following steps have values from your Testdisk output (and you can verify) in Steps 7 and 8.
Rebuild GPT4 using start/end offsets
Sudo gdisk /dev/rdisk0
P  (print the full list of parts)
D  (delete)
4  (part 4)
N  (new part)
4   (part 4)
293066752 - Start offset in bytes  (start point for Bootcamp part)
+97654777 (Size offset as opposed to End offset)
0700     (Windows part type)
P           (print list of all parts just to see what changes will be made)
W         (Write the new GPT)
Y           (Yes! really write the new GPT)
  This will delete and re-write the GPT partition info for /dev/disk0s4. 
Rebuild MBR to match the new GPT information thus resetting the Hybrid MBR. Use defaults for other questions (like partition codes).
Sudo gdisk /dev/disk0
P  (Print list of parts)
R   (Recover)
H (chooses Hybrid)
Partitions numbers to be hybridized: 2 3 4
Y (Good for GRUB question)
N (part 2 boot flag)
N (part 3 boot flag)
Y  (part 4 boot flag make NTFS bootable partition)
W  (Write the new MBR)
Y    (Yes! write the new MBR)
Reboot
Test 1 - Does Bootcamp Volume show up in Finder?
Test 2 - Can you see files in Bootcamp Volume?
Test 3 - Can you select Bootcamp in System Preferences -> Startup Disk?
Test 4 - If Test 3 is successful, select Bootcamp and Click Restart
If you see a hanging underline cursor at the top left on a black screen, and it does not proceed further, you may need Windows Startup Repair or a tool called EasyBCD.

Similar Messages

  • Windows 7 partition (bootcamp) missing after Yosemite update

    Hi, I just recently updated my OS to Yosemite and now my windows partition is missing. I saw LonerT was helping others with a similar problem and was hoping if I could get some help as well since I am very bad with computers.
    As for the command outputs:
    Last login: Sun Jan  4 16:50:25 on console
    Jamess-MacBook-Pro:~ jamesrhee$ diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *500.3 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         350.0 GB   disk0s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
       4:       Microsoft Basic Data                         70.4 GB    disk0s4
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Macintosh HD           *349.6 GB   disk1
                                     Logical Volume on disk0s2
                                     A2DFE5A5-01F0-44A6-B5DB-E47A17372B23
                                     Unencrypted
    Jamess-MacBook-Pro:~ jamesrhee$ diskutil cs list
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group 8CD970FC-C3B9-49C1-8C04-AB6A87B90D43
        =========================================================
        Name:         Macintosh HD
        Status:       Online
        Size:         349999996928 B (350.0 GB)
        Free Space:   18882560 B (18.9 MB)
        |
        +-< Physical Volume 14E3361B-B8FC-4FE4-8112-DBA81BDBD154
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     349999996928 B (350.0 GB)
        |
        +-> Logical Volume Family 81BEBCE6-658C-4E20-93B8-4F89FC3591C9
            Encryption Status:       Unlocked
            Encryption Type:         None
            Conversion Status:       NoConversion
            Conversion Direction:    -none-
            Has Encrypted Extents:   No
            Fully Secure:            No
            Passphrase Required:     No
            |
            +-> Logical Volume A2DFE5A5-01F0-44A6-B5DB-E47A17372B23
                Disk:                  disk1
                Status:                Online
                Size (Total):          349628792832 B (349.6 GB)
                Conversion Progress:   -none-
                Revertible:            Yes (no decryption required)
                LV Name:               Macintosh HD
                Volume Name:           Macintosh HD
                Content Hint:          Apple_HFS
    Jamess-MacBook-Pro:~ jamesrhee$ sudo gpt -vv -r show /dev/disk0
    WARNING: Improper use of the sudo command could lead to data loss
    or the deletion of important system files. Please double-check your
    typing when using sudo. Type "man sudo" for more information.
    To proceed, enter your password, or type Ctrl-C to abort.
    Password:
    gpt show: /dev/disk0: mediasize=500277790720; sectorsize=512; blocks=977105060
    gpt show: /dev/disk0: Suspicious MBR at sector 0
    gpt show: /dev/disk0: Pri GPT at sector 1
    gpt show: /dev/disk0: Sec GPT at sector 977105059
          start       size  index  contents
              0          1         MBR
              1          1         Pri GPT header
              2         32         Pri GPT table
             34          6        
             40     409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
         409640  683593744      2  GPT part - 53746F72-6167-11AA-AA11-00306543ECAC
      684003384    1269536      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
      685272920  154298536        
      839571456  137533440      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
      977104896        131        
      977105027         32         Sec GPT table
      977105059          1         Sec GPT header
    Jamess-MacBook-Pro:~ jamesrhee$ sudo fdisk /dev/disk0
    Disk: /dev/disk0 geometry: 60821/255/63 [977105060 sectors]
    Signature: 0xAA55
             Starting       Ending
    #: id  cyl  hd sec -  cyl  hd sec [     start -       size]
    1: EE 1023 254  63 - 1023 254  63 [         1 -     409639] <Unknown ID>
    2: AC 1023 254  63 - 1023 254  63 [    409640 -  683593744] <Unknown ID>
    3: AB 1023 254  63 - 1023 254  63 [ 684003384 -    1269536] Darwin Boot
    4: 0C 1023 254  63 - 1023 254  63 [ 839571456 -  137533440] Win95 FAT32L
    Jamess-MacBook-Pro:~ jamesrhee$ sudo dd if=/dev/rdisk0s4 count=1 2>/dev/null | hexdump -C
    Password:
    00000000  22 46 69 6c 74 65 72 73  22 0a 7b 0a 09 22 66 61  |"Filters".{.."fa|
    00000010  76 6f 72 69 74 65 73 22  0a 09 7b 0a 09 7d 0a 09  |vorites"..{..}..|
    00000020  22 68 69 73 74 6f 72 79  22 0a 09 7b 0a 09 09 22  |"history"..{..."|
    00000030  31 22 0a 09 09 7b 0a 09  09 09 22 6e 61 6d 65 22  |1"...{...."name"|
    00000040  09 09 22 32 30 38 2e 37  38 2e 31 36 35 2e 32 31  |.."208.78.165.21|
    00000050  38 3a 32 37 30 35 39 22  0a 09 09 09 22 61 64 64  |8:27059"...."add|
    00000060  72 65 73 73 22 09 09 22  32 30 38 2e 37 38 2e 31  |ress".."208.78.1|
    00000070  36 35 2e 32 31 38 3a 32  37 30 35 39 22 0a 09 09  |65.218:27059"...|
    00000080  09 22 4c 61 73 74 50 6c  61 79 65 64 22 09 09 22  |."LastPlayed".."|
    00000090  31 33 39 30 35 33 36 35  34 32 22 0a 09 09 09 22  |1390536542"...."|
    000000a0  61 70 70 69 64 22 09 09  22 30 22 0a 09 09 09 22  |appid".."0"...."|
    000000b0  61 63 63 6f 75 6e 74 69  64 22 09 09 22 30 22 0a  |accountid".."0".|
    000000c0  09 09 7d 0a 09 09 22 32  22 0a 09 09 7b 0a 09 09  |..}..."2"...{...|
    000000d0  09 22 6e 61 6d 65 22 09  09 22 32 30 38 2e 37 38  |."name".."208.78|
    000000e0  2e 31 36 35 2e 32 31 36  3a 32 37 30 34 31 22 0a  |.165.216:27041".|
    000000f0  09 09 09 22 61 64 64 72  65 73 73 22 09 09 22 32  |..."address".."2|
    00000100  30 38 2e 37 38 2e 31 36  35 2e 32 31 36 3a 32 37  |08.78.165.216:27|
    00000110  30 34 31 22 0a 09 09 09  22 4c 61 73 74 50 6c 61  |041"...."LastPla|
    00000120  79 65 64 22 09 09 22 31  33 39 30 35 33 39 30 32  |yed".."139053902|
    00000130  34 22 0a 09 09 09 22 61  70 70 69 64 22 09 09 22  |4"...."appid".."|
    00000140  30 22 0a 09 09 09 22 61  63 63 6f 75 6e 74 69 64  |0"...."accountid|
    00000150  22 09 09 22 30 22 0a 09  09 7d 0a 09 09 22 33 22  |".."0"...}..."3"|
    00000160  0a 09 09 7b 0a 09 09 09  22 6e 61 6d 65 22 09 09  |...{...."name"..|
    00000170  22 32 30 38 2e 37 38 2e  31 36 35 2e 36 33 3a 32  |"208.78.165.63:2|
    00000180  37 30 32 32 22 0a 09 09  09 22 61 64 64 72 65 73  |7022"...."addres|
    00000190  73 22 09 09 22 32 30 38  2e 37 38 2e 31 36 35 2e  |s".."208.78.165.|
    000001a0  36 33 3a 32 37 30 32 32  22 0a 09 09 09 22 4c 61  |63:27022"...."La|
    000001b0  73 74 50 6c 61 79 65 64  22 09 09 22 31 33 39 30  |stPlayed".."1390|
    000001c0  37 32 35 37 30 36 22 0a  09 09 09 22 61 70 70 69  |725706"...."appi|
    000001d0  64 22 09 09 22 30 22 0a  09 09 09 22 61 63 63 6f  |d".."0"...."acco|
    000001e0  75 6e 74 69 64 22 09 09  22 30 22 0a 09 09 7d 0a  |untid".."0"...}.|
    000001f0  09 09 22 34 22 0a 09 09  7b 0a 09 09 09 22 6e 61  |.."4"...{...."na|
    00000200
    Jamess-MacBook-Pro:~ jamesrhee$
    I tried running deeper search via testdisk but I came across about 20 different MS data and thought I must've done something wrong. Thanks in advance!

    Twenty entries may seem overwhelming, but checking each one using P - List Files should be fairly quick and painless. Most partitions will be damaged anyway.

  • Usb port not working after yosemite update please help

    ive got an early 2011 macbook pro i5. and one of my usb stopped working. if i reset my  computer it works for a while and then stops again. all these after yosemite update please i really need help on this.. and also when ever im in the middle of something it keeps crashing and saying these things below after i booting back up. ive tried several things, didnt work, tried repairing disk permissions. please anybody with any idea help me!
    Anonymous UUID: 
    CCC4DCA9-48E9-4692-250B-488588FCC69E
    Sun Nov  9 17:58:17 2014
    *** Panic Report ***
    panic(cpu 0 caller 0xffffff802a005eb2): "Possible memory corruption: pmap_pv_remove(0xffffff803b8db998,0x7fff7360f000,0x6d654, 0x6d654d64, 0xffffff8031663cc4, 0xfffffeb38ae0f078): null pv_list!"@/SourceCache/xnu/xnu-2782.1.97/osfmk/i386/pmap_internal.h:768
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8031663b80 : 0xffffff8029f3a811
    0xffffff8031663c00 : 0xffffff802a005eb2
    0xffffff8031663cf0 : 0xffffff802a0065e5
    0xffffff8031663d50 : 0xffffff8029fb6b4a
    0xffffff8031663e60 : 0xffffff8029facd2c
    0xffffff8031663e90 : 0xffffff8029f5c747
    0xffffff8031663ed0 : 0xffffff802a3c45ff
    0xffffff8031663f40 : 0xffffff802a3c425c
    0xffffff8031663f50 : 0xffffff802a44dcb2
    0xffffff8031663fb0 : 0xffffff802a03ac46
    BSD process name corresponding to current thread: suhelperd
    Mac OS version:
    14A389
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:
    0x0000000029c00000
    Kernel text base: 0xffffff8029e00000
    __HIB  text base: 0xffffff8029d00000
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 7052072843826
    last loaded kext at 6483411185500: com.huawei.driver.HuaweiDataCardActivateDriver    1.0.12 (addr 0xffffff7fac6ba000, size 16384)
    last unloaded kext at 6604174049015: com.apple.driver.AppleUSBCDC    4.2.2b5 (addr 0xffffff7fac717000, size 16384)
    loaded kexts:
    com.huawei.driver.cdc_ncm    2.7.2f16
    com.huawei.driver.dc_net    1.0.2
    com.huawei.driver.cdc_acm    2.6.2f17
    com.huawei.driver.cdc_usb_bus    1.0.3
    com.huawei.driver.HuaweiDataCardDriver    4.25.45
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.driver.AudioAUUC    1.70
    com.apple.driver.AGPM    100.14.37
    com.apple.filesystems.autofs    3.0
    com.apple.iokit.IOBluetoothSerialManager    4.3.0f10
    com.apple.driver.AppleOSXWatchdog    1
    com.apple.driver.AppleMikeyHIDDriver    124
    com.apple.driver.AppleHDA    266.5
    com.apple.driver.AppleMikeyDriver    266.5
    com.apple.driver.AppleSMCLMU    2.0.4d1
    com.apple.driver.ApplePolicyControl    3.7.21
    com.apple.driver.AppleLPC    1.7.3
    com.apple.driver.AppleUpstreamUserClient    3.6.1
    com.apple.iokit.IOUserEthernet    1.0.1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleHWAccess    1
    com.apple.driver.AppleHV    1
    com.apple.driver.ACPI_SMC_PlatformPlugin    1.0.0
    com.apple.driver.AppleIntelHD3000Graphics    10.0.0
    com.apple.driver.AppleIntelSNBGraphicsFB    10.0.0
    com.apple.driver.AppleBacklight    170.4.12
    com.apple.driver.AppleMCCSControl    1.2.10
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport    4.3.0f10
    com.apple.driver.AppleSMCPDRC    1.0.0
    com.apple.driver.AppleThunderboltIP    2.0.2
    com.apple.driver.SMCMotionSensor    3.0.4d1
    com.apple.driver.AppleUSBTCButtons    240.2
    com.apple.driver.AppleUSBTCKeyboard    240.2
    com.apple.driver.AppleIRController    327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    35
    com.apple.iokit.SCSITaskUserClient    3.7.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.6.5
    com.apple.driver.AppleUSBHub    705.4.1
    com.apple.iokit.AppleBCM5701Ethernet    10.1.2b3
    com.apple.driver.AppleFWOHCI    5.5.2
    com.apple.driver.AppleSDXC    1.6.5
    com.apple.driver.AirPort.Brcm4331    800.20.24
    com.apple.driver.AppleAHCIPort    3.0.7
    com.apple.driver.AppleUSBEHCI    705.4.14
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleRTC    2.0
    com.apple.driver.AppleACPIButtons    3.1
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleSMBIOS    2.1
    com.apple.driver.AppleACPIEC    3.1
    com.apple.driver.AppleAPIC    1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient    218.0.0
    com.apple.nke.applicationfirewall    161
    com.apple.security.quarantine    3
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    218.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.7.0
    com.apple.iokit.IOUSBMassStorageClass    3.7.0
    com.apple.AppleGraphicsDeviceControl    3.7.21
    com.apple.kext.triggers    1.0
    com.apple.iokit.IOSerialFamily    11
    com.apple.driver.DspFuncLib    266.5
    com.apple.kext.OSvKernDSPLib    1.15
    com.apple.iokit.IOAudioFamily    200.6
    com.apple.vecLib.kext    1.2.0
    com.apple.driver.AppleHDAController    266.5
    com.apple.iokit.IOHDAFamily    266.5
    com.apple.iokit.IOFireWireIP    2.2.6
    com.apple.driver.AppleSMBusPCI    1.0.12d1
    com.apple.iokit.IOSurface    97
    com.apple.driver.IOPlatformPluginLegacy    1.0.0
    com.apple.driver.AppleGraphicsControl    3.7.21
    com.apple.driver.AppleBacklightExpert    1.1.0
    com.apple.iokit.IONDRVSupport    2.4.1
    com.apple.driver.AppleSMBusController    1.0.13d1
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport    4.3.0f10
    com.apple.iokit.IOBluetoothFamily    4.3.0f10
    com.apple.driver.IOPlatformPluginFamily    5.8.0d49
    com.apple.iokit.IOUSBUserClient    705.4.0
    com.apple.driver.AppleSMC    3.1.9
    com.apple.driver.AppleUSBMultitouch    245.2
    com.apple.iokit.IOUSBHIDDriver    705.4.0
    com.apple.driver.AppleUSBMergeNub    705.4.0
    com.apple.driver.AppleUSBComposite    705.4.9
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.7.0
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOAHCISerialATAPI    2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.7.0
    com.apple.driver.AppleThunderboltNHI    3.1.7
    com.apple.iokit.IOThunderboltFamily    4.2.1
    com.apple.iokit.IOEthernetAVBController    1.0.3b3
    com.apple.iokit.IOFireWireFamily    4.5.6
    com.apple.iokit.IO80211Family    700.52
    com.apple.driver.mDNSOffloadUserClient    1.0.1b8
    com.apple.iokit.IONetworkingFamily    3.2
    com.apple.iokit.IOAHCIFamily    2.7.0
    com.apple.iokit.IOUSBFamily    705.4.14
    com.apple.driver.AppleEFINVRAM    2.0
    com.apple.driver.AppleEFIRuntime    2.0
    com.apple.iokit.IOHIDFamily    2.0.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    300.0
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.AppleKeyStore    2
    com.apple.driver.AppleMobileFileIntegrity    1.0.5
    com.apple.driver.AppleCredentialManager    1.0
    com.apple.driver.DiskImages    389.1
    com.apple.iokit.IOStorageFamily    2.0
    com.apple.iokit.IOReportFamily    31
    com.apple.driver.AppleFDEKeyStore    28.30
    com.apple.driver.AppleACPIPlatform    3.1
    com.apple.iokit.IOPCIFamily    2.9
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    com.apple.kec.Libm    1
    com.apple.kec.pthread    1
    Model: MacBookPro8,1, BootROM MBP81.0047.B04, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f96
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.24)
    Bluetooth: Version 4.3.0f10 14890, 3 services, 19 devices, 2 incoming serial ports
    Serial ATA Device: ST9320325ASG, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: Hub
    USB Device: HUAWEI Mobile
    USB Device: IR Receiver
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, 20080d.0

    I have the same problem when I updated to OS X 10.10 I lost both my USB ports as far as they will not recognize anything that I plug into them.  The power part of the USB seams to work since it will recharge my Striiv Touch but nothing shows up when you connect anything to the ports.
    I have tried a number of things from rebooting, trying other usb devices that work on other systems with no problems but will not work on my Macbook Pro.
    Any Help out there?
    Hardware Information: ℹ️
    MacBook Pro (Retina, 15-inch, Late 2013) (Verified)
    MacBook Pro - model: MacBookPro11,3
    1 2.3 GHz Intel Core i7 CPU: 4-core
    16 GB RAM Not upgradeable
    BANK 0/DIMM0
    8 GB DDR3 1600 MHz ok
    BANK 1/DIMM0
    8 GB DDR3 1600 MHz ok
    Bluetooth: Good - Handoff/Airdrop2 supported
    Wireless:  en0: 802.11 a/b/g/n/ac
    System Software: ℹ️
    OS X 10.10.1 (14B25) - Uptime: 1:43:41
    USB Information: ℹ️
    Apple Internal Memory Card Reader
    Apple Inc. BRCM20702 Hub
    Apple Inc. Bluetooth USB Host Controller
    Apple Inc. Apple Internal Keyboard / Trackpad

  • Macbook pro - iPhoto keep prompting to update after Yosemite update. Error message when trying to update -This update is not available for this Apple ID either because it was bought by a different user or the item was cancelled

    macbook pro - iPhoto keep prompting to update after Yosemite update. Error message when trying to update -This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled. 

    I only have 1 apple ID and the same was used to set up this early 2011 macbook pro and iPhoto app. I don't want to loose out on any photos. I tried logging out of app store and back in but no luck. PLEEAASEE HELPP!!!
    This problem has been reported by quite a few forum members, who skipped the update to iPhoto 9.5.1 while running Mavericks. In that case try to purchase iPhoto again instead of updating.
    After making your backup try the following:
    Uninstall iPhoto by deleting it from the applications folder, but do not empty the Trash.
    Launch the App Store, click the "Store" menu, and sign in with your AppleID.
    Open the main page of the App Store and search for iPhoto.
    If iPhoto is listed as "Free", click the "Free" button to buy it with your current AppleID.
    If it is not showing as free, there is no help but contacting the App Store Support, as Niel pointed out: http://www.apple.com/support/mac/app-store/contact/

  • My early 2008 Macbook Pro is suffering from black screen after Yosemite update

    My early 2008 Macbook Pro is suffering from black screen after Yosemite update. It ran beta 5 great but failed on restart after beta 6 install. There is no cursor but I can hear the HDD spooling up. I have tried booting in safe mode, PRAM reset and SMC reset but nothing works. After the first 5 days of every now and then trying to start it, it started fine. I used the machine all day with no problems, it had rolled back the install and was back on beta 5. I decided to try the update again, the same thing happened and it has stayed black for over a week now. It wont work with a monitor either. Help!

    Hello Adam,
    I would try instead of installing the beta software, to install the official build of OS X Yosemite from the Mac App Store to see if that gets you passed the no video issue when updating the beta software. 
    How to install OS X Yosemite on your Mac
    http://support.apple.com/en-us/HT6412
    Regards,
    -Norm G.  

  • Mac mail CRASHING after Yosemite update 10.10.3

    Are you KIDDING APPLE?
    mac mail CRASHING after Yosemite update 10.10.3
    The program is completely unusable and crashed after update.
    Computer is less than 1 month old and can't run a basic mail program
    I REALLY HOPE APPLE FIXES THIS BUG ASAP    
    Without fix I will return the computer

    True,
    I also have AppleCare, but unfortunately, after calling them they can't determine what is creating the problem either.
    Other forums have shown other troubleshooting steps which didn't solve my problem, but may help others:
    Mail app keeps crashing after Yosemite update
    Mail crashing after upgrading to 10.10.3
    Lets cross our fingers that 10.10.4 will be out shortly to fix this

  • After yosemite update I'm unable to type in word

    After Yosemite update I am now unable to type in any of my word documents. Any suggestions?

    Sorry for hijacking your post -
    I have had an issue with my Lumia 820 too after installing the Amber update.
    The phone once updated displayed " restarting " and from that point on has failed to go beyond the screen that displays the Nokia logo.
    Spoken to Customer care guys and tried hard resetting the device but to no avail.
    Unfortunately for me i haven't made a back up of the data i have on the phone and I have extremely important business contacts and other relevant info that I can't afford to lose, hope I am provided with a solution. 

  • My iphone 6 wont turn on after i updated it and it doesn't work to restore it in itunes. what should i do?

    my iphone 6 wont turn on after i updated it and it doesn't work to restore it in itunes. what should i do?

    Hello ole-gunnar,
    Thanks for using Apple Support Communities.
    If your iPhone is unresponsive after updating your iOS version, then I'd like you to please follow the troubleshooting below.
    If you see a black screen
    You might need to charge your device before it can turn on. Plug in your device and let it charge for at least 10 minutes (20 minutes for iPad), then try turning it on. 
    You should see a battery icon while your device is charging. If you continue to see a black screen, reset your device. If your device doesn't respond when you press buttons
    Your device might not return to the Home screen when you press the Home button, wake from sleep when you press the Sleep/Wake button, slide to unlock or power off, or it might appear frozen. Try these steps:
    Restart your device.
    If it still doesn't respond, or if it doesn't turn back on, reset your device.
    If your device gets stuck during startup
    When starting up, you might see the Apple logo or a red or blue screen for a long time, or your device might restart again. Try these steps:
    Make sure that you have iTunes 12 or later on your computer.
    Put your device in recovery mode.
    When you get the option to restore or update, select Update. This will reinstall iOS without erasing your data.
    Get more help
    If you still need help after trying the steps above, contact Apple Support. 
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    Cheers,
    Alex H.

  • Why would you allow firefox to update computer web-browsers if you have an idea that it will no longer work after the update? And why would you not include instructions for, how to fix the problem? Help Please! Can I go back to the old one?

    Why would you allow firefox to update computer web-browsers if you have an idea that it will no longer work after the update? And why would you not include instructions for, how to fix the problem? Help Please! Can I go back to the old one?
    Ron Bell
    [email protected]

    Mozilla, like many other software companies, thoroughly test their software before releasing it to the public and I'm sure that no problem you are having is intentional.
    I do not work for Mozilla but I do have experience of releasing software for public usage.
    Firefox has no way of knowing what other software is already on your computer and with millions of combinations it isn't always possible to test for every scenario.
    You can go back to the old version of Firefox but that won't always solve your problem.
    The web site below tells you how:
    https://support.mozilla.com/en-US/kb/Installing%20a%20previous%20version%20of%20Firefox

  • Lacie Rugged external drive will not show up after Yosemite update.

    Lacie Rugged external drive will not show up after Yosemite update.  It show up in disc utility I can't access it.

    I have the exact same issue. Have you had any luck with a solution?

  • After Yosemite upgrade, youtube and vimeo videos not playing

    After Yosemite upgrade, youtube and vimeo videos not playing

    Hey not sure this will help, but I had the same problem, got errors, no video's worked.
    I restarted hitting the OPTION key and chose the server drive to boot from, then repaired disk, then repaired permissions and restarted.
    Youtube then worked afterwards. Hope it works for you!

  • Bootcamp disk0s4 gone after Yosemite update

    Hey everybody. Got a question for Loner_T.
    I'm in the same boat, changed my BootCamp partition size and ended up not being able to boot it anymore since upgrading to Yosemite.
    I'd like to know if I should go with the testdisk, GDT fdisk, gdisk solution or not. I'm stuck at actually identifying the correct start/end of my BC partition and I'm really looking to redo the whole partition and reinstall Windows 7. Btw, if I recover the partition, will I not have the same problem when I upgrade from Yosemite to the next OS X iteration?
    Here's what I have so far:
    MacBook-Pro-de-Michel:~ MB$ diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *256.1 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         150.5 GB   disk0s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
       4:       Microsoft Basic Data                         75.0 GB    disk0s4
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *500.1 GB   disk1
       1:                        EFI EFI                     209.7 MB   disk1s1
       2:                  Apple_HFS Macintosh HD            499.2 GB   disk1s2
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                 Apple_HFSX Intel SSD              *150.2 GB   disk2
                                     Logical Volume on disk0s2
                                     61D35AC9-DB5E-4E37-8540-F570E91DD3E2
                                     Unencrypted
    MacBook-Pro-de-Michel:~ MB$ diskutil cs list
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group C666E211-D5E4-4B60-9D48-1C40DC8F333D
        =========================================================
        Name:         Intel SSD
        Status:       Online
        Size:         150549417984 B (150.5 GB)
        Free Space:   18993152 B (19.0 MB)
        |
        +-< Physical Volume E7EF901D-7E54-49D8-8E26-334A69FF9FFC
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     150549417984 B (150.5 GB)
        |
        +-> Logical Volume Family 179EF81A-41F0-47D9-A480-256644BBEE18
            Encryption Status:       Unlocked
            Encryption Type:         None
            Conversion Status:       NoConversion
            Conversion Direction:    -none-
            Has Encrypted Extents:   No
            Fully Secure:            No
            Passphrase Required:     No
            |
            +-> Logical Volume 61D35AC9-DB5E-4E37-8540-F570E91DD3E2
                Disk:                  disk2
                Status:                Online
                Size (Total):          150178103296 B (150.2 GB)
                Conversion Progress:   -none-
                Revertible:            Yes (no decryption required)
                LV Name:               Intel SSD
                Volume Name:           Intel SSD
                Content Hint:          Apple_HFSX
    MacBook-Pro-de-Michel:~ MB$ sudo fdisk /dev/devdisk0
    Password:
    fdisk: /dev/devdisk0: No such file or directory
    MacBook-Pro-de-Michel:~ MB$ sudo fdisk /dev/disk0
    Disk: /dev/disk0 geometry: 31130/255/63 [500118192 sectors]
    Signature: 0xAA55
             Starting       Ending
    #: id  cyl  hd sec -  cyl  hd sec [     start -       size]
    1: EE 1023 254  63 - 1023 254  63 [         1 -     409639] <Unknown ID>
    2: AC 1023 254  63 - 1023 254  63 [    409640 -  294041832] <Unknown ID>
    3: AB 1023 254  63 - 1023 254  63 [ 294451472 -    1269536] Darwin Boot
    *4: 07 1023 254  63 - 1023 254  63 [ 353634304 -  146483200] HPFS/QNX/AUX
    MacBook-Pro-de-Michel:~ MB$ sudo gpt -vv -r show /dev/disk0
    gpt show: /dev/disk0: mediasize=256060514304; sectorsize=512; blocks=500118192
    gpt show: /dev/disk0: Suspicious MBR at sector 0
    gpt show: /dev/disk0: Pri GPT at sector 1
    gpt show: /dev/disk0: Sec GPT at sector 500118191
          start       size  index  contents
              0          1         MBR
              1          1         Pri GPT header
              2         32         Pri GPT table
             34          6        
             40     409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
         409640  294041832      2  GPT part - 53746F72-6167-11AA-AA11-00306543ECAC
      294451472    1269536      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
      295721008   57913296        
      353634304  146483200      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
      500117504        655        
      500118159         32         Sec GPT table
      500118191          1         Sec GPT header
    MacBook-Pro-de-Michel:~ MB$ sudo dd if=/dev/rdisk0s4 count=1 2>/dev/null | hexdump -C
    00000000  a0 b5 69 e9 6b e0 af 8f  71 55 59 c9 e2 4f ab 1b  |..i.k...qUY..O..|
    00000010  3e cc 0c f9 66 6b cc ca  ca 9a 99 2f 17 15 35 8b  |>...fk...../..5.|
    00000020  fe cd 9f 0e f4 e1 a5 85  90 59 8a f8 59 a3 55 2b  |.........Y..Y.U+|
    00000030  27 ff bb 2d 83 85 55 8a  8b e4 a2 13 52 85 f1 e2  |'..-..U.....R...|
    00000040  5e d0 de 47 73 12 94 94  b0 cd a5 ba a3 6e 22 88  |^..Gs........n".|
    00000050  1f 80 86 7c d5 ca 45 22  67 ff 0f c2 5b e3 ed ea  |...|..E"g...[...|
    00000060  cc 3b 3a b0 42 85 30 a6  fb ed 49 c6 2b 60 ef 70  |.;:.B.0...I.+`.p|
    00000070  ee f5 8f c3 49 09 7b 9a  6a 0b 7f ac 02 ed 4b d0  |....I.{.j.....K.|
    00000080  15 b0 4c d8 dd 64 d9 f6  26 11 c4 17 10 a3 5c 33  |..L..d..&.....\3|
    00000090  69 fc 8b 79 af cf 1c 72  04 f4 88 85 4a 54 2a 0c  |i..y...r....JT*.|
    000000a0  bc f6 cf eb 6b ea 89 76  44 ff d5 75 ab 64 f1 d6  |....k..vD..u.d..|
    000000b0  01 89 37 4c 2e 02 fb 87  52 7b 8d a5 44 60 db d2  |..7L....R{..D`..|
    000000c0  6e 72 f7 18 93 e8 9f 91  b2 42 4c 1a 37 b7 b5 e4  |nr.......BL.7...|
    000000d0  db a1 3d 20 3e 40 2c 3b  ca 5d 1a af 09 fc 23 b3  |..= >@,;.]....#.|
    000000e0  a8 1a e4 af 90 a1 1f c5  7c 8b a5 67 3f 4e 97 02  |........|..g?N..|
    000000f0  fa 3b 3a 94 24 71 dc be  87 1c 5f 8e 02 d8 17 7c  |.;:.$q...._....||
    00000100  1c 42 85 e2 b8 e8 37 64  eb 67 41 3a 7b 80 85 96  |.B....7d.gA:{...|
    00000110  65 62 fe 6c 45 96 65 fd  76 60 df 60 bf 10 1f 12  |eb.lE.e.v`.`....|
    00000120  71 9b 16 2e 71 bc 15 d4  4f d0 8b 7f ec ac 17 f1  |q...q...O.......|
    00000130  bb 0f fe 3c ed b3 cc 88  f5 cd 3c f6 95 76 a2 88  |...<......<..v..|
    00000140  bf f8 c8 e2 00 c3 13 df  cd bf 4c 59 81 dd bc 21  |..........LY...!|
    00000150  fc 3f ff ff 2f 4c 99 2c  2e 0e 8d f2 45 e6 92 6e  |.?../L.,....E..n|
    00000160  6e 01 fa 7f b1 18 2b 13  c4 d8 7b d6 64 fe 7e 08  |n.....+...{.d.~.|
    00000170  e8 cf cb 2a d4 1d 71 9c  a4 60 b2 46 e9 ae d3 ef  |...*..q..`.F....|
    00000180  63 45 97 f8 d2 8b 7f 28  fc 6e a4 de 25 f2 97 03  |cE.....(.n..%...|
    00000190  7f fb 04 cd ca a5 7a a4  4a 80 6f 16 76 60 32 41  |......z.J.o.v`2A|
    000001a0  c5 a4 bf cd 7d 34 77 11  2a a5 10 cd ba 99 28 88  |....}4w.*.....(.|
    000001b0  75 6f 88 fa f9 0b 28 3f  54 a4 8a 92 c4 5e 5e e0  |uo....(?T....^^.|
    000001c0  92 cf a3 00 ff fc 72 dc  63 40 c6 65 3d 12 bd 96  |[email protected]=...|
    000001d0  ce ad 06 f6 06 aa ee 9f  62 34 f3 e9 57 2a 53 d4  |........b4..W*S.|
    000001e0  46 a4 0b b1 ee 6e 31 8a  67 a0 39 55 57 41 f9 ab  |F....n1.g.9UWA..|
    000001f0  65 15 65 42 fe 91 9b 9c  4e 64 c5 3d a2 7e ad b6  |e.eB....Nd.=.~..|
    00000200
    The highlighted partition is the one where my Windows 7 files are:
    Now, I've read some threads that you posted on, but I'm still unsure what I should input in GDT fdisk and gdisk.
    Thanks.

    Here are the results:
    GPT rebuild:
    MacBook-Pro-de-Michel:~ MB$ sudo gdisk /dev/rdisk0
    Password:
    GPT fdisk (gdisk) version 0.8.10
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Partition table scan:
      MBR: hybrid
      BSD: not present
      APM: not present
      GPT: present
    Found valid GPT with hybrid MBR; using GPT.
    Command (? for help): p
    Disk /dev/rdisk0: 500118192 sectors, 238.5 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 336F890F-1005-4D63-8C79-22402F354952
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 500118158
    Partitions will be aligned on 8-sector boundaries
    Total free space is 57913957 sectors (27.6 GiB)
    Number Start (sector)    End (sector)  Size       Code  Name
       1   40                409639        200.0 MiB  EF00  EFI System Partition
       2   409640            294451471     140.2 GiB  AF05  Intel SSD
       3   294451472         295721007     619.9 MiB  AB00  Recovery HD
       4   353634304         500117503     69.8 GiB   0700  BOOTCAMP
    Command (? for help): d
    Partition number (1-4): 4
    Command (? for help): n
    Partition number (4-128, default 4): 4
    First sector (34-500118158, default = 295721008) or {+-}size{KMGTP}: 295723008
    Last sector (295723008-500118158, default = 500118158) or {+-}size{KMGTP}: +204394489
    Current type is 'Apple HFS/HFS+'
    Hex code or GUID (L to show codes, Enter = AF00): 0700
    Changed type of partition to 'Microsoft basic data'
    Command (? for help): p
    Disk /dev/rdisk0: 500118192 sectors, 238.5 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 336F890F-1005-4D63-8C79-22402F354952
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 500118158
    Partitions will be aligned on 8-sector boundaries
    Total free space is 2668 sectors (1.3 MiB)
    Number  Start (sector)    End (sector)  Size       Code  Name
       1    40                409639        200.0 MiB  EF00  EFI System Partition
       2    409640            294451471     140.2 GiB  AF05  Intel SSD
       3    294451472         295721007     619.9 MiB  AB00  Recovery HD
       4    295723008         500117496     97.5 GiB   0700  Microsoft basic data
    Command (? for help): w
    Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
    PARTITIONS!!
    Do you want to proceed? (Y/N): y
    OK; writing new GUID partition table (GPT) to /dev/rdisk0.
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Warning: The kernel may continue to use old or deleted partitions.
    You should reboot or remove the drive.
    The operation has completed successfully.
    And the MBR rebuid:
    MacBook-Pro-de-Michel:~ MB$ sudo gdisk /dev/disk0
    GPT fdisk (gdisk) version 0.8.10
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Partition table scan:
      MBR: hybrid
      BSD: not present
      APM: not present
      GPT: present
    Found valid GPT with hybrid MBR; using GPT.
    Command (? for help): p
    Disk /dev/disk0: 500118192 sectors, 238.5 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 336F890F-1005-4D63-8C79-22402F354952
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 500118158
    Partitions will be aligned on 8-sector boundaries
    Total free space is 2668 sectors (1.3 MiB)
    Number  Start (sector)    End (sector)  Size Code  Name
       1 40          409639   200.0 MiB EF00  EFI System Partition
       2 409640       294451471   140.2 GiB AF05  Intel SSD
       3 294451472       295721007   619.9 MiB AB00  Recovery HD
       4 295723008       500117496   97.5 GiB 0700  Microsoft basic data
    Command (? for help): r
    Recovery/transformation command (? for help): h
    WARNING! Hybrid MBRs are flaky and dangerous! If you decide not to use one,
    just hit the Enter key at the below prompt and your MBR partition table will
    be untouched.
    Type from one to three GPT partition numbers, separated by spaces, to be
    added to the hybrid MBR, in sequence: 2 3 4
    Place EFI GPT (0xEE) partition first in MBR (good for GRUB)? (Y/N): y
    Creating entry for GPT partition #2 (MBR partition #2)
    Enter an MBR hex code (default AF): AF05
    Set the bootable flag? (Y/N): n
    Creating entry for GPT partition #3 (MBR partition #3)
    Enter an MBR hex code (default AB): AB00
    Set the bootable flag? (Y/N): n
    Creating entry for GPT partition #4 (MBR partition #4)
    Enter an MBR hex code (default 07): 0700
    Set the bootable flag? (Y/N): y
    Recovery/transformation command (? for help): w
    Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
    PARTITIONS!!
    Do you want to proceed? (Y/N): y
    OK; writing new GUID partition table (GPT) to /dev/disk0.
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Warning: The kernel may continue to use old or deleted partitions.
    You should reboot or remove the drive.
    The operation has completed successfully.
    Test 1 - Does Bootcamp Volume show up in Finder?
    Test 2 - Can you see files in Bootcamp Volume?
    Test 3 - Can you select Bootcamp in System Preferences -> Startup Disk?
    Test 4 - If Test 3 is successful, select Bootcamp and Click Restart
    If you see a hanging underline cursor at the top left on a black screen, and it does not proceed further, you may need Windows Startup Repair or a tool called EasyBCD.
    Test 1 through 4 GTG. The only difference is that I used the option-key to boot in Windows 7.
    As expected, I get the black screen with blinking cursor.
    Next step is to execute the Startup repair. Any guidance to offer? Or software to use? My superdrive is being replaced with the original HDD in the bay. I could reinstall the superdrive to use a CD/DVD, but would rather use a USB stick if possible.
    Thx so far, I'm hopeful now!

  • After Yosemite update crashes the printer function on Office and Adobe

    After the update to Yosemite then every time I try to print (even print to pdf) from Word, Excel, Power Point and Adobe Acrobat Pro crashes the program completely and have to restart. (Adobe Acrobat Pro also now can't save all types of annotations now). When I try to print from Adobe Photoshop CS5 it doesn't crash but just state "Could not print "...file..." because of a disk error". However Adobe Photoshlp CS6 (installed after the Yosemite update) had no problem printing. I can also print without problems from Safari, Firefox and Preview.
    I have tried to reinstall the printers, as well as getting the computer to repair premissions (which took a while).
    Do anyone know what is wrong?
    I am considering reinstalling the whole computer as a solution if no-one has a easier idea.
    Thanks

    Thanks John for wanting to look into it. Here it is in the full length:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_CRASH (SIGTRAP)
    Date/Time: 2014-11-26 11:20:48 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.4.6.141106
    Crashed Module Name: merp
    Crashed Module Version: 2.2.4.141106
    Crashed Module Offset: 0x00004422
    Blame Module Name: SharpMX2700NCO
    Blame Module Version: 1.4
    Blame Module Offset: 0x0000535c
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    Thread 0 crashed:
    #  1  0x0279c422 in _MerpCreateSession + 0x000015CF (merp + 0x00004422)
    #  2  0x9902903b in __sigtramp + 0x0000002B (libsystem_platform.dylib + 0x0000503b)
    #  3  0xffffffff in  ( + 0x00000000)
    #  4  0x8fee5008 in  ( + 0x00000000)
    #  5  0x8fef5e5e in  ( + 0x00000000)
    #  6  0x138cb35c in -[JpCoSharpPrintPdeMx2700nCO getPPDSettingsFromPrintSettingsOnTiger] + 0x0000005F (SharpMX2700NCO + 0x0000535c)
    #  7  0x138c8ae6 in -[JpCoSharpPrintPdeMx2700nCO restoreValuesAndReturnError:] + 0x00000079 (SharpMX2700NCO + 0x00002ae6)
    #  8  0x138c896a in -[JpCoSharpPrintPdeMx2700nCO shouldPrint] + 0x00000061 (SharpMX2700NCO + 0x0000296a)
    #  9  0x97b465f0 in -[NSObject performSelector:] + 0x0000003E (libobjc.A.dylib + 0x000085f0)
    # 10  0x1469e509 in  (PrintCocoaUI + 0x00003509)
    # 11  0x146a8830 in  (PrintCocoaUI + 0x0000d830)
    # 12  0x146b9db7 in CarbonWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 0x000005FF (PrintCocoaUI + 0x0001edb7)
    # 13  0x146b9edc in CarbonWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 0x00000724 (PrintCocoaUI + 0x0001eedc)
    # 14  0x97b46853 in -[NSObject performSelector:withObject:] + 0x00000046 (libobjc.A.dylib + 0x00008853)
    # 15  0x980cf1a8 in ___36-[NSApplication sendAction:to:from:]_block_invoke + 0x00000033 (AppKit + 0x0039a1a8)
    # 16  0x949c3c03 in __os_activity_initiate + 0x00000059 (libsystem_trace.dylib + 0x00000c03)
    # 17  0x97f42851 in -[NSApplication sendAction:to:from:] + 0x00000224 (AppKit + 0x0020d851)
    # 18  0x97f425ed in -[NSControl sendAction:to:] + 0x00000066 (AppKit + 0x0020d5ed)
    # 19  0x9813bb16 in ___26-[NSCell _sendActionFrom:]_block_invoke + 0x000000B0 (AppKit + 0x00406b16)
    # 20  0x949c3c03 in __os_activity_initiate + 0x00000059 (libsystem_trace.dylib + 0x00000c03)
    # 21  0x97f8e735 in -[NSCell _sendActionFrom:] + 0x000000A1 (AppKit + 0x00259735)
    # 22  0x9811f6ca in -[NSButtonCell _sendActionFrom:] + 0x00000037 (AppKit + 0x003ea6ca)
    # 23  0x9813d436 in ___48-[NSCell trackMouse:inRect:ofView:untilMouseUp:]_block_invoke963 + 0x0000002B (AppKit + 0x00408436)
    # 24  0x949c3c03 in __os_activity_initiate + 0x00000059 (libsystem_trace.dylib + 0x00000c03)
    # 25  0x97faaab7 in -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 0x00000AF6 (AppKit + 0x00275ab7)
    # 26  0x97fa9bb4 in -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 0x0000020C (AppKit + 0x00274bb4)
    # 27  0x97fa90fb in -[NSControl mouseDown:] + 0x000002FA (AppKit + 0x002740fb)
    # 28  0x9853dc24 in -[NSWindow _reallySendEvent:] + 0x00003041 (AppKit + 0x00808c24)
    # 29  0x97f26fb9 in -[NSWindow sendEvent:] + 0x00000199 (AppKit + 0x001f1fb9)
    # 30  0x9858e6ae in _carbonAppWindowMouseHandler + 0x0000010A (AppKit + 0x008596ae)
    # 31  0x9858d458 in _carbonAppWindowHandler + 0x000001A9 (AppKit + 0x00858458)
    # 32  0x95e1d5d4 in _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 0x00000024 (HIToolbox + 0x001be5d4)
    # 33  0x95c67501 in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x000008F3 (HIToolbox + 0x00008501)
    # 34  0x95c664dc in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x00000192 (HIToolbox + 0x000074dc)
    # 35  0x95c79d25 in _SendEventToEventTarget + 0x00000058 (HIToolbox + 0x0001ad25)
    # 36  0x95c9a7f4 in ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 0x00000B02 (HIToolbox + 0x0003b7f4)
    # 37  0x95c678cb in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x00000CBD (HIToolbox + 0x000088cb)
    # 38  0x95c664dc in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x00000192 (HIToolbox + 0x000074dc)
    # 39  0x95c79d25 in _SendEventToEventTarget + 0x00000058 (HIToolbox + 0x0001ad25)
    # 40  0x95e1ccb5 in _ToolboxEventDispatcher + 0x00000052 (HIToolbox + 0x001bdcb5)
    # 41  0x95e1cbf6 in _HLTBEventDispatcher + 0x00000011 (HIToolbox + 0x001bdbf6)
    # 42  0x95e1ddd7 in __RunAppModalLoop + 0x000000B0 (HIToolbox + 0x001bedd7)
    # 43  0x95e1dce8 in _RunAppModalLoopForWindow + 0x00000078 (HIToolbox + 0x001bece8)
    # 44  0x9808a959 in -[NSApplication _realDoModalLoop:peek:] + 0x0000021B (AppKit + 0x00355959)
    # 45  0x9808a72f in -[NSApplication _doModalLoop:peek:] + 0x000000CF (AppKit + 0x0035572f)
    # 46  0x98088fe5 in -[NSApplication runModalForWindow:] + 0x000000F6 (AppKit + 0x00353fe5)
    # 47  0x146c14b0 in CarbonWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 0x00007CF8 (PrintCocoaUI + 0x000264b0)
    # 48  0x146adfc6 in _PMPrivatePrintDialog + 0x0000012E (PrintCocoaUI + 0x00012fc6)
    # 49  0x908a4939 in  (Print + 0x00001939)
    # 50  0x908a4f9a in  (Print + 0x00001f9a)
    # 51  0x908a4eeb in  (Print + 0x00001eeb)
    # 52  0x02cea305 in _MsoAfxPMSessionPrintDialog + 0x00000032 (MicrosoftOffice + 0x002d1305)
    # 53  0x009185d1 in _wdCommandDispatch + 0x00345851 (Microsoft Word + 0x008be5d1)
    # 54  0x011da564 in _wdGetApplicationObject + 0x007FC964 (Microsoft Word + 0x01180564)
    # 55  0x011e266b in _wdGetApplicationObject + 0x00804A6B (Microsoft Word + 0x0118866b)
    # 56  0x002eee7d in __mh_execute_header + 0x00294E7D (Microsoft Word + 0x00294e7d)
    # 57  0x00353bf1 in __mh_execute_header + 0x002F9BF1 (Microsoft Word + 0x002f9bf1)
    # 58  0x003538ca in __mh_execute_header + 0x002F98CA (Microsoft Word + 0x002f98ca)
    # 59  0x02a83f69 in _MsoOSTypeDefaultMailClient + 0x00000088 (MicrosoftOffice + 0x0006af69)
    # 60  0x022eaf6c in _MsoFClonePxCore + 0x00000242 (MicrosoftComponentPlugin + 0x0006cf6c)
    # 61  0x022eaefb in _MsoFClonePxCore + 0x000001D1 (MicrosoftComponentPlugin + 0x0006cefb)
    # 62  0x022eaec5 in _MsoFClonePxCore + 0x0000019B (MicrosoftComponentPlugin + 0x0006cec5)
    # 63  0x0615d681 in MenuLib::TMenuItem::CallSelectionProcs(unsigned long) + 0x0000045D (MicrosoftMenuLibrary + 0x0001a681)
    # 64  0x0615d2af in MenuLib::TMenuItem::CallSelectionProcs(unsigned long) + 0x0000008B (MicrosoftMenuLibrary + 0x0001a2af)
    # 65  0x06160001 in MenuLib::Terminate() + 0x00001A23 (MicrosoftMenuLibrary + 0x0001d001)
    # 66  0x061495b1 in MenuLib::CreateAppMenu(MenuLib::MMLMenuType) + 0x00000F9B (MicrosoftMenuLibrary + 0x000065b1)
    # 67  0x95e1d5d4 in _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 0x00000024 (HIToolbox + 0x001be5d4)
    # 68  0x95c67501 in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x000008F3 (HIToolbox + 0x00008501)
    # 69  0x95c664dc in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x00000192 (HIToolbox + 0x000074dc)
    # 70  0x95c79d25 in _SendEventToEventTarget + 0x00000058 (HIToolbox + 0x0001ad25)
    # 71  0x95e1d452 in SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 0x000001BF (HIToolbox + 0x001be452)
    # 72  0x95cde0cc in _SendMenuCommandWithContextAndModifiers + 0x00000048 (HIToolbox + 0x0007f0cc)
    # 73  0x95cde074 in _SendMenuItemSelectedEvent + 0x000000CF (HIToolbox + 0x0007f074)
    # 74  0x95e886dd in __HIMenuSendItemSelectedEventToTarget + 0x0000008D (HIToolbox + 0x002296dd)
    # 75  0x95e88643 in __HIMenuSendItemSelectedEvent + 0x0000003F (HIToolbox + 0x00229643)
    # 76  0x95e20d9c in HIMenuBar::HandleKeyboardEvent(OpaqueEventRef*) + 0x0000012E (HIToolbox + 0x001c1d9c)
    # 77  0x95e20bfb in HIMenuBar::HandleEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 0x00000031 (HIToolbox + 0x001c1bfb)
    # 78  0x95c67b5f in HIObject::EventHook(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 0x000000A3 (HIToolbox + 0x00008b5f)
    # 79  0x95e1d5d4 in _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 0x00000024 (HIToolbox + 0x001be5d4)
    # 80  0x95c67501 in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x000008F3 (HIToolbox + 0x00008501)
    # 81  0x95c664dc in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x00000192 (HIToolbox + 0x000074dc)
    # 82  0x95c66343 in _SendEventToEventTargetWithOptions + 0x0000005F (HIToolbox + 0x00007343)
    # 83  0x95c9a1d4 in ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 0x000004E2 (HIToolbox + 0x0003b1d4)
    # 84  0x95c678cb in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x00000CBD (HIToolbox + 0x000088cb)
    # 85  0x95c664dc in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x00000192 (HIToolbox + 0x000074dc)
    # 86  0x95c79d25 in _SendEventToEventTarget + 0x00000058 (HIToolbox + 0x0001ad25)
    # 87  0x022c6105 in _McpRunApplicationEventLoop + 0x00002E29 (MicrosoftComponentPlugin + 0x00048105)
    # 88  0x022c3770 in _McpRunApplicationEventLoop + 0x00000494 (MicrosoftComponentPlugin + 0x00045770)
    # 89  0x0005dbe1 in __mh_execute_header + 0x00003BE1 (Microsoft Word + 0x00003be1)
    # 90  0x04d7dc85 in __WlmMain + 0x00000061 (WLMKernel + 0x00004c85)
    # 91  0x0005cf55 in __mh_execute_header + 0x00002F55 (Microsoft Word + 0x00002f55)
    # 92  0x0005cf06 in __mh_execute_header + 0x00002F06 (Microsoft Word + 0x00002f06)
    X86 Thread State:
    eax: 0x0279c418  ebx: 0x0279c325  ecx: 0xbffa167c  edx:0x95c29bb6
    edi: 0x027a6bc8  esi: 0x00000007  ebp: 0xbffa16f8  esp:0xbffa16b0
      ss: 0x00000023  eip: 0x0279c422   cs: 0x0000001b   ds:0x00000023
      es: 0x00000023   fs: 0x00000000   gs: 0x0000000f  eflags:0x00010206
    Thread 1:
    #  1  0x95c29e6e in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x00019e6e)
    #  2  0x9c2cdeea in _start_wqthread + 0x0000001E (libsystem_pthread.dylib + 0x00000eea)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x00000019  ecx: 0xb0080f9c  edx:0x95c29e6e
    edi: 0x00010000  esi: 0x9c2cffd0  ebp: 0xb0080fc8  esp:0xb0080f9c
      ss: 0x00000023  eip: 0x95c29e6e   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 2:
    #  1  0x95c2a8d2 in _kevent64 + 0x0000000A (libsystem_kernel.dylib + 0x0001a8d2)
    #  2  0x962ed3a2 in __dispatch_mgr_init + 0x00000000 (libdispatch.dylib + 0x000043a2)
    X86 Thread State:
    eax: 0x00000171  ebx: 0x00000001  ecx: 0xb009267c  edx:0x95c2a8d2
    edi: 0x9630e0a0  esi: 0x962ed658  ebp: 0xb00926f8  esp:0xb009267c
      ss: 0x00000023  eip: 0x95c2a8d2   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000286
    Thread 3:
    #  1  0x95c29e6e in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x00019e6e)
    #  2  0x9c2cdeea in _start_wqthread + 0x0000001E (libsystem_pthread.dylib + 0x00000eea)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x00000015  ecx: 0xb0196f9c  edx:0x95c29e6e
    edi: 0x00010000  esi: 0x9c2cffd0  ebp: 0xb0196fc8  esp:0xb0196f9c
      ss: 0x00000023  eip: 0x95c29e6e   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 4:
    #  1  0x95c29e6e in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x00019e6e)
    #  2  0x9c2cdeea in _start_wqthread + 0x0000001E (libsystem_pthread.dylib + 0x00000eea)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x00000015  ecx: 0xb0218f9c  edx:0x95c29e6e
    edi: 0x00010000  esi: 0x9c2cffd0  ebp: 0xb0218fc8  esp:0xb0218f9c
      ss: 0x00000023  eip: 0x95c29e6e   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 5:
    #  1  0x95c298fa in ___semwait_signal + 0x0000000A (libsystem_kernel.dylib + 0x000198fa)
    #  2  0x966fba1f in _sleep$UNIX2003 + 0x0000002A (libsystem_c.dylib + 0x0007ea1f)
    #  3  0x0279b992 in _MerpCreateSession + 0x00000B3F (merp + 0x00003992)
    #  4  0x0279b05e in _MerpCreateSession + 0x0000020B (merp + 0x0000305e)
    #  5  0x0279afe9 in _MerpCreateSession + 0x00000196 (merp + 0x00002fe9)
    #  6  0x0279c586 in _MerpCreateSession + 0x00001733 (merp + 0x00004586)
    #  7  0x9c2cfecf in __pthread_body + 0x0000008A (libsystem_pthread.dylib + 0x00002ecf)
    #  8  0x9c2cfe45 in __pthread_body + 0x00000000 (libsystem_pthread.dylib + 0x00002e45)
    #  9  0x9c2cdf0e in _thread_start + 0x00000022 (libsystem_pthread.dylib + 0x00000f0e)
    X86 Thread State:
    eax: 0x0000014e  ebx: 0xb029aad8  ecx: 0xb029aa6c  edx:0x95c298fa
    edi: 0x966fbb4a  esi: 0x00000000  ebp: 0xb029aab8  esp:0xb029aa6c
      ss: 0x00000023  eip: 0x95c298fa   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 6:
    #  1  0x95c298fa in ___semwait_signal + 0x0000000A (libsystem_kernel.dylib + 0x000198fa)
    #  2  0x98d40e71 in +[NSThread sleepForTimeInterval:] + 0x000000A9 (Foundation + 0x0009ce71)
    #  3  0x0228a4d8 in _RegisterWindowForMouseMoveEvents + 0x000003F3 (MicrosoftComponentPlugin + 0x0000c4d8)
    #  4  0x98d13dcf in -[NSThread main] + 0x0000002D (Foundation + 0x0006fdcf)
    #  5  0x98d13d21 in ___NSThread__main__ + 0x00000602 (Foundation + 0x0006fd21)
    #  6  0x9c2cfecf in __pthread_body + 0x0000008A (libsystem_pthread.dylib + 0x00002ecf)
    #  7  0x9c2cfe45 in __pthread_body + 0x00000000 (libsystem_pthread.dylib + 0x00002e45)
    #  8  0x9c2cdf0e in _thread_start + 0x00000022 (libsystem_pthread.dylib + 0x00000f0e)
    X86 Thread State:
    eax: 0x0000014e  ebx: 0xb039e4e8  ecx: 0xb039e44c  edx:0x95c298fa
    edi: 0x966fbb4a  esi: 0x00000000  ebp: 0xb039e498  esp:0xb039e44c
      ss: 0x00000023  eip: 0x95c298fa   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 7:
    #  1  0x95c29e6e in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x00019e6e)
    #  2  0x9c2cdeea in _start_wqthread + 0x0000001E (libsystem_pthread.dylib + 0x00000eea)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x00000019  ecx: 0xb0114f9c  edx:0x95c29e6e
    edi: 0x00000000  esi: 0x9c2cffd0  ebp: 0xb0114fc8  esp:0xb0114f9c
      ss: 0x00000023  eip: 0x95c29e6e   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 8:
    #  1  0x95c29e6e in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x00019e6e)
    #  2  0x9c2cdeea in _start_wqthread + 0x0000001E (libsystem_pthread.dylib + 0x00000eea)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x00000015  ecx: 0xb031cf9c  edx:0x95c29e6e
    edi: 0x00010000  esi: 0x9c2cffd0  ebp: 0xb031cfc8  esp:0xb031cf9c
      ss: 0x00000023  eip: 0x95c29e6e   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 9:
    #  1  0x95c29516 in ___psynch_cvwait + 0x0000000A (libsystem_kernel.dylib + 0x00019516)
    #  2  0x9c2d41d1 in _pthread_cond_wait$UNIX2003 + 0x00000047 (libsystem_pthread.dylib + 0x000071d1)
    #  3  0x999197ef in CVDisplayLink::runIOThread() + 0x0000039F (CoreVideo + 0x000027ef)
    #  4  0x99919439 in startIOThread(void*) + 0x0000009F (CoreVideo + 0x00002439)
    #  5  0x9c2cfecf in __pthread_body + 0x0000008A (libsystem_pthread.dylib + 0x00002ecf)
    #  6  0x9c2cfe45 in __pthread_body + 0x00000000 (libsystem_pthread.dylib + 0x00002e45)
    #  7  0x9c2cdf0e in _thread_start + 0x00000022 (libsystem_pthread.dylib + 0x00000f0e)
    X86 Thread State:
    eax: 0x00000131  ebx: 0x7ade9aac  ecx: 0xb0420c8c  edx:0x95c29516
    edi: 0x00000100  esi: 0x00000001  ebp: 0xb0420d18  esp:0xb0420c8c
      ss: 0x00000023  eip: 0x95c29516   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Loaded modules:
    0: Microsoft Word (14.4.6.141106 Reg=en Loc=0x0409: /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/Microsoft Word
    1: mbukernel (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbukernel.framework/Versions/14/mbukernel
    2: MicrosoftSetupUI (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Versions/14/MicrosoftSetupUI
    3: MicrosoftComponentPlugin (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPl ugin
    4: Netlib (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Netlib.framework/Versions/14/Netlib
    5: MicrosoftOLE (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOLE.framework/Versions/14/MicrosoftOLE
    6: MicrosoftOLEAutomation (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOLEAutomation.framework/Versions/14/MicrosoftOLEAutomation
    7: merp (2.2.4.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/merp.framework/Versions/14/merp
    8: MSXML (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MSXML.framework/Versions/14/MSXML
    9: MicrosoftOffice (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
    10: OfficeArt (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/OfficeArt.framework/Versions/14/OfficeArt
    11: MicrosoftOleo (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOleo.framework/Versions/14/MicrosoftOleo
    12: MicrosoftMathFont (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftMathFont.framework/Versions/14/MicrosoftMathFont
    13: MicrosoftChartPlugin (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftChartPlugin.framework/Versions/14/MicrosoftChartPlugin
    14: MicrosoftPTLS (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftPTLS.framework/Versions/14/MicrosoftPTLS
    15: MsgrLibClient (8.0.0.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MsgrLibClient.framework/Versions/14/MsgrLibClient
    16: MBURibbon (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MBURibbon.framework/Versions/14/MBURibbon
    17: MViewLib (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MViewLib.framework/Versions/14/MViewLib
    18: WLMUser (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WLMUser.framework/Versions/14/WLMUser
    19: WLMGraphicsDevice (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WLMGraphicsDevice.framework/Versions/14/WLMGraphicsDevice
    20: WLMKernel (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WLMKernel.framework/Versions/14/WLMKernel
    21: Gfx (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Gfx.framework/Versions/14/Gfx
    22: SmartArt (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/SmartArt.framework/Versions/14/SmartArt
    23: MicrosoftCloudServices (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftCloudServices.framework/Versions/14/MicrosoftCloudServices
    24: mbustrings (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbustrings.framework/Versions/14/mbustrings
    25: mbulocale (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbulocale.framework/Versions/14/mbulocale
    26: wlmstrings (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/wlmstrings.framework/Versions/14/wlmstrings
    27: CocoaUI (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/CocoaUI.framework/Versions/14/CocoaUI
    28: MicrosoftOfficeDRM (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOfficeDRM.framework/Versions/14/MicrosoftOfficeDRM
    29: ThreadPool (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/ThreadPool.framework/Versions/14/ThreadPool
    30: cl_kernels: cl_kernels
    31: MicrosoftMenuLibrary (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftMenuLibrary.framework/Versions/14/MicrosoftMenuLibrary
    32: StdUrlMoniker (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/StdUrlMoniker.framework/Versions/14/StdUrlMoniker
    33: cl_kernels: cl_kernels
    34: Uniscribe (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Uniscribe.framework/Versions/14/Uniscribe
    35: mbuinstrument (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbuinstrument.framework/Versions/14/mbuinstrument
    36: Quartz (1.5 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    37: AddressBook (1499 Reg=English Loc=0x0000: /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    38: WinCrypto (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WinCrypto.framework/Versions/14/WinCrypto
    39: mbupgx.dylib: /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
    40: molc (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/molc.framework/Versions/14/molc
    41: IntlPreferences (150.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    42: vCard (1499 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    43: QuickLookUI (675 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    44: ApplePushService (4.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    45: ContactsData (1499 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    46: ContactsFoundation (1499 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    47: DirectoryService (187 Reg=English Loc=0x0000: /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    48: SecurityInterface (55058 Reg=English Loc=0x0000: /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    49: PhoneNumbers (105 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    50: QuickLook (675 Reg=English Loc=0x0000: /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    51: QuartzComposer (325 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    52: PDFKit (3.0 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    53: QuartzFilters (1.10.0 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    54: ImageKit (838 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    55: AppleSystemInfo (3.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    56: CorePDF (4 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    57: DisplayServices (372.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    58: ImageCaptureCore (6.0 Reg=English Loc=0x0000: /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    59: mbunamedstrings (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbunamedstrings.framework/Versions/14/mbunamedstrings
    60: CocoaTooltipParser (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/CocoaTooltipParser.framework/Versions/14/CocoaTooltipParser
    61: DocEx (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/DocEx.framework/Versions/14/DocEx
    62: WinHttp (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WinHttp.framework/Versions/14/WinHttp
    63: MicrosoftCredui (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftCredui.framework/Versions/14/MicrosoftCredui
    64: MicrosoftDDCS (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftDDCS.framework/Versions/14/MicrosoftDDCS
    65: WinAPIUI (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WinAPIUI.framework/Versions/14/WinAPIUI
    66: MicrosoftCSI (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftCSI.framework/Versions/14/MicrosoftCSI
    67: MetEx (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MetEx.framework/Versions/14/MetEx
    68: MicrosoftFBA (14.4.6.141106 Reg=(null) Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftFBA.framework/Versions/14/MicrosoftFBA
    69: XPG (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/XPG.framework/Versions/14/XPG
    70: MicrosoftFS (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftFS.framework/Versions/14/MicrosoftFS
    71: MicrosoftWlmFile (14.4.6.141106 Reg=en-US Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftWlmFile.framework/Versions/14/MicrosoftWlmFile
    72: MicrosoftWebServices (14.4.6.141106 Reg=en-US Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftWebServices.framework/Versions/14/MicrosoftWebServices
    73: Oimg (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Oimg.framework/Versions/14/Oimg
    74: CloudDocs: /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
    75: unorm8_bgra.dylib: /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    76: ATSHI.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    77: cl_kernels: cl_kernels
    78: SharpMX2700NWM (1.4 Reg=English Loc=0x0000: /Library/Printers/Sharp/PDEs/SharpMX2700NWM.plugin/Contents/MacOS/SharpMX2700NW M
    79: libTraditionalChineseConverter.dylib: /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    80: libSimplifiedChineseConverter.dylib: /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    81: ScriptingBridge (66 Reg=English Loc=0x0000: /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    82: libFontRegistryUI.dylib: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    83: SharpMX2700NCO (1.4 Reg=English Loc=0x0000: /Library/Printers/Sharp/PDEs/SharpMX2700NCO.plugin/Contents/MacOS/SharpMX2700NC O
    84: SharpMX2700NTP (1.3 Reg=English Loc=0x0000: /Library/Printers/Sharp/PDEs/SharpMX2700NTP.plugin/Contents/MacOS/SharpMX2700NT P
    85: Speller (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/Shared Applications/Proofing Tools/English Speller.proofingtool/Contents/MacOS/Speller
    86: MicrosoftProofing (14.4.6.141106 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftProofing.framework/Versions/14/MicrosoftProofing
    87: EnglishGrammar (14.4.6.141106 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Shared Applications/Proofing Tools/EnglishGrammar.proofingtool/Contents/MacOS/EnglishGrammar
    88: PrintCocoaUI (503 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    89: SharpMX2700NJC (1.6 Reg=English Loc=0x0000: /Library/Printers/Sharp/PDEs/SharpMX2700NJC.plugin/Contents/MacOS/SharpMX2700NJ C
    90: SharpMX2700NSP (1.3 Reg=English Loc=0x0000: /Library/Printers/Sharp/PDEs/SharpMX2700NSP.plugin/Contents/MacOS/SharpMX2700NS P
    91: SharpMX2700NDC (1.3 Reg=English Loc=0x0000: /Library/Printers/Sharp/PDEs/SharpMX2700NDC.plugin/Contents/MacOS/SharpMX2700ND C
    92: WordPDE (1.0 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/PlugIns/WordPDE.plugin/Contents/MacOS/WordPDE
    93: libGPUSupport.dylib: /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    94: PrintingPrivate (148 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
    95: PrintingCocoaPDEs (503 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
    96: unorm8_argb.dylib: /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
    97: libPDFRIP.A.dylib: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libPDFRI P.A.dylib
    98: libCMaps.A.dylib: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCMaps .A.dylib
    99: AppleIntelHD3000GraphicsGLDriver (10.0.0 Reg=English Loc=0x0000: /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
    100: CoreData (526 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    101: libxml2.2.dylib: /usr/lib/libxml2.2.dylib
    102: CommonPanels (96 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    103: libsystem_asl.dylib: /usr/lib/system/libsystem_asl.dylib
    104: libCRFSuite.dylib: /usr/lib/libCRFSuite.dylib
    105: GLRendererFloat (11.0.7 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    106: CoreDaemon (1.3 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    107: CoreLocation (1615.21 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    108: CrashReporterSupport (629 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    109: DesktopServicesPriv (1.9 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    110: libPng.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    111: libvMisc.dylib (vecLib 3.10 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    112: libcorecrypto.dylib: /usr/lib/system/libcorecrypto.dylib
    113: SpeechSynthesis (5.2.6 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    114: AVFoundation (889.10 Reg=English Loc=0x0000: /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    115: libCGXType.A.dylib: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    116: libremovefile.dylib: /usr/lib/system/libremovefile.dylib
    117: Print (265 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    118: CoreWiFi (300.4 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    119: libcurl.4.dylib: /usr/lib/libcurl.4.dylib
    120: libGFXShared.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    121: liblangid.dylib: /usr/lib/liblangid.dylib
    122: libBLAS.dylib (vecLib 3.10 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    123: libGL.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    124: Heimdal (2.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    125: libsystem_secinit.dylib: /usr/lib/system/libsystem_secinit.dylib
    126: libCVMSPluginSupport.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    127: libz.1.dylib: /usr/lib/libz.1.dylib
    128: Symbolication (56045 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    129: libkeymgr.dylib: /usr/lib/system/libkeymgr.dylib
    130: libMatch.1.dylib: /usr/lib/libMatch.1.dylib
    131: libquarantine.dylib: /usr/lib/system/libquarantine.dylib
    132: QuickTime (2890 Reg=English Loc=0x0000: /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    133: libGLU.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    134: PerformanceAnalysis (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    135: CoreFoundation (1151.16 Reg=en_US Loc=0x0000: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    136: libCoreVMClient.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    137: libCoreStorage.dylib: /usr/lib/libCoreStorage.dylib
    138: ApplicationServices (48 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    139: IOSurface (97 Reg=English Loc=0x0000: /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    140: libTrueTypeScaler.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    141: MediaKit (757 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    142: libsystem_configuration.dylib: /usr/lib/system/libsystem_configuration.dylib
    143: ColorSync (4.9.0 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    144: WebCore (10600.1.25.2 Reg=English Loc=0x0000: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    145: AudioUnit (1.12 Reg=English Loc=0x0000: /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    146: MediaToolbox (1562.19 Reg=English Loc=0x0000: /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    147: HTMLRendering (1.1.4 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    148: ServiceManagement (1 Reg=English Loc=0x0000: /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    149: Backup (1.6.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    150: libbz2.1.0.dylib: /usr/lib/libbz2.1.0.dylib
    151: SecCodeWrapper (238 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    152: ImageCapture (9.0 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    153: OpenScripting: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    154: Security (57031.1.35 Reg=English Loc=0x0000: /System/Library/Frameworks/Security.framework/Versions/A/Security
    155: AppContainer (238 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    156: IOBluetooth (4.3.1f2 Reg=English Loc=0x0000: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    157: EFILogin (2 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    158: IOKit: /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    159: DiskArbitration (2.6 Reg=English Loc=0x0000: /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    160: AppleJPEG (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    161: libcldcpuengine.dylib: /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    162: AGL (AGL-3.3.0 Reg=English Loc=0x0000: /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    163: libLinearAlgebra.dylib (vecLib 3.10 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    164: GenerationalStorage (209.11 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    165: libcache.dylib: /usr/lib/system/libcache.dylib
    166: SystemConfiguration (1.14 Reg=English Loc=0x0000: /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    167: AppleSRP (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    168: libCGCMS.A.dylib: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    169: liblzma.5.dylib: /usr/lib/liblzma.5.dylib
    170: libutil.dylib: /usr/lib/libutil.dylib
    171: AirPlaySupport (215.10 Reg=en Loc=0x0000: /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    172: libsystem_dnssd.dylib: /usr/lib/system/libsystem_dnssd.dylib
    173: libGIF.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    174: FSEvents (1210 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    175: DiskImages (389.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    176: vImage (8.0 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    177: libsasl2.2.dylib: /usr/lib/libsasl2.2.dylib
    178: libGLProgrammability.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    179: libLAPACK.dylib (vecLib 3.10 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    180: OpenCL (2.4.2 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    181: OSServices (640.3 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    182: libsystem_coretls.dylib: /usr/lib/system/libsystem_coretls.dylib
    183: ProtectedCloudStorage (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    184: libsystem_coreservices.dylib: /usr/lib/system/libsystem_coreservices.dylib
    185: MediaAccessibility (61 Reg=English Loc=0x0000: /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    186: LDAP (194.5 Reg=English Loc=0x0000: /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    187: libiconv.2.dylib: /usr/lib/libiconv.2.dylib
    188: libRIP.A.dylib: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    189: libextension.dylib: /usr/lib/libextension.dylib
    190: CoreText: /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    191: libJP2.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    192: CommonAuth (2.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    193: libsystem_trace.dylib: /usr/lib/system/libsystem_trace.dylib
    194: NavigationServices (215.1 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    195: libunc.dylib: /usr/lib/system/libunc.dylib
    196: libvDSP.dylib (vecLib 3.10 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    197: LanguageModeling (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    198: liblaunch.dylib: /usr/lib/system/liblaunch.dylib
    199: RawCamera (761 Reg=English Loc=0x0000: /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    200: libsystem_m.dylib: /usr/lib/system/libsystem_m.dylib
    201: DiscRecording (9000.4.1 Reg=English Loc=0x0000: /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    202: CarbonCore (1108.1 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    203: libffi.dylib: /usr/lib/libffi.dylib
    204: libsystem_kernel.dylib: /usr/lib/system/libsystem_kernel.dylib
    205: TrustEvaluationAgent (25 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    206: libsandbox.1.dylib: /usr/lib/libsandbox.1.dylib
    207: HIToolbox: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    208: libGLImage.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    209: Apple80211 (1001.57.4 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    210: libsystem_network.dylib: /usr/lib/system/libsystem_network.dylib
    211: UIFoundation (1 Reg=en Loc=0x0000: /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    212: ChunkingLibrary (163.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    213: CoreMedia (1562.19 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    214: libsystem_networkextension.dylib: /usr/lib/system/libsystem_networkextension.dylib
    215: libdispatch.dylib: /usr/lib/system/libdispatch.dylib
    216: libarchive.2.dylib: /usr/lib/libarchive.2.dylib
    217: CoreAUC (211.0.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    218: IconServices (47.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    219: Carbon (157 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    220: libsystem_c.dylib: /usr/lib/system/libsystem_c.dylib
    221: SpeechRecognitionCore (2.0.32 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
    222: libxpc.dylib: /usr/lib/system/libxpc.dylib
    223: XPCService (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    224: QTKit (2890 Reg=English Loc=0x0000: /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    225: SecurityFoundation (55126 Reg=English Loc=0x0000: /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    226: MultitouchSupport (260.30 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    227: TCC (1 Reg=en Loc=0x0000: /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    228: libc++.1.dylib: /usr/lib/libc++.1.dylib
    229: libcompiler_rt.dylib: /usr/lib/system/libcompiler_rt.dylib
    230: libunwind.dylib: /usr/lib/system/libunwind.dylib
    231: GLEngine (11.0.7 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
    232: libcups.2.dylib: /usr/lib/libcups.2.dylib
    233: libsystem_sandbox.dylib: /usr/lib/system/libsystem_sandbox.dylib
    234: libcmph.dylib: /usr/lib/libcmph.dylib
    235: Sharing (328.3 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    236: AppleVA (5.0.31 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    237: NetFS (4.0 Reg=English Loc=0x0000: /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    238: libsystem_info.dylib: /usr/lib/system/libsystem_info.dylib
    239: QD: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    240: libsystem_malloc.dylib: /usr/lib/system/libsystem_malloc.dylib
    241: FindMyDevice (1 Reg=en Loc=0x0000: /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    242: GeoServices (982.4.10 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    243: PrintCore (451 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    244: CoreMediaIO (4749 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    245: CoreBluetooth (1 Reg=en Loc=0x0000: /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    246: libFontParser.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    247: WebKit (10600.1.25 Reg=English Loc=0x0000: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    248: CFOpenDirectory (187 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    249: libauto.dylib: /usr/lib/libauto.dylib
    250: libSystem.B.dylib: /usr/lib/libSystem.B.dylib
    251: RemoteViewServices (99 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    252: CoreGraphics: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    253: libobjc.A.dylib: /usr/lib/libobjc.A.dylib
    254: libDiagnosticMessagesClient.dylib: /usr/lib/libDiagnosticMessagesClient.dylib
    255: CoreMediaAuthoring (951 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    256: AppKit (1343.16 Reg=English Loc=0x0000: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    257: libType1Scaler.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    258: ImageIO (1038 Reg=English Loc=0x0000: /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    259: CarbonSound (4.2 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    260: libxslt.1.dylib: /usr/lib/libxslt.1.dylib
    261: MediaControlSender (215.10 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    262: ATS: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    263: libOpenScriptingUtil.dylib: /usr/lib/libOpenScriptingUtil.dylib
    264: Foundation (1151.16 Reg=en_US Loc=0x0000: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    265: libresolv.9.dylib: /usr/lib/libresolv.9.dylib
    266: libsystem_platform.dylib: /usr/lib/system/libsystem_platform.dylib
    267: AE (681 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    268: libCGXCoreImage.A.dylib: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
    269: libcommonCrypto.dylib: /usr/lib/system/libcommonCrypto.dylib
    270: DebugSymbols (115 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    271: libcrypto.0.9.8.dylib: /usr/lib/libcrypto.0.9.8.dylib
    272: libc++abi.dylib: /usr/lib/libc++abi.dylib
    273: Kerberos (1 Reg=English Loc=0x0000: /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    274: JavaScriptCore (10600.1.17 Reg=English Loc=0x0000: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    275: libcsfde.dylib: /usr/lib/libcsfde.dylib
    276: libRadiance.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    277: CoreAVCHD (5750.4.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    278: libcrypto.0.9.7.dylib: /usr/lib/libcrypto.0.9.7.dylib
    279: CoreUI (305 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    280: CoreServicesInternal (221.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    281: libheimdal-asn1.dylib: /usr/lib/libheimdal-asn1.dylib
    282: ProtocolBuffer (225.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    283: CoreVideo (145.1 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    284: libpam.2.dylib: /usr/lib/libpam.2.dylib
    285: WebKitLegacy (10600.1.25 Reg=English Loc=0x0000: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy. framework/Versions/A/WebKitLegacy
    286: libicucore.A.dylib: /usr/lib/libicucore.A.dylib
    287: FaceCore (3.1.6 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    288: CoreWLAN (500.35.2 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    289: CoreSymbolication (56072 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    290: libdyld.dylib: /usr/lib/system/libdyld.dylib
    291: loginsupport (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    292: libkxld.dylib: /usr/lib/system/libkxld.dylib
    293: AppSandbox (238 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    294: Cocoa (21 Reg=English Loc=0x0000: /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    295: libFontRegistry.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    296: libcopyfile.dylib: /usr/lib/system/libcopyfile.dylib
    297: DictionaryServices (229 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    298: GSS (2.0 Reg=English Loc=0x0000: /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    299: QuartzCore (361.11 Reg=English Loc=0x0000: /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    300: LaunchServices (644.12 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    301: NetAuth (5.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    302: SearchKit (1.4.0 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    303: HIServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    304: OpenGL (11.0.7 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    305: Accelerate (Accelerate 1.10 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    306: OpenDirectory (187 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    307: Ubiquity (313 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    308: vecLib (vecLib 3.10 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    309: libxar.1.dylib: /usr/lib/libxar.1.dylib
    310: SecurityHI (55006 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    311: libbsm.0.dylib: /usr/lib/libbsm.0.dylib
    312: SpeechRecognition (5.0.9 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    313: libstdc++.6.dylib: /usr/lib/libstdc++.6.dylib
    314: libJPEG.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    315: libsqlite3.dylib: /usr/lib/libsqlite3.dylib
    316: DataDetectorsCore (396.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    317: libsystem_blocks.dylib: /usr/lib/system/libsystem_blocks.dylib
    318: AudioToolbox (1.12 Reg=English Loc=0x0000: /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    319: CoreServices (62 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    320: Ink (213 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    321: libAVFAudio.dylib: /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    322: Metadata (916.1 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    323: CoreImage (10.0.33 Reg=English Loc=0x0000: /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    324: Help (46 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    325: CFNetwork (720.1.1 Reg=English Loc=0x0000: /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    326: libmecabra.dylib: /usr/lib/libmecabra.dylib
    327: libmacho.dylib: /usr/lib/system/libmacho.dylib
    328: VideoToolbox (1562.19 Reg=English Loc=0x0000: /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    329: CoreUtils (101.1 Reg=en Loc=0x0000: /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    330: libsystem_notify.dylib: /usr/lib/system/libsystem_notify.dylib
    331: libTIFF.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    332: libsystem_pthread.dylib: /usr/lib/system/libsystem_pthread.dylib
    333: CoreAudio (4.3.0 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    334: LangAnalysis (1.7.0 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    335: libCyrillicConverter.dylib: /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    336: libJapaneseConverter.dylib: /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    337: libKoreanConverter.dylib: /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    338: libLatin2Converter.dylib: /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
    Operating System Information
    Operating System: Mac OS X 10.10.1 (Build 14B25)
    CPU: Intel Core Duo, Number: 4, Speed: 1700 MHz
    gestaltPhysicalRAMSizeInMegabytes err = 0, result = 409

  • After yosemite update, my wifi periodically runs very slow and sometimes disconnects

    Hi there,
    After the yosemite update my iMac's wifi has been running super slow, nothing to do with my own internet connection as it's fine, as other computers and devices works fine on the internet.
    Recently the only way that I have fixed it is to turn my wifi off, and then turn it back on again, this fixes it for a short amount of time before I need to do it again.
    Any suggestions?
    this was a screenshot during the time that it was running slow, during the test it went down to about 0.02 mbps download, then spiked to 2.5mbps, causing the average of 0.19mbps.
    Upload speed seemed average for my internet connection.

    Please look over and use Troubleshooting Wi-Fi

  • Iphoto not working with upgrade and updated after Yosemite update

    We updated to Yosemite last night and this morning I found I can not open my iPhoto.  We had a very old version that cost to update so I decided to wait, well when I saw there was a free update I did that, then it said To open your library with this version of iPhoto, it first needs to be prepared.  Now when I try to open it it keeps telling me to do the prepared upgrader and I already did, so it only gives me the option to quit or learn more which is where you down load it. 

    All fixed thanks to the apple support people.  It was very hard and many many different ways to get it resolved. 

Maybe you are looking for

  • How can I have mozilla firefox start at bootup, rather than having to click on the desktop icon to get it running?

    I do the usual turn on and bootup of the computer. Then I have to click on Firefox, and wait. Is there a way to add firefox to the bootup in msconfig? I couldn't figure out how. I am not a blond, but have white hair.

  • Playbook won't charge or turn on

    I have read through many post here about this problem and nothing is working for me.  I have not used my playbook for a while (it is an older model- I've had it 4 years), and when I plug it in I get the red battery with a lightening bolt through it t

  • Problem with mysql dirver loading

    hello friends , iam using Mysql of 4.1 version and the MysqlConnector 3.0..4 when i execute a program with the command java -classpath .;/root/8/20/mysql-connector-java-3.0.14-production/mysql-connector-java-3.0.14-production-bin.jar it gives the err

  • How to write contents of one file to another file

    We have some file Recon80 (RECON80HB01141005.TXT) which need to be modified . i.e we need to add 2 more columns in the file and write the file record into other file with trailer information. Please suggest to accomplish along with code snippet in SS

  • Blocking of scheduling agreement

    Hi All, I have created a scheduling agreement with document type "LP: for on material. When created the SA is having Release ID as  "B Blocked". The schduling agreement item is maintained in source list with MRP indicator "2 - relevent for MRP". Plan