SQLWriter fails at PreRestore and PostRestore with error 0x800423f4 when SetAdditionalRestores is set true

Hello,
I have taken a full backup of a SQL user database with SQL vss writer. When i am trying to restore with additionalrestores set to true, the restore is failing with error code 0x800423f4.  The backup restore process is successful if the additional
restores is not set.
My setup consists of a windows server 2012 with SQL 2012. I am using a non-csv volume from a storage array.
1) What could be the possible reasons for this failure at prerestore stage ?
2) The restore fails only when additionalrestores is set, are there any pre-requisites for using additional restores?
3) How to enable logs for sqlwriter?
Any reply would be really helpful.
Thanks.
Code snippet for setting the additional restores.
IVssBackupComponentsEx->SetAdditionalRestores(...., bAdditionalRestores=true)
VSS Logs.
[16:10:40.414 P:1668 T:18F8 BUECXMLC(1082)   BUCOMP] ENTER[CVssComponent::GetAdditionalRestores]
[16:10:40.414 P:1668 T:18F8  BUEXMLC(0631)   VSSXML] ENTER[CXMLDocument::ResetToDocument]
[16:10:40.414 P:1668 T:18F8  BUEXMLC(0631)   VSSXML] EXIT[CXMLDocument::ResetToDocument] Time spent: 00:00:00-0000; total: 0; HRESULT: 0
[16:10:40.414 P:1668 T:18F8  BUEXMLC(0569)   VSSXML] ENTER[CXMLDocument::FindAttribute]
[16:10:40.414 P:1668 T:18F8  BUEXMLC(0569)   VSSXML] EXIT[CXMLDocument::FindAttribute] Time spent: 00:00:00-0000; total: 0; HRESULT: 0
[16:10:40.414 P:1668 T:18F8 BUECXMLC(1082)   BUCOMP] EXIT[CVssComponent::GetAdditionalRestores] Time spent: 00:00:00-0000; total: 0; HRESULT: 0
[16:10:40.414 P:1668 T:18F8 BUECXMLC(1329)   BUCOMP] ENTER[CVssComponent::SetPreRestoreFailureMsg]
[16:10:40.414 P:1668 T:18F8  BUEXMLC(0631)   VSSXML] ENTER[CXMLDocument::ResetToDocument]
[16:10:40.414 P:1668 T:18F8  BUEXMLC(0631)   VSSXML] EXIT[CXMLDocument::ResetToDocument] Time spent: 00:00:00-0000; total: 0; HRESULT: 0
[16:10:40.414 P:1668 T:18F8  BUEXMLC(0156)   VSSXML] ENTER[CXMLNode::SetAttribute]
[16:10:40.414 P:1668 T:18F8  BUEXMLC(0156)   VSSXML] EXIT[CXMLNode::SetAttribute] Time spent: 00:00:00-0000; total: 0; HRESULT: 0
[16:10:40.414 P:1668 T:18F8 BUECXMLC(1329)   BUCOMP] EXIT[CVssComponent::SetPreRestoreFailureMsg] Time spent: 00:00:00-0000; total: 0; HRESULT: 0
[16:10:40.414 P:1668 T:18F8 WRTWRTIC(1101)   WRITER] ENTER[CVssWriterImpl::SetWriterFailure]
[16:10:40.414 P:1668 T:18F8 WRTWRTIC(1114)   WRITER] ENTER[CVssWriterImpl::SetWriterFailureEx]
[16:10:40.414 P:1668 T:18F8 WRTWRTIC(1131)   WRITER] Setting the restore failure status, hr=0x800423f4
[16:11:48.699 P:1668 T:1A80 WRTWRTIC(1396)   WRITER] EXIT[CVssWriterImpl::InternalGetWriterComponents] Time spent: 00:00:00-0015; total: 0xf; HRESULT: 0
[16:11:48.699 P:1668 T:1A80 WRTWRTIC(1101)   WRITER] ENTER[CVssWriterImpl::SetWriterFailure]
[16:11:48.699 P:1668 T:1A80 WRTWRTIC(1114)   WRITER] ENTER[CVssWriterImpl::SetWriterFailureEx]
[16:11:48.699 P:1668 T:1A80 WRTWRTIC(1131)   WRITER] Setting the restore failure status, hr=0x800423f4
[16:11:48.699 P:1668 T:1A80 REGREGSC(1327)      GEN] ENTER[CVssDiag::RecordGenericEvent]
[16:11:48.699 P:1668 T:1A80 REGREGSC(1331)      GEN] Parameters -2147212300, 1, 1, 0x00000000, {00000000-0000-0000-0000-000000000000}
[16:11:48.699 P:1668 T:1A80 REGREGSC(1350)      GEN] Event name: ((HRESULT)0x800423F4L) (SetCurrentFailure)
[16:11:48.700 P:1668 T:1A80 WRTWRTIC(4246)   WRITER] THROW[CVssWriterImpl::PostRestoreInternal] Writer rejected the postrestore

