Vbscript using Manufacturer to run a program install

Hello, I'm new to scripting and was looking for assistance on my attempt to use a vbscript to install a program based on manufacturer detected. Basically, I would like to have the script detect if it is a Dell or an ASUS system then depending on what is
detect run an executable.
The reason for this is during OS installs or re-installs the executable pulls the serial number to be part of the naming convention. Different manufacturers store this is different areas, especially on older systems. I wish I could say we were a single manufacturer
facility but we are not. We have many beyond the Dell & ASUS systems but I would like to get it working with these just to get started. I can add more after I get something that works.
After learning things reading the forums here and elsewhere, I've seen different ways to attempt this. Unfortunately so far, I have ended in failure. I have seen the possibilities of using some of the tools to possibly re-do the rename, but that is for another
time and another project. Below is my current script and after cleaning syntax errors etc. it goes through but does not do anything. It seems like it skips over the manufacturer detect. Any assistance would be greatly appreciated.  
On error resume next
Dim strComputer, objWMIService
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_ComputerSystem")
For Each objItem in colItems
    If obj.manufacturer="Dell INC." Then
    Set objshell = wscript.createobject("Shell.Application")
    objshell.ShellExecute "C:\Temp\Dellrename.exe"
    Set obj.Shell = Nothing
    ElseIf obj.manufacturer="ASUSTek Computer INC." Then
    Set objshell = wscript.createobject("Shell.Application")
    objshell.ShellExecute "C:\Temp\Asusrename.exe"
    Set obj.Shell = Nothing
End If
Next
wscript.quit