Hi LegendKiller2015,
Based on my research, if a backup application intends to apply differential or log backups on top of the current restore operation (i.e., “Restore with norecovery” is needed), the following option should be set as part of component creation for each database
that is being restored.
IVssBackupComponents::SetAdditionalRestores(true)
From your description, you only take a full backup of a SQL user database with SQL vss writer, so there is no need to specify the SetAdditionalRestores option.
Besides, you can check the SQLWriter related logs in the Windows event log. Or you can enable VSS tracing to check related logs, to do so, copy the commands below into notepad, and save the file as “tracing.bat”. Run the same to make the registry changes required
to configure VSS tracing.
net stop swprv
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS\Debug\Tracing /v TraceFile /t REG_SZ /d C:\trace.txt /f
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS\Debug\Tracing /v TraceLevel /t REG_DWORD /d 0xffffffff /f
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS\Debug\Tracing /v TraceEnterExit /t REG_DWORD /d 1 /f
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS\Debug\Tracing /v TraceToFile /t REG_DWORD /d 1 /f
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS\Debug\Tracing /v TraceToDebugger /t REG_DWORD /d 1 /f
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS\Debug\Tracing /v TraceFileLineInfo /t REG_DWORD /d 1 /f
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS\Debug\Tracing /v TraceForceFlush /t REG_DWORD /d 0 /f
Reference:
A Guide for SQL Server Backup Application Vendors
Troubleshooting VSS and Backup
Thanks,
Lydia Zhang
Lydia Zhang
TechNet Community Support