As JRV said you need to turn off on error resume next.  You also were refering to the wrong obj in your comparison.  It needs to be objitem instead of obj.  I have reformated the code so it is more readable and added a display of the manufacturer. 
It may not be exactly as you expect.  try this and once you find the correct string you can remove or comment the wscript.echo statement.
rem On error resume next
 Dim strComputer, objWMIService
 strComputer = "."
 Set objWMIService = GetObject("winmgmts:" _
     & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_ComputerSystem")
For Each objItem in colItems
     wscript.echo objitem.manufacturer
     If objitem.manufacturer="Dell INC." Then
         Set objshell = wscript.createobject("Shell.Application")
         objshell.ShellExecute "C:\Temp\Dellrename.exe"
         Set obj.Shell = Nothing
     ElseIf objitem.manufacturer="ASUSTek Computer INC." Then
         Set objshell = wscript.createobject("Shell.Application")
         objshell.ShellExecute "C:\Temp\Asusrename.exe"
         Set obj.Shell = Nothing
 End If
 Next
 wscript.quit

Similar Messages

  • Using LabView to run VB program with parameters

    Hi,
    It's my first message here so I hope I am doing things correctly. I tried to do some research before asking and I found a lot of good informations but right now, I seem to be stuck.
    I am quite new to LabView, I did few VIs here and there but nothing really "serious". I am currently working on a LabView interface that deals with VB, Excel macros and Data extraction from Text file.
    The VB program is in charge of a motor position, then, some Excel macros are used to do some measurement and the results are written in a text file that I use to plot some graphs.
    The VB program I made give the window I put in the picture in the attached files. Basically, you have to enter some values in those TextBox then click on Move and the motor will move. When you click on the button Home, the motor moves back to the position "0", no need of the two TextBox. In my labview interface, I created two ComboBox that contain all the possible values for both of the TextBox of my VB program. What I would like to do, when I click on my "Measure" button on LabView that initiates the VB program, is that it can fill the two TextBox from VB with the data entered in my LabView ComboBox and then run the program, simulating a "click" on the Move button.
    Right now, I found a VI (included in the attached files) that runs my VB program from LabView (I use it as a Sub-VI) but I still have to manually put the values in my VB program. My goal would be that when I click on my LabView button to start my measure, the motor moves but the VB program doesn't show up for the user to manually enter the values he wants.
    I hope I was clear but if you need any clarification.
    I did the the VB program myself.
    I can also link the LabView interface I already created if need be.
    Thanks for your help,
    Baptiste
    Attachments:
    Moteur.png ‏5 KB
    lancerEXE.vi ‏9 KB

    First, thank you for your answers.
    I know that I don't need to use VB or LabView. I just want for myself to be able to use LabView to manage a program in VB, one in VBA and use data from a text file. I know I could write everything in VBA and that would get the job done. The thing is I want to get away from VBA and Excel as much as I can. In the future, the plan would be to re-write my VBA program with LabView but as of now, I just want to use LabView to manage everything. I know I don't really need it but I want to learn how to do it and have something that works.
    So I would like to know if there is way to do what I wish to do, running my VB program with parameters coming from LabView.
    Thanks

  • Problem in running a program installed in SD Memor...

    Hi,
    I'm having problem to run an installed program in the SD card. When a choose to install a new program in the SD card, it work fine, after finish the intall process I can run the application with no problem. But after I shutdown the phone and start it again I can't run the application no more, the icon appears in the screen but I click on it and nothing happens. When I install the same application in the Phone Memory I don't have this problem, It always starts. Could some one help me to solve this problem.
    Thanks.

    Hi,
    You said that after ejecting the SD card and
    inserting it again,you can run the program from
    the SD card. This means that the issue has been
    solved. But if still persists, check the "Running
    applications menu" and see whether there are programs
    running in the background. If you see running programs,
    delete them, because running programms can sometimes
    cause similar problems.
    Regards.
    Fattan
    Message Edited by fattan on 11-Sep-2008 07:32 PM

  • I need to buy windows 7 so that i can use bootcamp to run autocad program

    I need to find out what version of windows 7 i should buy to use bootcamp on my mac so that i can run an autodesk/ autocad program

    The Boot Camp Help guides are located here: https://www.apple.com/support/bootcamp/
    The Boot Camp Discussion Community is located here: https://discussions.apple.com/community/windows_software/boot_camp

  • How to Install crystal run time programs with out designer.

    Can anyone suggest me  how to install crystal run time program with out installing entire designer software.
    Is it coming along with CR software package, which we have to do custom install or is it coming as a different package.  
    Currently my client is using only the run time programs to trigger crystal  report from VB app but developers have installed entire software for development.  We need to figure out how this install can be done, as it was done long time before and folks who have done it left the company.  
    Any suggestion on this would be of great help to me.

    See this wiki:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0
    Ludek

  • Can't run any program that uses Adobe Air

    I have updated Adobe air to the latest.  Now when I run a program that uses Air the Adobe Air Updater launches and that is as far as I get.  I then have to force quit the Updater and the program I ran (ie SVBuilder Pro).
    Here is the log.
    Process:         Adobe AIR Application Installer [1235]
    Path:            /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Identifier:      com.adobe.air.ApplicationInstaller
    Version:         3.2 (3.2.0.2070)
    Code Type:       X86 (Native)
    Parent Process:  launchd [119]
    Date/Time:       2012-05-17 08:51:09.582 -0700
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          64 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  43 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      D6C68B2A-1467-4C5E-B5C2-1D4CF4AB8A0A
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
        __TEXT                 0000000000001000-0000000000007000 [   24K] r-x/rwx SM=COW  /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Application Specific Information:
    objc[1235]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   WebKit.dylib                            0x0aad1c4b WebKitGetAPI + 639261
    1   WebKit.dylib                            0x0aabf63f WebKitGetAPI + 563985
    2   WebKit.dylib                            0x0aabf01c WebKitGetAPI + 562414
    3   WebKit.dylib                            0x0aadbe19 WebKitGetAPI + 680683
    4   WebKit.dylib                            0x0aadd219 WebKitGetAPI + 685803
    5   WebKit.dylib                            0x0ae25cf6 WebKitGetAPI + 4129224
    6   WebKit.dylib                            0x0ae239b5 WebKitGetAPI + 4120199
    7   WebKit.dylib                            0x0aa35aed 0xaa30000 + 23277
    8   com.adobe.AIR                           0x02f81440 FREGetObjectAsBool + 17964
    9   com.adobe.AIR                           0x02f8153a FREGetObjectAsBool + 18214
    10  com.adobe.AIR                           0x028cc5c2 0x27a5000 + 1209794
    11  com.adobe.AIR                           0x028bda7b 0x27a5000 + 1149563
    12  com.adobe.AIR                           0x028be2a9 0x27a5000 + 1151657
    13  com.adobe.AIR                           0x028ad5ea 0x27a5000 + 1082858
    14  com.apple.Foundation                    0x926e7df1 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49
    15  com.apple.CoreFoundation                0x97747903 ___CFXNotificationPost_block_invoke_1 + 275
    16  com.apple.CoreFoundation                0x97712688 _CFXNotificationPost + 2776
    17  com.apple.Foundation                    0x926d2fde -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    18  com.apple.Foundation                    0x926e8272 -[NSNotificationCenter postNotificationName:object:] + 55
    19  com.apple.AppKit                        0x92b9b02e -[NSApplication terminate:] + 2311
    20  com.apple.Foundation                    0x926dc792 __NSFireDelayedPerform + 615
    21  com.apple.CoreFoundation                0x9771f2a6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    22  com.apple.CoreFoundation                0x9771ec37 __CFRunLoopDoTimer + 743
    23  com.apple.CoreFoundation                0x976fdcd0 __CFRunLoopRun + 1888
    24  com.apple.CoreFoundation                0x976fd1dc CFRunLoopRunSpecific + 332
    25  com.apple.CoreFoundation                0x976fd088 CFRunLoopRunInMode + 120
    26  com.apple.HIToolbox                     0x9ae20723 RunCurrentEventLoopInMode + 318
    27  com.apple.HIToolbox                     0x9ae27a8b ReceiveNextEventCommon + 381
    28  com.apple.HIToolbox                     0x9ae278fa BlockUntilNextEventMatchingListInMode + 88
    29  com.apple.AppKit                        0x92b940d8 _DPSNextEvent + 678
    30  com.apple.AppKit                        0x92b93942 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    31  com.apple.AppKit                        0x92b8fcb1 -[NSApplication run] + 911
    32  com.adobe.AIR                           0x027add0a 0x27a5000 + 36106
    33  com.adobe.AIR                           0x027adef7 0x27a5000 + 36599
    34  com.apple.CoreFoundation                0x9775cd11 -[NSObject performSelector:withObject:] + 65
    35  com.adobe.air.ApplicationInstaller          0x00002f93 start + 2567
    36  com.adobe.air.ApplicationInstaller          0x000025c1 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9a21490a kevent + 10
    1   libdispatch.dylib                       0x978e9e10 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x978e885f _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9a21383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97e3ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97deb42c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x02d43e65 0x27a5000 + 5893733
    4   com.adobe.AIR                           0x02b7ffbd 0x27a5000 + 4042685
    5   com.adobe.AIR                           0x02d43f7f 0x27a5000 + 5894015
    6   com.adobe.AIR                           0x02d43ff9 0x27a5000 + 5894137
    7   com.adobe.AIR                           0x02d44094 0x27a5000 + 5894292
    8   libsystem_c.dylib                       0x97e36ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x97e3a6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9a21383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97e3ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97deb42c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x02d43e65 0x27a5000 + 5893733
    4   com.adobe.AIR                           0x02b7ffbd 0x27a5000 + 4042685
    5   com.adobe.AIR                           0x02d43f7f 0x27a5000 + 5894015
    6   com.adobe.AIR                           0x02d43ff9 0x27a5000 + 5894137
    7   com.adobe.AIR                           0x02d44094 0x27a5000 + 5894292
    8   libsystem_c.dylib                       0x97e36ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x97e3a6de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9a211c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9a2111f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x976f49da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x976fdb04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x976fd1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x976fd088 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIO                   0x9ca78ba2 CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIO                   0x9ca6e70d CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x97e36ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x97e3a6de thread_start + 34
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x9a211c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9a2111f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x976f49da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x976fdb04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x976fd1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x976fd088 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9273c0c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x9272fe25 -[NSThread main] + 45
    8   com.apple.Foundation                    0x9272fdd5 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x97e36ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97e3a6de thread_start + 34
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x9a213b42 __select + 10
    1   com.apple.CoreFoundation                0x9774be15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x97e36ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x97e3a6de thread_start + 34
    Thread 7:: JavaScriptCore: FastMalloc scavenger
    0   libsystem_kernel.dylib                  0x9a21383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97e3ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97deb42c pthread_cond_wait$UNIX2003 + 71
    3   WebKit.dylib                            0x0ab8bda3 WebKitGetAPI + 1401461
    4   WebKit.dylib                            0x0ab8be11 WebKitGetAPI + 1401571
    5   libsystem_c.dylib                       0x97e36ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x97e3a6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9a21402e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97e38ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97e3a6fe start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x9a21402e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97e38ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97e3a6fe start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib                  0x9a21402e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97e38ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97e3a6fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0aad1b51  ecx: 0x087722f8  edx: 0xbfffde6c
      edi: 0x0b0b1000  esi: 0x0b0b4f00  ebp: 0xbfffde48  esp: 0xbfffddd0
       ss: 0x00000023  efl: 0x00010246  eip: 0x0aad1c4b   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
        0x1000 -     0x6ff7 +com.adobe.air.ApplicationInstaller (3.2 - 3.2.0.2070) <8C7B28C9-BC04-C150-3F97-A6D89200D6B1> /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
       0xc2000 -    0xc6ffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
       0xcb000 -    0xd0fff  com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <BAD1E0E6-10E6-342C-BEB8-B1706F0CE2CF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
      0x700000 -   0x729ffb  com.apple.cmio.DAL.VDC_4 (212.0 - 3199.1.1) <B2B073CA-4445-35FA-ACAC-7E9073F2571F> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC
      0x733000 -   0x793ff7  com.apple.CMIOQTUnits (212.0 - 3199.1.1) <87E1A270-B03E-3FC7-A18A-EF4209557352> /System/Library/Frameworks/CoreMediaIO.framework/Resources/QuickTimeUnits/CMIOQTUnits.bun dle/Contents/MacOS/CMIOQTUnits
      0x7a3000 -   0x7d3ff7  com.apple.FWAVC (201.47 - 47) <A9CB622C-67BB-3258-829A-66EDAFAAC3A7> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x27a5000 -  0x391afc7 +com.adobe.AIR (??? - 3.2.0.2070) <7EBAA6F0-794A-DE37-D04D-942F7073DE61> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x55d9000 -  0x5612ff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2330) <8C6BCE18-BB4B-3507-AF89-433E582DB4F0> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x561d000 -  0x5627fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <811CF4D6-15B2-3EDA-B026-5E4B28C0F742> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComponents
    0x5632000 -  0x565aff3  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2330) <906183BF-A075-32AC-9121-03B80EA62E34> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/QuickTimeIIDCDi gitizer
    0x5662000 -  0x56b1fff  com.apple.QuickTimeUSBVDCDigitizer (2.7.5 - 2.7.5) <FB8955F5-FB96-3D3E-9BD4-5A5952C902A8> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/QuickTimeUSBV DCDigitizer
    0x56cf000 -  0x583cffb  GLEngine (??? - ???) <D73F1031-6DD3-38EB-966B-7A2C9F17F023> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x5870000 -  0x5967ffb  libGLProgrammability.dylib (??? - ???) <FA509930-D201-372B-B787-18CBD8477D06> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x598b000 -  0x59b8ff8  GLRendererFloat (??? - ???) <70ADE58D-B399-3279-9774-2D5929D5FCB1> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x5f40000 -  0x5f44ffb  libFontRegistryUI.dylib (??? - ???) <D57C050B-411F-3481-BFFA-775EDCAA1D37> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0x7ed4000 -  0x8174fe7  com.apple.ATIRadeonX2000GLDriver (7.18.18 - 7.1.8) <A9F04AD5-F55B-3D26-8C7C-C90AFCF7394A> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
    0xaa30000 -  0xb02ffeb +WebKit.dylib (??? - ???) <27589148-B9D5-FBC0-5E5A-6D3897DE86D6> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
    0x8fe6f000 - 0x8fea1aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x900a1fef  com.apple.ink.framework (1.4 - 110) <1A3E2916-60C1-3AC1-86BF-202F6567B228> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x900a2000 - 0x900a2fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x902ea000 - 0x902f5ffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9030f000 - 0x9030ffff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90310000 - 0x9042efec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x9042f000 - 0x906dcff3  com.apple.JavaScriptCore (7534.56 - 7534.56.6) <94C4DC32-FE6B-3D5C-93B5-75753F38A0C0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x906ff000 - 0x90704ffd  libGFXShared.dylib (??? - ???) <1CA9B41B-2C61-38F8-ABAC-1D5511478F5C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x90705000 - 0x9072effe  com.apple.opencl (1.50.69 - 1.50.69) <2601993F-F3B3-3737-91AE-4A5795C52CD5> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x90735000 - 0x90793fff  com.apple.coreui (1.2.2 - 165.10) <C6B099D6-7F02-3971-99B9-E415308959CF> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x907c9000 - 0x90824ff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x90825000 - 0x90aaafe3  com.apple.QuickTime (7.7.1 - 2330) <060B6A47-FC15-3D38-8EFB-FCF38680510B> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90aab000 - 0x90aafffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90ab0000 - 0x90ab0fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x90ae4000 - 0x90fc0ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x90fc1000 - 0x90fe9ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <AB530FB2-8BD1-3328-95E8-CF449F0429CA> /usr/lib/libxslt.1.dylib
    0x90fea000 - 0x91067ffe  com.apple.PDFKit (2.6.3 - 2.6.3) <780A5EE1-48CB-3B80-BBDF-1081512BA0DC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x9109a000 - 0x9109bfff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x9109c000 - 0x91194ff7  libFontParser.dylib (??? - ???) <1A0DA421-62B2-3AA7-9F62-0E01C1887D09> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x91195000 - 0x91285ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9133d000 - 0x91396fff  com.apple.HIServices (1.21 - ???) <5F4D3797-32E2-3709-85F4-4B56515A17D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x91397000 - 0x9139affb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9139b000 - 0x913a5ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x913a6000 - 0x9155aff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x915a7000 - 0x915acff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x915c6000 - 0x915c7fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x915d7000 - 0x915dbff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91659000 - 0x9173cff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x9173d000 - 0x91740ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <1211BEEB-31C9-3A5D-9E71-10FC4A541D1E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91741000 - 0x91a43fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <9692D838-85A5-32C1-B7FB-7C141FFC2557> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x91b44000 - 0x91b46ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x91b47000 - 0x921c2fe5  com.apple.CoreAUC (6.16.11 - 6.16.11) <E52E2D54-138B-3F44-AA2C-309FB876DF6A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x921ed000 - 0x9224fffb  com.apple.datadetectorscore (3.0 - 179.4) <3A418498-C189-37A1-9B86-F0ECB33AD91C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x92250000 - 0x92272ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x922a7000 - 0x9230bfff  com.apple.framework.IOKit (2.0 - ???) <88D60E59-430D-35B8-B1E9-F5138301AEF9> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9230c000 - 0x9257fffb  com.apple.CoreImage (7.98 - 1.0.1) <EDC91BA1-673D-3B47-BFD5-BBF11C36EE6A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x9258d000 - 0x9261afe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x92627000 - 0x926b4ff7  com.apple.CoreText (220.20.0 - ???) <0C3EDD4F-6112-353A-8A3A-8D630182C22A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x926b5000 - 0x926cffff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x926d0000 - 0x929daff3  com.apple.Foundation (6.7.2 - 833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x929e6000 - 0x929e8ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x92a78000 - 0x92aeefff  com.apple.Metadata (10.7.0 - 627.32) <650EE880-1488-3DC6-963B-F3D6E043FFDC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x92aef000 - 0x92b11ffe  com.apple.framework.familycontrols (3.0 - 300) <5BCCDDC2-AFAC-3290-AEEF-23B2664CA11F> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x92b12000 - 0x92b61ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <7FF10781-5418-37BB-A6B3-1606DA82CBFF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92b6d000 - 0x92b89ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x92b8a000 - 0x9361fff6  com.apple.AppKit (6.7.3 - 1138.47) <D8CD06D7-F18C-39BE-BC68-B343F87F0469> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93679000 - 0x9369cfff  com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9369d000 - 0x93b12ff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <3E2BF587-5168-3FC5-9D8D-183A9C7C1DED> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x93b13000 - 0x93b13ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x93b14000 - 0x93b39ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x93b3a000 - 0x93bc4ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x93bc5000 - 0x93bd3fff  com.apple.opengl (1.7.7 - 1.7.7) <2D362F15-5EA6-37B6-9BCB-58F2C599ACDA> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93bd4000 - 0x93bd5fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x93c5a000 - 0x93c6fff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <1C8933A9-C7C6-36E9-9D8B-0EF08ACA3315> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x93f50000 - 0x93f50fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93f93000 - 0x93f9bfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93fe4000 - 0x94d34ffb  com.apple.QuickTimeComponents.component (7.7.1 - 2330) <91F3ABCA-3BB8-3B01-AA3F-37B3D798755A> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x94d35000 - 0x94d3cffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94d3d000 - 0x94e0dffb  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <94798A2B-4C7A-30EA-9920-283451BDB9FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x94e0e000 - 0x94e11ffd  libCoreVMClient.dylib (??? - ???) <361CCFAF-8565-383F-915F-0B059C793E42> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x94e53000 - 0x94e57fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x94ea3000 - 0x94ee0ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <1C757924-4E54-3522-A885-99795EA10228> /usr/lib/libcups.2.dylib
    0x94ee1000 - 0x94f46ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x94f47000 - 0x9502ffff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x95030000 - 0x95043ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x9504b000 - 0x9508bff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x9508c000 - 0x9509dfff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x950d2000 - 0x95115ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x95118000 - 0x9514ffef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9526f000 - 0x952ccffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x952cd000 - 0x953deff7  libJP2.dylib (??? - ???) <845C74F4-1074-3983-945F-EB669538CAA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x953df000 - 0x953dfff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x953ee000 - 0x957f0ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x9582a000 - 0x958c0ff7  com.apple.LaunchServices (480.33 - 480.33) <5A4BF529-391E-3987-940E-287ACE56078A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x958c1000 - 0x959d1fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x95b6b000 - 0x95b79fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x95b7a000 - 0x95ca6ff9  com.apple.CFNetwork (520.4.3 - 520.4.3) <E9E315D4-CE22-3715-BED2-BB95AD5E10E8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x95ca7000 - 0x95caefff  com.apple.agl (3.2.0 - AGL-3.2.0) <ED5A5B8A-0014-3897-951F-628391333256> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95caf000 - 0x95ec9ff7  com.apple.imageKit (2.1.2 - 1.0) <0A14D083-5217-3180-A354-A5FDC754E3FC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x9690f000 - 0x9690ffff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96910000 - 0x96960ff8  libTIFF.dylib (??? - ???) <4DC2025D-15E7-35CA-B7C5-9F73B26C8B53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x96961000 - 0x969a3ff7  com.apple.CoreMedia (1.0 - 705.78) <D88AC852-8844-3B73-81C8-DF605F00AB40> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x969a4000 - 0x969b4ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x969b5000 - 0x96a8cff3  com.apple.avfoundation (2.0 - 180.40) <B906D052-D92D-3D35-BF59-F6D0AE692EC2> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x96a8d000 - 0x973b759b  com.apple.CoreGraphics (1.600.0 - ???) <62026E0C-E30F-3FF0-B0F6-6A2D270B20BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x973b8000 - 0x975b0ff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x975b1000 - 0x975ceff3  com.apple.openscripting (1.3.3 - ???) <33713C0B-B7D5-37AA-87DB-2727FDCC8007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x975d1000 - 0x97658fff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x97685000 - 0x9768cff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x9769b000 - 0x976a3ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x976bd000 - 0x976c1ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x976c2000 - 0x97899fe7  com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x978e5000 - 0x978e6ff7  libsystem_sandbox.dylib (??? - ???) <EBC6ED6B-7D94-32A9-A718-BB9EDA1732C9> /usr/lib/system/libsystem_sandbox.dylib
    0x978e7000 - 0x978f5fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <2F918480-12C8-3F22-9B1A-9B2D76F6F4F5> /usr/lib/system/libdispatch.dylib
    0x978f6000 - 0x978ffff3  com.apple.CommonAuth (2.2 - 2.0) <C3FD6EC2-8EB3-38FB-BBB7-05009CA49024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x97900000 - 0x97951ff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x97952000 - 0x9799bff7  libGLU.dylib (??? - ???) <5EE0B644-FAD6-3E3C-A380-9B0CDA0B6432> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9799c000 - 0x979edff9  com.apple.QuickLookFramework (3.2 - 500.16) <725FAE01-1597-38C7-841D-D9D83358921E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x97a19000 - 0x97a24ffb  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <A1764D2F-EB84-33DC-9ED5-CDA3B468FF3E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x97a25000 - 0x97a50fff  com.apple.GSS (2.2 - 2.0) <2C468B23-FA87-30B5-B9A6-8C5D1373AA30> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x97a51000 - 0x97a6dffc  libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x97a6e000 - 0x97b31fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <F2063FC8-2BE1-3B97-98AF-8796B0D4BE58> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x97b32000 - 0x97b7aff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <68B92FEA-F754-3E7E-B5E6-D512E26144E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x97b80000 - 0x97bbcffa  libGLImage.dylib (??? - ???) <504E7865-571E-38B4-A84A-D7B513AC84F5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x97bbd000 - 0x97c2cfff  com.apple.Heimdal (2.2 - 2.0) <2E1B8779-36D4-3C62-A67E-0034D77D7707> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x97dda000 - 0x97ea5fff  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <52421B00-79C8-3727-94DE-62F6820B9C31> /usr/lib/system/libsystem_c.dylib
    0x97eb4000 - 0x982a8ffb  com.apple.VideoToolbox (1.0 - 705.78) <BE955448-F79F-3136-A4AF-6EDBAFEDD9C2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x982a9000 - 0x98340ff3  com.apple.securityfoundation (5.0 - 55116) <EB53CEF7-4836-39FD-B012-6BC122ED4CE9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x98341000 - 0x98341fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98457000 - 0x98457fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
    0x9848b000 - 0x98494ffc  com.apple.DisplayServicesFW (2.5.4 - 323.3) <820C4B45-814A-3101-A1FA-044CA6D2FBC8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x98ec7000 - 0x98f19ff3  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <9C6A4134-0D1D-323F-BD07-1D88D258A7B4> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x99037000 - 0x9903aff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x9903b000 - 0x99046ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <EDA0F56F-CB2C-30BB-940D-C6A25B73C717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x99047000 - 0x99099ff7  libFontRegistry.dylib (??? - ???) <96E9602C-DFD3-3021-8090-60228CC80D26> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x990f4000 - 0x990faffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x99159000 - 0x99183ff1  com.apple.CoreServicesInternal (113.17 - 113.17) <41979516-2F26-3707-A6CA-7A95A1B0D963> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x99386000 - 0x993b4fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x993b5000 - 0x993b8fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9940a000 - 0x9940bffd  libCVMSPluginSupport.dylib (??? - ???) <22B85645-AA98-372B-BB55-55DCCF0EC716> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x996bf000 - 0x99a05fff  com.apple.MediaToolbox (1.0 - 705.78) <E6990E4A-B562-3051-86A6-B39E040BF766> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x99a06000 - 0x99b15fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <18CAAA9E-7065-3FF7-ACFE-CDB60E5426A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x99b1e000 - 0x99b54ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x9a1f9000 - 0x9a1faff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x9a1fb000 - 0x9a219ff7  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <3705DE40-E00F-3E37-ADB0-D4AE5F9950F5> /usr/lib/system/libsystem_kernel.dylib
    0x9a243000 - 0x9a281fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <19174EC0-DE0F-38EA-B5F3-7580E84677DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9a452000 - 0x9a472ff7  com.apple.RemoteViewServices (1.4 - 44.1) <1F831750-1E77-3013-B1A6-0DF528623790> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x9a478000 - 0x9a73bfff  com.apple.security (7.0 - 55148.1) <77754898-4FCD-3CA3-9339-F1058C852806> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9a73c000 - 0x9a73dfff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9a73e000 - 0x9a816ff6  com.apple.QuickLookUIFramework (3.2 - 500.16) <1598FDEB-8F90-3D42-AAA1-CD227F3C16BF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x9a817000 - 0x9a81fff3  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <D7F6E875-263A-37B5-B403-53F76710538C> /usr/lib/system/liblaunch.dylib
    0x9a820000 - 0x9a829fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9a82a000 - 0x9a82bff7  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <600909D9-BD75-386E-8D3E-7CBD29079DF3> /usr/lib/system/libquarantine.dylib
    0x9ad0c000 - 0x9ad17ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0x9ad18000 - 0x9ad25fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9ad39000 - 0x9adb4ffb  com.apple.ApplicationServices.ATS (317.11.0 - ???) <42238C8B-C93F-3369-A500-EC0F10EB2C80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x9adb5000 - 0x9ae1dff7  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <FE3304C5-C000-3DA0-9E53-0E4CA074B73B> /usr/lib/libc++.1.dylib
    0x9ae1e000 - 0x9b164ff3  com.apple.HIToolbox (1.9 - ???) <409E6397-0DCB-3431-9CCC-368317C62545> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x9b16c000 - 0x9b177fff  libkxld.dylib (??? - ???) <D8ED88D0-7153-3514-9927-AF15A12261A5> /usr/lib/system/libkxld.dylib
    0x9b178000 - 0x9b180ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x9b181000 - 0x9b1e3ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9b1e4000 - 0x9b1e7ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x9b1e8000 - 0x9b20effb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9b33e000 - 0x9b33eff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9b33f000 - 0x9b36eff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x9b467000 - 0x9b477fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x9b478000 - 0x9b4a2ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x9b600000 - 0x9b640ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x9b641000 - 0x9b7a3ffb  com.apple.QuartzCore (1.7 - 270.4) <6BC84C60-1003-3008-ABE4-779EF7B4F524> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9bc80000 - 0x9bcaeff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x9bcb3000 - 0x9bd57fff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9bd5a000 - 0x9beacfff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9bef2000 - 0x9bf08ffe  libxpc.dylib (77.19.0 - compatibility 1.0.0) <0585AA94-F4FD-32C1-B586-22E7184B781A> /usr/lib/system/libxpc.dylib
    0x9bf09000 - 0x9bf0dfff  libGIF.dylib (??? - ???) <A6F1ACAE-7B9B-3B3F-A54A-ED4004EA1D85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x9bf0e000 - 0x9bf10ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x9bf11000 - 0x9c073fff  com.apple.QTKit (7.7.1 - 2330) <DD58823D-D3E7-31CB-9DF9-ACB981F5A744> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9c074000 - 0x9c07affb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x9c07b000 - 0x9c098fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x9c099000 - 0x9c0aefff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9c0af000 - 0x9c0dcff9  com.apple.securityinterface (5.0 - 55022.4) <B59D9B2A-7FB8-32EC-B8D9-6D4DE76508F7> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x9c0dd000 - 0x9c0e1ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x9c0e2000 - 0x9c0f0ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x9c0f1000 - 0x9c0f2ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x9c0f3000 - 0x9c1b3ffb  com.apple.ColorSync (4.7.4 - 4.7.4) <0A68AF35-15DF-3A0A-9B17-70CE2A106A6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9c1b4000 - 0x9c56effb  com.apple.SceneKit (125.3 - 125.4) <48806882-FE04-36A5-83A1-A0D2F2FA03F9> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x9c580000 - 0x9c580fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9c581000 - 0x9c598ff8  com.apple.CoreMediaAuthoring (2.0 - 891) <69D569FD-670C-3BD0-94BF-7A8954AA2953> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x9c656000 - 0x9c6ceff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9c6cf000 - 0x9c6d6ff9  libsystem_dnssd.dylib (??? - ???) <D3A766FC-C409-3A57-ADE4-94B7688E1C7E> /usr/lib/system/libsystem_dnssd.dylib
    0x9c738000 - 0x9c73bffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x9ca6c000 - 0x9cabeffb  com.apple.CoreMediaIO (212.0 - 3199.1.1) <BBC14F4C-2748-3583-85E3-EF3A1F249370> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9cabf000 - 0x9cce8ffb  com.apple.QuartzComposer (5.0 - 236.7) <1504F5A4-FF1A-365E-9E01-30410C561C2C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x9ccf3000 - 0x9cd07ff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9cd0b000 - 0x9cde1aab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x9ce62000 - 0x9ced6fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x9ced7000 - 0x9cf38ffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    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: 3190
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=207.1M resident=172.0M(83%) swapped_out_or_unallocated=35.1M(17%)
    Writable regions: Total=96.6M written=13.8M(14%) resident=33.8M(35%) swapped_out=0K(0%) unallocated=62.8M(65%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 32.0M
    ATS (font support) (reserved)         4K        reserved VM address space (unallocated)
    CG backing stores                   224K
    CG image                              4K
    CG raster data                       64K
    CG shared images                   3448K
    CoreGraphics                          8K
    CoreServices                       4948K
    IOKit                               168K
    MALLOC                             27.5M
    MALLOC guard page                    32K
    Memory tag=240                     5652K
    Memory tag=242                       12K
    Memory tag=249                      156K
    SQLite page cache                   192K
    Stack                              68.6M
    VM_ALLOCATE                        28.7M
    __CI_BITMAP                          80K
    __DATA                             12.2M
    __DATA/__OBJC                       144K
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         42.8M
    __OBJC                             2452K
    __OBJC/__DATA                       176K
    __PAGEZERO                            4K
    __TEXT                            164.3M
    __UNICODE                           732K
    mapped file                       113.6M
    shared memory                       312K
    shared pmap                        7120K
    ===========                      =======
    TOTAL                             515.5M
    TOTAL, minus reserved VM space    515.5M
    System Profile:
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.33 GHz, 8 GB, SMC 1.52f9
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.64.8-P2P
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Hitachi HDS5C1010CLA382, 1 TB
    Serial ATA Device: PIONEER DVD-RW  DVRTS09
    USB Device: hub_device, 0x050d  (Belkin Corporation), 0x0234, 0x24300000 / 3
    USB Device: exernal hd, 0x059b  (Iomega Corporation), 0x0370, 0x24340000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x06110000 / 5

    Thanks for the crash log  It looks like you have AIR 3.2 installed.  Could you try updating to 3.3 and generate another log?
    http://get.adobe.com/air

  • Can I run a program that uses IE on my phone?

    At work we have a program which uses IE to run. And when I try access it on my iPhone I get a message saying my browser is not supported. Is there anything I can do on the phone? I can't change the program but would like to be able to view it on my phone.
    Thanks!

    Sound likely the company software runs activeX controls for the dubious security they supposedly provide them (NOT YOU on your iPhone/Mac/Pc)
    These require IE on Windows for the hook.
    activeX is not licensed on OSx and there hasn't been a native Mac IE application for some years now.
    What you could try is to install logmein ignite on your iphone, logmein on your work PC (IF the IT starzi allow!). Then you could vnc to the PC with Logmein and view IE from your phone.
    Having said that with Logmein you will access all your files via your phone and have NO security issues or local stored data - TELL the starzi that !

  • Can I use the labview run-time engine 2010 with my LV 2012 program?

    Hi all,
    I will receive the new Labview Developer Suite 2012 DS2 in a few days and
    I am wondering if it is possible to run LV2012 programs on the LV run-time engine 2010 or is it necessary to update all my clients from run-time engine 2010 to 2012?
    Stay Hungry, Stay Foolish
    Solved!
    Go to Solution.

    Hi Benjamin,
    You will not be able to use the LabVIEW 2010 run-time engine with LabVIEW 2012 applications.  Versions of run-time engines need to correspond with the version of LabVIEW that you have installed.
    The following links direct you to our download pages for the run-time engine:
    The 32-Bit Run-Time Engine can be downloaded from our website as can the 64-Bit Run-Time Engine, depending on which version of operating system you, use by clicking the link under "Standard Download".
    Hope this helps.
    Marshall B
    Applications Engineer
    National Instruments UK & Ireland

  • HT5639 At present I have Windows programs installed using parallels 7. I now wish to delete all Windows based programs and revert the hard drive back to its original state ie single partition.  How do I go about it??

    At present I have windows based programs installed using parallels 7 on my Imac. I now wish to delete all the Windows programs etc and revert the Hard Drive to its original setting i.e single partition. How do I go about it??

    It's not clear if you installed Windows in a virtual machine or you installed Windows in Boot Camp but you run it in Parallels.
    If you installed Windows in Boot Camp, open "Boot Camp Assistant" (it's in /Applications/Utilities) and follow the steps to restore your hard disk into one volume. If you installed Windows on a virtual machine, just open Parallels and delete the virtual machine where you have installed Windows

  • Unable to Run C Program using Xcode "Stop Executable"

    Hi All
    Have been using the Terminal to compile programs built through Xcode but now want to use Xcode itself. Everytime I press build and go it builds successfully but won't run. I found a tutorial that mentioned if you are using Xcode 3.0 (I am) you can't use build and run, for output, you have to go to run and then push console.Ok that works. I then found someone with the same issue as mine everytime you want to build and run it appears with another window saying "Stop Executable"They were told to make sure they were building the .c file in a project and not building it from a text editor and then importing. I always build new projects.
    I want to interact with the program not just see its output? so my question is can I interact with programs i.e. User can enter data or strings or, do I have to build an interface to do this through Xcode. I Also forgotten to mention I found information through the forum that said to go to First Aid through utilities and repair file permissions, this has been done but still does not work. Many thanks for your time and as you can probably tell I am new to Xcode.

    To run your command-line program in Xcode, open the debugger console by choosing Run > Console. Run your program by choosing Run > Run or Build > Build and Run. You'll have to build and run if you haven't compiled the program before. Your program will run, and you will see output in the console. You interact with the program from the console.
    If you're not able to enter input in the console, choose Run > Sync with Debugger. If doing that doesn't work, you can run your program in the Terminal application by double-clicking the program from the Finder. It's less convenient than running it in Xcode, but you'll at least be able to run the program and interact with it.

  • To run a program in BACKGROUND using SUBMIT

    I need to run a program in background using the SUBMIT option. Here i have to pass an internal table form one program to another which will be used to update sales orders using BDC.
    Questions
    1} Can we execute a program in background using SUBMIT?
    2} I am sending data to a MEMORY ID , if i run the program in background will the memory id work. As in do  memory IDs work in the background.
    Thanks in Advance

    refer  same thread.
    Re: Problem with SUBMIT in Background

  • Itunes will not connect to the internet or access store with working internet connection. ive already tried updating to latest version and turning off windows firewall. running a new dell computer w/ windows 7 with minimal programs installed

    Itunes will not connect to the internet or access store with working internet connection. ive already tried updating to latest version and turning off windows firewall. running a nItunes will not connect to the internet or access store with working internet connection. ive already tried updating to latest version and turning off windows firewall. running a new dell, windows 7 ultimate, no virus or firewall programs installed.

    This my sound too simple, but I just kept clikning on the arrow next to the selected music and it finally "Kicked" in.
    I live in Europe ,So Be persistent and don't give up !  Aug. 2013

  • I just installed XQuartz to run a program and I want to know what it is for

    I am aware that X11 XQuartz is necessary for a program to run so I installed it but then it asked me to log out and then log back in. It also said it was a windows server. Does that mean XQuartz replaced the default windows server in OSX Mavericks? Is there any risk to this? I don't want to run this program that much and I don't want to risk any other programs not working correctly because of a different library. I would uninstall it if there is a risk.
    BTW I obviously don't know much about what this is or what it does.

    I did know what it was for. When I attempted to open the software, Inkscape in this case, OSX displayed a prompt that said the software I was trying to run needed it a newer version of X11 called XQuartz. I then verified this information online before installing it.
    BUT once I installed XQuartz it popped up this dialog saying, "You will need to log out and log back in to make XQuartz your default X11 server."
    Which is why I posted here.

  • I'm running 5.0.1 which isn't compatible with the website used by my graduate studies program. In lieu of switching to IE 9 to access this site, is there any way to gain access to Firefox 4.0?

    The website used by my graduate studies program doesn't yet support Firefox 5.0. In lieu of switching browsers, I would like to get an older version of Firefox (4.0) to support my studies.
    Thanks.

    You can install the portable Firefox 3.6.19 version to access websites that do not work with Firefox 5+.
    *http://portableapps.com/apps/internet/firefox_portable#legacy
    *http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • Error message is showing while connecting to itunes - "This iphone cannot be used because the required software not installed. Run the itunes installer to remove the itunes, then install the 64bit  version of itunes - Pls Help

    I tried to install in my Sony Vaio Laptop - Model Name SVF15218SGW Serial No 54****************954. After installation of itunes, when i am trying to connect error message is showing as follows -
    "This iphone cannot be used because the required software not installed. Run the itunes installer to remove the itunes, then install the 64bit  version of itunes".
    i already installed 64bit version. but not connecting my iphone with itunes
    PLEASE HELP.!!!!
    <Personal Information Edited by Host>

    Hello Negaz
    When you uninstalled iTunes, did you uninstall it by using the article below or just uninstalled iTunes? The best practice is to remove not only iTunes, but also other associating software in the order that the first article give. If that does not work, then check out the second article for more troubleshooting options for connecting your iPhone to your computer.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Regards,
    -Norm G.

Maybe you are looking for

  • Problem with forms 5.0 and Controls Active X OCX

    I need help about a OCX in a form made in Developer Forms 5.0. The control connects a SQL Server Data Base , and when I use it in Microsoft Power Point it works good, I can see parameters and what ever, but when I attach it in a form in Developer For

  • Web Template Inconsistent

    Hi Guys, I have a problem with my web templates. I transported my web template to QA system and when I try to open it, it says that the web template is "Inconsistent". It opens fine in Dev. Do u think I have missed something in the transportation. I

  • Connection object as a key in a hashtable

    Hi, I am debugging some code where a Connection object is used as a key in a hashtable. Is this ok? Will the equals() and hashCode method be defined properly for a Connection object? Appreciate your help. Thanks!

  • ACR colour temperature changes not honoured

    Using Win7 64bit, CS6 perpetual with xmp files as sidecars, I have made droplets that will open a nef file and run various processes before saving the file. I have recently seen an issue where the droplet will not honour any colour temperature change

  • BDC for FF67

    Dear friends, I need ur help for uploading the BRS datas in FF67 thru BDC object.I've created one object and did some coding.But while recording/executing the object...its recording/taking only one line item of my jtab table items,which i've marked i