Similar Messages

  • DAG - Backup failing on 1 DB only with error - The Microsoft Exchange Replication service VSS Writer instance ID failed with error code 80070020 when preparing for a backup of database 'DB012'

    Hi Board,
    i´ve search across the board, technet and symantec sites but did not found a hint about my problem.
    we drive a 2 node DAG (Location1-Ex1-mb1 
    Location2-exc1-mb1), on SP2 RU4 patchlevel with 40 Databases.
    Since some time the backup of one - and only one DB - is failing with these events, logged on the Mailboxserver on which the passive DB is hosted.
    Log Name:      Application
    Source:        MSExchangeRepl
    Date:          28.09.2012 00:37:17
    Event ID:      2112
    Task Category: Exchange VSS Writer
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Location1-Exc1-MB1
    Description: The Microsoft Exchange Replication service VSS Writer instance 1ab7d204-609a-4aea-b0a7-70afb0db38de failed with error code 80070020 when preparing for a backup of database 'DB012'.
    Followed by
    Log Name:      Application
    Source:        MSExchangeRepl
    Date:         
    01.10.2012 03:33:06
    Event ID:      2024
    Task Category: Exchange VSS Writer
    Level:         Error
    Keywords:      Classic
    User:         
    N/A
    Computer:      Location1-Exc1-MB1
    Description:
    The Microsoft Exchange Replication service VSS Writer (Instance 42916d80-36c1-4f73-86d0-596d30226349) failed with error 80070020 when preparing for a backup.
    The backup Application - Symantec Backup Exec 2010 R3 – states, this error
    Snapshot provider error (0xE000FED1): A failure occurred querying the Writer status.
    Check the Windows Event Viewer for details.
    Writer Name: Exchange Server, Writer ID: {76FE1AC4-15F7-4BCD-987E-8E1ACB462FB7}, Last error: The VSS Writer failed, but the operation can be retried (0x800423f3), State: Stable (1).
    Symatec suggests within http://www.symantec.com/business/support/index?page=content&id=TECH184095
    to restart the MS Exchange Replication Service – BUT the mentioned eventID
    8229 isn´t present on any of the both Mailboxservers.
    The affected Database is active on Location2-Exc1-Mb1 Server and in an overall healthy state. I found during my research, that below Location2-Exc1-Mb1 Server, there are not removed shadow copies present!
    This confuses me, since all Backups are normally taken from the passive copy of a Database.
    So my questions to the board are:
    * Does anyone is facing similar issues?
    * Can someone explain why snapshots are present on the Mailboxserver hosting the Active Database, whilst the errors are logged on the passive one?
    -          * Does someone know the conditions, why shadows copies remain and
    aren´t removed in a proper manner?
    What can cause the circumstance, that only 1 DB is facing such issues?
    Any suggestion is welcome!
    BR
    Markus

    Hi Lenora,
    I´ve encreases VSS / Exchange Backup Log levels to expert, before starting
    those things i´ve all tried now:
    - Backup from passive DB (forced within Symantec Backup Exec)
    - Backup from active DB (forced within Symantec Backup Exec)
    - Backup from passive DB without GRT enabled (forced within Symantec Backup Exec)
    - Backup from active DB without GRT enabled(forced within Symantec Backup Exec)
    All those attempts failed.
    But brought some more details - the backup against the active DB states, that there is still a backup in progress and therefore this backup is cancelled by VSS.
    The Solution was, that i´ve needed to restart the Exchange Replication Service on the Mailbox Server hosting the passive DB.
    Backups are working again on all DBs!
    THX for your replys.
    Best regards
    Markus

  • Ewfmgr: Failed getting protected volume configuration with error 1

    Hello,
    I created a Windows 7-64 image for an Ivy-Bridge VME card. The image contains EWF with RAM-REG.
    The disk was divided into 2 partitions with the windows installer and the image was successfully installed.
    As I'm using RAM-REG, all
    the disk was allocated.  
    After the image was installed I tried to run "ewfmgr c:" and got the current status.
    Then I created a GHOST image and wrote the image on a new card with a clean disk.
    After Windows booted, running "ewfmgr c:" gave:
    Failed getting protected volume configuration with error 1
    I found few threads on this issue but failed to understand what is the right solution.
    Can you help ?
    Thanks,
    Zvika  

    The Problem is always Volumeid related (diskid)
    Explaination:
    Sysprep creates new bcd for the System. - Therefore it's recommended to use sysprep (and SID and so on..) but if you're lazy or don't have Domain Controller and so on or always use physical seperated (better not Internet connected) machines you would be
    totaly fine with non-syspreped Images. You only Need updated/new bcd.
    Captured wim has 'old' bcd (if there is no seperated MSR Partition) you can update this 3 entries within winpe and your Image will boot:
    bcdedit /store c:\boot\BCD /set {BOOTMGR} device boot
    bcdedit /store c:\boot\BCD /set {DEFAULT} device PARTITION=C:
    bcdedit /store c:\boot\BCD /set {DEFAULT} osdevice PARTITION=C:
    (boot could also be Partition=c: or all entries could be boot - and /store is not needed as in winpe bcdedit automatically Redirects the commands into the other/System (found) bcd. But i always recommand to specify the bcd store you want to edit, like in
    this lines)
    The definition of "C:" in this Parameter is 'translated' into volumeid/diskid. - So in the bcd is not "C:" it's some DiskID.
    Instead of the 3 entries you can just create a whole new bcd with updated volumeid/diskids. --> It would be enough to run bcdboot /s C:\ (or whatever the current boot (c:\) Partition is.
    EWF needs to be reconfigured as it also works with Volume/Diskids. So it needs additional command while running (online).
    ewfcfg /install-configuration for win7
    rundll32 ewfdll.dll,ConfigureEwf for win xpe/wes2009.
    Windows Embedded Developer and Scripting Guy //Germany (http://www.wesnext.com)

  • Windows Update failed to check for updates with error 0x800B0001

    Hi all,
    I have a WSUS installed on a Windows Server 2008 R2 box, I have a new Windows Server 2012 box (joined to domain) that cannot get updates from the WSUS, whenever I try to search for new updates I receive the following error in event viewer:
    Windows Update failed to check for updates with error 0x800B0001
    Note: I cannot see the Win2K12 server in the WSUS console under computers node.

    I couldn't get it to run even after installing the mentioned KB fixes. So I investigated the error myself, and found a "hack" that seems to fix the issue. Wrote up a small piece on it here:
    http://tplive.azurewebsites.net/2013/12/windows-update-error/
    You and about a thousand other people have reported "I had already installed [the update], but installing it AGAIN fixed the problem.", which is almost assuredly a simple indication that the original installation of the update failed, and you simply did
    not recognize that the installation of the update was not successful.
    The fact that the /selfupdate folder was corrupted (read: missing files) pretty much says it all. There's no bug. Your installation of the update simply failed. (Or, the server wasn't healthy to begin with and you got what you got.)
    Bottom line: The only known cause for a client-side 0x800B0001 error code is that the WSUS server has not been
    properly and completely patched.
    Lawrence Garvin, M.S., MCITP:EA, MCDBA, MCSA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2013)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence R Garvin
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Synthetic FibreChannel Port: Failed to start reserving resources with Error 'Insufficient system resources exist to complete the requested service.' (0x800705AA)

    Hello Gurus 
    i have installed windows server 2012 RTM with Hyper-V. i already created virtual machine with virtual fiber channel adapter connected to physical one. sometimes when i restart the virtual machine it gets failed to start again and the following error appears
    in the event viewer of the host:
    error id 21502
    'Virtual Machine xyz' failed to start.
    'xyz' failed to start. (Virtual machine ID number)
    'xyz' Synthetic FibreChannel Port: Failed to start reserving resources with Error 'Insufficient system resources exist to complete the requested service.' (0x800705AA). (Virtual machine ID
    number)
    'xyz': Operation for virtual port (C003FF18F98C000E) failed with an error: No physical port available to satisfy the request (Virtual machine ID
    number).
    error id 1069
    Cluster resource 'Virtual Machine xyz' of type 'Virtual Machine' in clustered role 'xyz' failed. The error code was '0x5aa' ('Insufficient system resources exist to complete the requested service.').
    Based on the failure policies for the resource and role, the cluster service may try to bring the resource online on this node or move the group to another node of the cluster and then restart it.  Check the resource and group state using Failover Cluster
    Manager or the Get-ClusterResource Windows PowerShell cmdlet.
    appreciate your help
    Ashraf

    Dear All,
    Subject : Need to create a file cluster
    in Guest Vms (Host machine : Windows 2012 R2), using MSA p2000 strorage with HBA Qlogic (HP 8Gb PCIe Host Bus Adapter)
    Note: It's a direct connection from HBA to HP MSA p2000 (No SAN switch in between)
    Currently I am using Qlogic HBA (HP
    81Q 8Gb 1-port PCIe Fibre Channel Host Bus Adapter- Part No. AK344A).
    Unable to create vPort using  Microsoft
    Hyper-V (Win 2012 R2) & secondly using QConverge
    Console utility.
           When trying to create  Microsoft
    Hyper-V (Win 2012 R2), I received the below error.
    Secondly, when I am trying to create vSAN switch in using Qlogic QConverge Utility the above error is popup. 
    Currently I am using the following latest version of Qlogic Firmware & Drivers...
    HBA - Running Firmware Version:  7.00.02
    HBA - Driver Version:  STOR Miniport 9.1.11.24
    If any body the same issue, Please could you update me as earliest.
    Regards,
    Mirza

  • My iMac keeps crashing randomly and restarting with error

    I have asn iMac 2009 intel running OSX 10.8.4
    it keeps randomly crashing and restarting with error message
    "your compter crashed because of a problem"
    Process:         rapportd [222]
    Path:            /Library/Rapport/*/rapportd
    Identifier:      rapportd
    Version:         ???
    Code Type:       X86 (Native)
    Parent Process:  launchd [169]
    User ID:         501
    Date/Time:       2013-07-04 10:09:02.186 +0200
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Crashed Thread:  5
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000000013e2
    VM Regions Near 0x13e2:
        __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Library/Rapport/*
    --> __TEXT                 0000000000001000-0000000000065000 [  400K] r-x/rwx SM=COW  /Library/Rapport/*
        __DATA                 0000000000065000-000000000006f000 [   40K] rw-/rwx SM=COW  /Library/Rapport/*
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x949f0644 strlen + 20
    1   rapportd                                0x0001ae55 dictionary_findp + 22
    2   rapportd                                0x0001bcac counters_add_get_dict + 61
    3   rapportd                                0x0001d621 pool_redel + 92
    4   rapportd                                0x0001ba31 pool_clear + 121
    5   rapportd                                0x0001beaf pool_free_impl + 52
    6   rapportd                                0x0001dbf7 dictionary_free + 79
    7   RapportUtil1.dylib                      0x001893ea CLocalSection::~CLocalSection() + 40
    8   RapportUtil1.dylib                      0x0018e17b CSimplePersistentSection::~CSimplePersistentSection() + 97
    9   RapportUtil1.dylib                      0x00186e07 counted_ptr<IConfigurationSection>::release() + 57
    10  RapportUtil1.dylib                      0x00186512 SectionSynchronizer::~SectionSynchronizer() + 54
    11  RapportUtil1.dylib                      0x00186e07 counted_ptr<IConfigurationSection>::release() + 57
    12  RapportUtil1.dylib                      0x001885d8 std::pair<std::string const, counted_ptr<IConfigurationSection> >::~pair() + 26
    13  RapportUtil1.dylib                      0x00188628 __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::_M_delete_node(__gnu_cxx::_Hashtable_node<std::pair<std::string const, counted_ptr<IConfigurationSection> > >*) + 44
    14  RapportUtil1.dylib                      0x00188994 __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::clear() + 62
    15  RapportUtil1.dylib                      0x001889eb __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::~hashtable() + 23
    16  RapportUtil1.dylib                      0x00186791 CConfigurationManager::~CConfigurationManager() + 77
    17  RapportUtil1.dylib                      0x0019a8e3 counted_ptr<CConfigurationManager>::release() + 57
    18  RapportUtil1.dylib                      0x0019b348 configuration::~configuration() + 54
    19  RapportUtil1.dylib                      0x0019a113 counted_ptr<configuration>::release() + 57
    20  libsystem_c.dylib                       0x94a3eebf __cxa_finalize + 184
    21  libsystem_c.dylib                       0x94a41db9 exit + 23
    22  rapportd                                0x00002317 start + 63
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x912099ae kevent + 10
    1   libdispatch.dylib                       0x991cfc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x991cf7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x912090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94a070ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x94a06e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949eed2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x912090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94a070ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x94a06e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949eed2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x912090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94a070ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x94a06e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949eed2a start_wqthread + 30
    Thread 5 Crashed:
    0   rapportd                                0x000013e2 0x1000 + 994
    1   libsystem_c.dylib                       0x94a045b7 _pthread_start + 344
    2   libsystem_c.dylib                       0x949eed4e thread_start + 34
    Thread 5 crashed with X86 Thread State (32-bit):
      eax: 0x000013e2  ebx: 0x0002c5a7  ecx: 0xbffff864  edx: 0xbffff85c
      edi: 0xbffff868  esi: 0x00194b50  ebp: 0xb030af98  esp: 0xb030af3c
       ss: 0x00000023  efl: 0x00010206  eip: 0x000013e2   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x000013e2
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x64fef +rapportd (???) <322EF040-125E-3D79-4A2F-01BB8B1415E9> /Library/Rapport/*/rapportd
       0xaf000 -   0x147ff7 +RapportWR.dylib (1) <A50472EA-F9E8-3C45-E173-216263532AEC> /Library/Rapport/*/RapportWR.dylib
      0x16e000 -   0x2faffb +RapportUtil1.dylib (1) <087D94DE-7376-A5E6-C000-2895F7D0AA60> /Library/Rapport/*/RapportUtil1.dylib
      0x3f8000 -   0x420fef +librooksbas.dylib (1) <75079BEF-ED76-12F6-5973-3B4584AFA1E4> /Library/Rapport/*/librooksbas.dylib
      0x718000 -   0x725ff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x8fe5a000 - 0x8fe8ce57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90008fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x90009000 - 0x9006ffff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9008a000 - 0x901d8ff3  com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x9020a000 - 0x9022efff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9022f000 - 0x9023bff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9023c000 - 0x90246fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x90343000 - 0x90356ff9  com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x903a0000 - 0x903b9fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x903ba000 - 0x903c6ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91100000 - 0x91104fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91105000 - 0x9110efff  com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9113f000 - 0x911f3fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x911f4000 - 0x9120effc  libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
    0x9120f000 - 0x91212fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91213000 - 0x91261ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91262000 - 0x91293fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91294000 - 0x912b1ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x9132e000 - 0x9132efff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91333000 - 0x91716fff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91717000 - 0x91772fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91773000 - 0x917d4fff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9181d000 - 0x91825fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x92349000 - 0x923beff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92431000 - 0x9244dfff  libPng.dylib (850) <26AD967A-D55E-3C5A-A643-D9953136DE58> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9244e000 - 0x92459fff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x9245a000 - 0x924c2fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92524000 - 0x92548fff  libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x927f8000 - 0x9283afff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x9283b000 - 0x92860ffb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92861000 - 0x928b8ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92913000 - 0x929aaff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x929ab000 - 0x929c1fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x929c8000 - 0x929d4ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x929d5000 - 0x92a1dff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92a44000 - 0x92abeff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92abf000 - 0x92b7dff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92be4000 - 0x92ea4ff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92ea5000 - 0x92fb2057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x933bf000 - 0x933c1ffb  libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x933c2000 - 0x933ebfff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x933ec000 - 0x93809fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x9380a000 - 0x93821fff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x93822000 - 0x93822ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <F7638E43-F885-372E-9DAE-24D0C21AA66E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93823000 - 0x93827ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x93926000 - 0x93a31ff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x942b0000 - 0x94335ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94336000 - 0x94337fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x94338000 - 0x94491ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <8BF022FC-C38A-34AA-8469-D98294094659> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94608000 - 0x9461dfff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9461e000 - 0x94796ff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94797000 - 0x947a0fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x947a1000 - 0x947a1fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x947a2000 - 0x947b7fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94814000 - 0x94820ffe  libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
    0x94821000 - 0x94822fff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x94823000 - 0x94921ff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94922000 - 0x949ccfff  com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x949cd000 - 0x949d0ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x949d1000 - 0x949d2ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x949d3000 - 0x949dafff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x949db000 - 0x949e5ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x949e6000 - 0x949edff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x949ee000 - 0x94aabfeb  libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x94aac000 - 0x94ad9ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x94ada000 - 0x94dfaff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94edd000 - 0x94ee6ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94f29000 - 0x94f29fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94f2a000 - 0x94f6cffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x94f6d000 - 0x94fb1ff7  libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94fb2000 - 0x94fb3fff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x94fb6000 - 0x950a7ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x950a8000 - 0x950b6ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x950cc000 - 0x950ccfff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x950cd000 - 0x950d4fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x950d5000 - 0x950d5fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x950d6000 - 0x95122fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x9523c000 - 0x95281ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9551d000 - 0x95822ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95823000 - 0x95c65fff  com.apple.CoreGraphics (1.600.0 - 332) <67E70F21-A0F1-356F-90B7-4B90C468EE2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95c66000 - 0x95c69ffc  libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95c6a000 - 0x95c87fff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x95c88000 - 0x95cb5ffb  com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x95cb6000 - 0x95ecdfff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95f0b000 - 0x95f0cffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x95fab000 - 0x95fb5fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95fc8000 - 0x95fc8fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x95fc9000 - 0x95fffffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x96000000 - 0x96022fff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x9607e000 - 0x96152ff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96153000 - 0x961b7ff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x961de000 - 0x961ecfff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x961ed000 - 0x96255ff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96262000 - 0x9635aff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x9635b000 - 0x9637bffd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x9637c000 - 0x963b7fef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96736000 - 0x968f2ffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x968f3000 - 0x96adbffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96adc000 - 0x96b1eff7  libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib
    0x96f1c000 - 0x96f2afff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96f2b000 - 0x96f2cfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x96f2d000 - 0x96f4cff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x96f4d000 - 0x96fa7fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x97114000 - 0x97114fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x97115000 - 0x97163ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97164000 - 0x971a3ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x97229000 - 0x97de5ff3  com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97de6000 - 0x97e12ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x97eef000 - 0x97f87fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97f94000 - 0x97f9dff9  com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x98698000 - 0x9869afff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9869b000 - 0x9869fffc  libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x986a0000 - 0x986affff  libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x986fd000 - 0x98798fff  com.apple.CoreSymbolication (3.0 - 117) <F705A8CD-A04A-3A84-970A-7B04BC05DA97> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x98799000 - 0x9879cff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9879d000 - 0x9879dfff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9879e000 - 0x987f8ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x987f9000 - 0x98806ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x98807000 - 0x98815ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x98816000 - 0x98816ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x98817000 - 0x98893ff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98894000 - 0x9889afff  libGFXShared.dylib (8.9.2) <F3B0E66D-5C47-3A5A-A2CD-F0C58E8322C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9889b000 - 0x9889ffff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x988a2000 - 0x988a9ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x988aa000 - 0x98959ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x989aa000 - 0x989abfff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x989ac000 - 0x98ab9ff3  com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x98ac1000 - 0x98ad3fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x98ad4000 - 0x98ad7ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x98ae9000 - 0x98b0eff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98b1e000 - 0x98b6dff6  libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x98b6e000 - 0x98f26ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98f27000 - 0x991caff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x991cb000 - 0x991ddff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x991de000 - 0x991e0ffd  libCVMSPluginSupport.dylib (8.9.2) <D6D0BB75-42DA-3772-AB5E-CBD59B343393> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x991e1000 - 0x99243fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x99275000 - 0x992a8ffb  com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x992f5000 - 0x99312fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x99313000 - 0x993fcff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x994f2000 - 0x9967bff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9967c000 - 0x996ebffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99730000 - 0x9974eff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x999cc000 - 0x99a6cff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x99a6d000 - 0x99a73fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x99a74000 - 0x99a84ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x99a85000 - 0x99a85fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x99ce3000 - 0x99d3aff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x99d3b000 - 0x99e57ffb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x99e58000 - 0x99eeaffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x99eeb000 - 0x9a026ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9a08e000 - 0x9a092fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9a093000 - 0x9a097ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x9a098000 - 0x9a0fcff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9a108000 - 0x9a10afff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9a434000 - 0x9a434fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 119
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=117.4M resident=68.9M(59%) swapped_out_or_unallocated=48.5M(41%)
    Writable regions: Total=32.1M written=848K(3%) resident=1084K(3%) swapped_out=0K(0%) unallocated=31.1M(97%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    CoreServices                       1600K
    MALLOC                             21.3M
    MALLOC guard page                    48K
    Memory tag=35                      7428K
    Stack                              66.5M
    VM_ALLOCATE                          56K
    __DATA                             5452K
    __DATA/__OBJC                       172K
    __IMAGE                             528K
    __LINKEDIT                         31.6M
    __OBJC                             1524K
    __OBJC/__DATA                         8K
    __PAGEZERO                            4K
    __TEXT                             85.8M
    __UNICODE                           544K
    mapped file                       101.9M
    shared memory                       308K
    ===========                      =======
    TOTAL                             324.4M

    Hi Carolyn,
    Thank you for your suggestion it seemed to do much better, and lasted the whole day but then it crashed again last night
    Interval Since Last Panic Report:  139535 sec
    Anonymous UUID:                    4964D4DE-C0B4-4BF5-739A-DA67B363A129
    Fri Jul  5 06:52:57 2013
    panic(cpu 1 caller 0xffffff8009cb8655): Kernel trap at 0xffffff7f8af16af7, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x00000001044e905c, CR3: 0x000000000c9fe000, CR4: 0x0000000000000660
    RAX: 0xde531e715ebf009b, RBX: 0xffffff80220ae048, RCX: 0x7fffffffffffffff, RDX: 0x0000000000000040
    RSP: 0xffffff80890dbfa0, RBP: 0xffffff80890dbfb0, RSI: 0x0000000000000002, RDI: 0xdeadbeefdeadbeef
    R8:  0xffffff807d58d078, R9:  0x0000000000988ddc, R10: 0xffffff80890dbd20, R11: 0xffffff7f8aed61c0
    R12: 0xffffff807d58d000, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0xffffff8016105dc8
    RFL: 0x0000000000010282, RIP: 0xffffff7f8af16af7, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00000001044e905c, Error code: 0x0000000000000000, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80890dbc40 : 0xffffff8009c1d626
    0xffffff80890dbcb0 : 0xffffff8009cb8655
    0xffffff80890dbe80 : 0xffffff8009cce17d
    0xffffff80890dbea0 : 0xffffff7f8af16af7
    0xffffff80890dbfb0 : 0xffffff8009cb3137
          Kernel Extensions in backtrace:
             com.digidesign.fwfamily.driver(9.0f4)[EA9004EA-D8CD-1CA7-6281-17C82B2AF0EF]@0xf fffff7f8af08000->0xffffff7f8af29fff
                dependency: com.apple.iokit.IOFireWireAVC(4.2.2)[F7D819BB-CD26-352B-BE6A-AB3040A06AEF]@0xff ffff7f8a8e5000
                dependency: com.apple.iokit.IOAudioFamily(1.8.9fc11)[AB8DD2DD-43BD-3B7B-95F7-26E6E0BBF339]@ 0xffffff7f8aece000
                dependency: com.apple.iokit.IOFireWireFamily(4.5.5)[A045A111-194F-3E54-A63E-E015DC69B862]@0 xffffff7f8a37b000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12E55
    Kernel version:
    Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36
    Kernel slide:     0x0000000009a00000
    Kernel text base: 0xffffff8009c00000
    System model name: iMac10,1 (Mac-F2268CC8)
    System uptime in nanoseconds: 17432848808837
    last loaded kext at 260053975535: com.apple.filesystems.smbfs          1.8.4 (addr 0xffffff7f8bf58000, size 229376)
    last unloaded kext at 229025294943: com.apple.driver.AppleFileSystemDriver          3.0.1 (addr 0xffffff7f8be6f000, size 8192)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard          5.9.1
    com.digidesign.fwfamily.driver          9.0f4
    com.digidesign.iokit.DigiDal          10.3.6f14
    com.apple.filesystems.smbfs          1.8.4
    com.apple.driver.AppleBluetoothMultitouch          75.19
    com.apple.filesystems.ntfs          3.10
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.87
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.1.4f2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleBacklight          170.2.5
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.kext.AMDFramebuffer          8.1.2
    com.apple.ATIRadeonX2000          8.1.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleUSBCardReader          3.1.7
    com.apple.iokit.SCSITaskUserClient          3.5.5
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.1
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AirPort.Atheros40          600.72.2
    com.apple.driver.AppleAHCIPort          2.5.2
    com.apple.nvenet          2.0.19
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.driver.AppleUSBOHCI          5.2.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.IOBluetoothHIDDriver          4.1.4f2
    com.apple.driver.AppleMultitouchDriver          235.29
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireAVC          4.2.2
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.1.4f2
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.kext.AMD4600Controller          8.1.2
    com.apple.kext.AMDSupport          8.1.2
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleUSBHIDKeyboard          170.2
    com.apple.driver.AppleHIDKeyboard          170.2
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.5
    com.apple.iokit.IOUSBMassStorageClass          3.5.1
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.5
    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.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          530.4
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IOUSBFamily          5.6.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

  • I have plugged my iphone 5s into windows computer, the computer picks up that its there and starts charging but keeps coming up with error message when i try connect to itunes... HELP!!!

    I have plugged my iphone 5s into windows computer, the computer picks up that its there and starts charging but keeps coming up with error message when i try connect to itunes... HELP!!!

    What does the error message say? (Precise text, please.)

  • HT1553 I did the back up as instructed... Installed a larger hard drive and followed the restore instructions... Now I get a white screen with a folder icon and blinking question mark. When trying to set startup with new drive I get a bless tool error...

    I did the back up as instructed... Installed a larger hard drive and followed the restore instructions... Now I get a white screen with a folder icon and blinking question mark. When trying to set startup with new drive I get a bless tool error... Help!!

    If you have installed a new hard drive , you will need to have formatted it in Disk Utility correctly. This may explain your problem.
    Boot  into your 10.6 Install disk again at the top menubar > Utilities > select Disk utility and in there select your new hard drive, and select the tab Erase and choose to make the format as  Mac OS Extended Journaled. When that is finished look in the main window to make sure that the partition map scheme says GUID Partition Table.
    Now go to the Restore tab and reinstall from your backup.

  • TS1539 How do we deal with Error 50 when downloading a movie rental then stopped with error 50 and when I try to resume the downld, it doesn't do it?

    How do we deal with Error 50 when downloading a movie rental then stopped with error 50 and when I try to resume the downld, it doesn't do it?

    Yeah this "fix" is bunk. The movie is downloading just fine, but the extra features is the one giving me this error code. It is NOT my firewall. If it was, then both files wouldn't download. Plus, I already have the firewall "issue" tacked down and fixed. Have had it fixed for months now. No, this is due to the "new" itunes version 11 software. The only conclusion to fix this issue is UPgrading from 11 back to 10.7 which is what I am going to do. This is completely ridiculous! Come on, Apple, get itunes working once and for all, and fire the people responsible for itunes 11, just like you did to the guy who was responsible for apple maps. Thankfully Google came back to the rescue with google maps app.

  • Failed to redeploy cardcath.war with error 256.

    The last time there was a code promotion for an application I was working on, an
    email with the following error message was sent:
    Failed to redeploy cardcath.war with error 256.
    Can anyone give me some information on 'error 256'? I need to find out why the
    application 'failed to redeploy'.

    How did you create your datasource, can you post the content, without passwords of course.
    Greetings.

  • Page opening hangs ,and loads with errors

    page opening hangs ,and loads with errors,
    terry.

    Terry,
    You need to be much more descriptive when posting. We have no idea what "page" you are referring to.

  • WE05 takes a long time and ended with error message: time out

    Hello,
        When user trying to use WE05 transaction it takes more time and ended with error message time out.In the WE05 tranaction even i tried with minimal search options(like for just 2hrs duration,for one day) still getting the same error.I think there must be problem in EDIDC table.
       Please suggest solution for this????
    Regards,
    Loki.

    You have to enter the selection ctiteria on WE05, might be there is a huge data on these tables. So the best option is to enter the selection criteria as much as you can to get the IDOC list. Also check the sie of EDIDC table and analyse the number of IDOC on that table. Make sure that index are updated of the table
    Regards,
    Subhash

  • Latest i-pod touch wont sync, computer freezes and comes up with error -21 when i pull it out

    Latest i-pod touch wont sync, computer freezes and comes up with error -21 when i pull it out of the usb port

    Error 20, 21, 34, 37: These errors typically occur when security software interferes with the restore and update process. If you are using a PC, follow this article to resolve this issue.
    Above from:
    http://support.apple.com/kb/TS3694
    Next I would try placing the iPod in recovery mode and then try restoring the iPod. Note that this will erase the iPod. For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • My Mac OSX is coming up with error message when i try to write a disc "The disc can't be burned because the disc drive is not accessible (error code 0x80020020)." Same also when I tried my external disc writer-any clues?

    My Mac OSX (version 10.7.5) is coming up with error message when I try to write a disc "The disc can’t be burned because the disc drive is not accessible (error code 0x80020020)." I have tried several discs with the same message - Same also when I tried my external disc writer. Both disc drives will read my discs that have music or photos on it, it just won't write any new discs - any clues?

    Hi Klaus1
    So, I tried all the suggestions and followed the links - all to no avail.
    as you can see, (screenshot below) my iMac is a 21.5 inch late 2009 model which isn't showing in the updates listed above
    My system report shows that my Mac has the following:
    I reset the PRAM and the SMC - still have the same error message when I try to burn discs. I've used both CD's and DVD's and tried with my external Discwriter too.
    Any further suggestions??

  • Does anyone have experience with error 504 when trying to download a podcast?

    Does anyone have experience with error 504 when trying to download a podcast?  I've been a subscriber for two years without issue and in the last two days can't download this particular podcast (everything else is working fine - music, other podcasts, etc)

    The album was released on the 27th March this year, so the error occurred almost immediately after it was supposedly available.
    In the manage pre-orders section of my account, it says AVAILABLE but does not give me any choice over whether to download it, just to cancel it. Is this normal?
    iTunes customer services reset my password and tried to download the album themselves, but they also got the 5002 error, so it's been passed off to the engineers. How long does that usually take?
    If anyone has any other suggestions, it would be greatly appreciated.

Maybe you are looking for

  • Segment in document posting

    Hi I need help in understanding the concept behind Segment reporting. We have implemented new GL and the document is split based on cost center, Profit center, and Business area. When I post a vendor invoice, I specify PC and business area in the lin

  • How to back up itunes to a external drive.

    I need some help I just bought a Western Digital Elite Portable external drive and I want to back up my itunes in it. The problem is that I've never done it before so basically I do not know how to do it. I been backing up to discs but I want to do i

  • GRAY SCREEN ON START UP ! TROUBLESHOOT

    STEP BY STEP TO RESOLVE PROBLEM WITH GRAY SCREEN NVRAM > IN THE BEGINNING OF INITIALIZES PRESS THE KEYS COMMAND+OPTION+P+R WAIT UNTIL REPEAT 3 TIMES THE SOUND. SECURITY MODE PRESS SHIFT IN THE BEGINNING OF THE INITIALIZES UNTIL APPEARS A PROGRESS BAR

  • Export and import playlists

    I have tried to search for the information but failed. I have a simple question and I hope there is a simple answer: Is there possible to export my playlists, reinstall mac os and import my playlists again so it look the same as before the reinstalla

  • BCC failure in CRS

    Hi, I have installed latest version of JDK and Weblogic for 64 bit windows. Performed fresh installation and was successful till the last step as mentioned in the http://docs.oracle.com/cd/E2263001/CRS.1002/pdf/ATGCRSInstall.pdf_ While configuring th