Issue when "AT NEW " or "AT END OF " is executed

Hi,
I face an issue, when "AT NEW <>" or "AT END OF <>" line gets executed: the loop structure which fetches record from internal table, gets reset every time when either of above two statements are executed. But, whenever loop is called and the structure gets assigned with value, it seems to be fine. Only when above two statements are executed, the problem is introduced. I checked it in debug mode. Not sure on how to solve it. please help.
Thanks,
Gaurav.

Hi,
When the AT NEW or AT END command get executed in that time the structure which toy are using will make all the fields * other except the field on which you do the AT NEW or AT END.
Hence you need to pass that structure values to the another structure before the AT NEW and AT END and use that structure in the AT NEW and AT END so ypu will get all the values inside these functions.
loop at t_temp to lw_temp.
lw_temp1 = lw_temp.
AT NEW field name
Lw_temp =lw_temp1.
ENDAT.
ENDLOOP

Similar Messages

  • New issue , when importing new paid app spreadsheet into Configurator iTunes attempts to download an ipa file for each redeem code .  If you have 100 codes 100 downloads will start. Call enterprise support if you are seeing this issue.

    New issue , when importing new paid app spreadsheet into Configurator iTunes attempts to download an ipa file for each redeem code .  If you have 100 codes 100 downloads will start. Call enterprise support if you are seeing this issue.

    New issue , when importing new paid app spreadsheet into Configurator iTunes attempts to download an ipa file for each redeem code .  If you have 100 codes 100 downloads will start. Call enterprise support if you are seeing this issue.

  • BUGREPORT: Timestamp issue when creating new url mappings

    We have come accross and issue when adding multiple databases and subsiqent url mappings.
    the issue presented in the log is
    ####<Nov 16, 2012 10:49:52 AM CST> <Error> <HTTP> <adeoraapp03.santos.com> <WLS_APEX> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1353025192413> <BEA-101020> <[ServletContext@955221946[app:apex module:apex.war path:/apex spec-version:2.5]] Servlet failed with Exception
    java.lang.IllegalArgumentException: Not a correctly formatted timestamp: 2012-11-15T23:52:58.0080Z
         at oracle.dbtools.common.util.Timestamps.valueOf(Timestamps.java:61)
         at oracle.dbtools.common.config.db.UrlMappings$Builder$1PoolFilter.startElement(UrlMappings.java:199)
         at oracle.dbtools.common.x3p.MatchFilter.startElement(MatchFilter.java:54)
         at oracle.dbtools.common.x3p.impl.Event.invoke(Event.java:52)
         at oracle.dbtools.common.x3p.impl.Chain$EventIterator.advance(Chain.java:125)
         at oracle.dbtools.common.x3p.impl.Chain$EventIterator.advance(Chain.java:79)
         at oracle.dbtools.common.util.AbstractIterator.next(AbstractIterator.java:28)
         at oracle.dbtools.common.x3p.impl.X3PReaderAdaptor.next(X3PReaderAdaptor.java:34)
         at oracle.dbtools.common.config.db.UrlMappings$Builder.read(UrlMappings.java:170)
         at oracle.dbtools.common.config.db.UrlMappings.existing(UrlMappings.java:99)
         at oracle.dbtools.common.config.db.UrlMappings.urlMappings(UrlMappings.java:93)
         at oracle.dbtools.common.config.db.DatabasePoolConfig.loadFromXML(DatabasePoolConfig.java:285)
         at oracle.dbtools.common.config.db.DatabasePoolConfig.loadFromDBFromTime(DatabasePoolConfig.java:181)
         at oracle.dbtools.common.config.db.DatabasePoolConfig.getPoolInfo(DatabasePoolConfig.java:54)
         at oracle.dbtools.rt.jdbc.DatabaseConnectionFilter.poolInfo(DatabaseConnectionFilter.java:60)
         at oracle.dbtools.rt.jdbc.DatabaseConnectionFilter.applyDatabaseConnectionInfo(DatabaseConnectionFilter.java:71)
         at oracle.dbtools.rt.web.HttpEndpointBase.service(HttpEndpointBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    This seems to be due to a time format issue when adding new database mapping in the url-mappings
    when running the following command
    @:as11g_pfrd_prod> java -jar apex.war map-url --type base-path /apexpoc apexpoc
    Nov 16, 2012 10:22:57 AM oracle.dbtools.common.config.file.ConfigurationFolder logConfigFolder
    INFO: Using configuration folder: /data1/software/oracle/product/as11g_pfrd_prod/user_projects/domains/PFRD_Domain/servers/WLS_APEX/apex_config/apex
    @:as11g_pfrd_prod> pwd
    /data1/software/oracle/product/as11g_pfrd_prod/user_projects/domains/PFRD_Domain/servers/WLS_APEX/stage/apex
    After running the command the following entry was added to url mappings file
    This resulted in the following entries in url-mapping.xml, (the timestamps are in to be in UTC):
    <pool base-path="/apexpoc" name="apexpoc" updated="2012-11-15T23:52:58.0080Z"/>
    Which caused the above stack trace and also caused a internal error 500 on the browser when trying to access APEX
    we removed the url mapping and ran the following command(at a different time in the day)
    @:as11g_pfrd_prod> pwd
    /data1/software/oracle/product/as11g_pfrd_prod/user_projects/domains/PFRD_Domain/servers/WLS_APEX/stage/apex
    @:as11g_pfrd_prod> java -jar apex.war map-url --type base-path /apexpoc apexpoc
    Nov 16, 2012 10:58:35 AM oracle.dbtools.common.config.file.ConfigurationFolder logConfigFolder
    INFO: Using configuration folder: /data1/software/oracle/product/as11g_pfrd_prod/user_projects/domains/PFRD_Domain/servers/WLS_APEX/apex_config/apex
    which resulted in a new entry in the url mappings table
    <pool base-path="/apexpoc" name="apexpoc" updated="2012-11-16T00:28:35.479Z"/>
    And the apex listener worked again

    Thanks Colm,
    Was this a known issue? If so do we have a common "thread" for known issues?
    And do we have any idea when 2.0 Final is coming out?

  • Issue when opening new windows using JSF CommandLink

    Hi,
    I'm opening this thread to follow up on a topic posted on the old Sun Developer Forum: http://forums.sun.com/thread.jspa?threadID=5435239 . That post was never answered and I am having the same problem.
    To summarize (and I'll quote from the original post):
    "I am having an issue where when I open a page in a new window from a link in my primary window any button or link clicked on the primary window after that opens a new window."
    "Any other actions on the primary page should keep navigation within the primary window. This issue does not start occurring until after the desired new window is opened the first time."
    Anyone has run into this problem and found a solution?
    Marc

    This is the command link code that, once this gets called, anything else on the page will open this window again:
    <h:commandLink immediate="true" styleClass="commandLink" target="_blank" style="text-decoration:none"
                id="pdfLink action="#{Bean.method}">
         <hx:graphicImageEx id="imageEx2" styleClass="graphicImageEx" value="../images/pdfButton.gif">
         </hx:graphicImageEx>
    </h:commandLink>

  • Issues when adding new objects

    A few questions regarding changes in Toplink from 2.5 to the current version.
    Say I had object A which contains a collection of Bs and a collection of Cs.
    Now when I want to save A and Bs and Cs to the database as an insert.
    Is the following code correct ?
    A a = new A();
    A cloneA = (A)uow.registerObject(a);
    Vector bCollectionClone = uow.registerAllObjects(new Vector(bCollection));
    Vector cCollectionClone = uow.registerAllObjects(new Vector(cCollection));
    uow.commit();
    This seemed to work in 2.5. According to the API java docs this should work even today.
    The reason I am asking is all of these -A, B and C are new objects. Should they be registered with registerNewObject();
    Is it incorrect to register a new object with cloning ?

    I forgot to add a couple of lines of code to that snippet
    A a = new A();
    A cloneA = (A)uow.registerObject(a);
    Vector bCollectionClone = uow.registerAllObjects(new Vector(bCollection));
    Vector cCollectionClone = uow.registerAllObjects(new Vector(cCollection));
    cloneA.setBCollection(bCollectionClone);
    cloneA.setCCollection(cCollectionClone());
    uow.commit();
    A few questions regarding changes in Toplink from 2.5
    to the current version.
    Say I had object A which contains a collection of Bs
    and a collection of Cs.
    Now when I want to save A and Bs and Cs to the
    database as an insert.
    Is the following code correct ?
    A a = new A();
    A cloneA = (A)uow.registerObject(a);
    Vector bCollectionClone = uow.registerAllObjects(new
    Vector(bCollection));
    Vector cCollectionClone = uow.registerAllObjects(new
    Vector(cCollection));
    uow.commit();
    This seemed to work in 2.5. According to the API java
    docs this should work even today.
    The reason I am asking is all of these -A, B and C
    are new objects. Should they be registered with
    registerNewObject();
    Is it incorrect to register a new object with cloning

  • Issues when creating new web items (chart) - No BLOB!

    Please help us...
    Background:
    We have created a copy of the SAP standard class: CL_RSR_WWW_ITEM_CHART, named: ZCL_RSR_WWW_ITEM_CHART and maintained the tables:
    - rsrrenderer
    - rsrrendereratr
    - rsrrenderert
    Problem occurred:
    -When running a chart using our new web item it’s not  possible to change chart type other than the default type, bar chart. We have noticed that, for the new web item, the parameter “TMP_CHART_DATA_HANDLE” is not copied to the HTML-code as for the standard web item (CL_RSR_WWW_ITEM_CHART) when executing “Edit chart” in the properties tab. When debugging the code we notice that no BLOB is being created for our copy-web-item, and that's why no chart-settings are changed.
    Questions:
    1.How to get the functionality “edit chart” to work  properly in the new class ZCL_RSR_WWW_ITEM_CHART?
    3.If it’s not possible to use the “edit chart” functionality in a copied web item then what’s the attribute to use in the HTML editor in Web Application Designer in order to set chart type? Or any other suggestions...
    Regards
    Daniel
    Message was edited by: Daniel Vasiljevic

    Prag,
    Try this. Execute the following in a SQL window started by a userid that has been granted the USER ADMIN system privilege:
    ALTER USER BODS1 VALID FROM NOW    UNTIL FOREVER;
    You can use a date instead of FOREVER --- '2016-12-31 23:59'.
    Good luck,
    Robert

  • Word 2011 crashes when open file. No issue when creating new document.

    I can open word file and can create a new document. But I could not open a word sent from other people.
    Here is what I already did:
    - reinstall Office 2011
    - Fixing the duplicate fonts.
    - Run the fix permission
    Here is the error I got.Could you please help?
    =======================================
    Process:         Microsoft Word [767]
    Path:            /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/Microsoft Word
    Identifier:      com.microsoft.Word
    Version:         14.3.8 (14.3.8)
    Build Info:      Unknown-130913~0
    Code Type:       X86 (Native)
    Parent Process:  launchd [176]
    Responsible:     Microsoft Word [767]
    User ID:         501
    Date/Time:       2013-11-01 18:54:25.473 +0700
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000bff2e000
    VM Regions Near 0xbff2e000:
        Stack                  00000000bf72e000-00000000bff2e000 [ 8192K] rw-/rwx SM=COW 
    -->
        CG shared images       00000000c0003000-00000000c000b000 [   32K] r--/r-- SM=SHM 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   y                                       0x012b8073 wdGetApplicationObject + 8790819
    1   y                                       0x00790079 wdCommandDispatch + 1331161
    2   ???                                     0xe8240489 0 + 3894674569
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0a373992 kevent64 + 10
    1   libdispatch.dylib                       0x0a1c18bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x0a1c1556 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 4:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x0a3727ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0a46bd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x0a46dbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo                     0x0c967540 CVDisplayLink::runIOThread() + 936
    4   com.apple.CoreVideo                     0x0c967180 startIOThread(void*) + 159
    5   libsystem_pthread.dylib                 0x0a4695fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x0a469485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x0a46ecf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 7:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x0a372b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x0a2c705b nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x0a2c6f06 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x075acddc -[NSUIHeartBeat _heartBeatThread:] + 2318
    4   com.apple.Foundation                    0x06eb8f2e -[NSThread main] + 45
    5   com.apple.Foundation                    0x06eb8e86 __NSThread__main__ + 1426
    6   libsystem_pthread.dylib                 0x0a4695fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x0a469485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x0a46ecf2 thread_start + 34
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0a36df7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0a36d16c mach_msg + 68
    2   com.apple.QuartzCore                    0x06503a7d CA::Render::Server::server_thread(void*) + 232
    3   com.apple.QuartzCore                    0x0650398c thread_fun + 29
    4   libsystem_pthread.dylib                 0x0a4695fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x0a469485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x0a46ecf2 thread_start + 34
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0a36df7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0a36d16c mach_msg + 68
    2   com.apple.CoreFoundation                0x06b77f69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x06b77541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x06b76d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x06b76bbb CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x06eb90b5 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation                    0x06eb8f2e -[NSThread main] + 45
    8   com.apple.Foundation                    0x06eb8e86 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib                 0x0a4695fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x0a469485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x0a46ecf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 19:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 20:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 21:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 22:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 23:
    0   libsystem_kernel.dylib                  0x0a373046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0a46adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x0a46ecce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x012b7401  ecx: 0xbff2dffe  edx: 0x00000079
      edi: 0x00000079  esi: 0xbff2dffe  ebp: 0xbff1d4d8  esp: 0xbff1c750
       ss: 0x00000023  efl: 0x00010202  eip: 0x012b8073   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xbff2e000
    Logical CPU:     2
    Error Code:      0x00000006
    Trap Number:     14
    Binary Images:
       0xd3000 -  0x1e4ffeb +y (???) <BAF4C0FB-36F0-7698-E28D-8E74FE93CAE1> y
    0x2246000 -  0x225fff7 +com.microsoft.mbukernel (14.3.8 - 14.3.8) <1D1D6160-BA27-9BB6-0E52-536521BA752F> /Applications/Microsoft Office 2011/*/mbukernel.framework/Versions/14/mbukernel
    0x2274000 -  0x22b1ff3 +com.microsoft.setupui (14.3.8 - 14.3.8) <49F85ABF-6DBA-8DC4-D84E-66546EADF468> /Applications/Microsoft Office 2011/*/MicrosoftSetupUI.framework/Versions/14/MicrosoftSetupUI
    0x22f1000 -  0x2527ff3 +com.microsoft.mcp (14.3.8 - 14.3.8) <89D23FB0-686F-4451-8750-F3C5A5502658> /Applications/Microsoft Office 2011/*/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPlugin
    0x25e8000 -  0x2659fe7 +com.microsoft.netlib (14.3.8 - 14.3.8) <44E8C742-3829-5F83-A459-2241A633E61C> /Applications/Microsoft Office 2011/*/Netlib.framework/Versions/14/Netlib
    0x2672000 -  0x2717feb +com.microsoft.ole (14.3.8 - 14.3.8) <0A492AA8-49F0-5037-A6C6-8AD438477BBB> /Applications/Microsoft Office 2011/*/MicrosoftOLE.framework/Versions/14/MicrosoftOLE
    0x2739000 -  0x27d8ffb +com.microsoft.oleautomation (14.3.8 - 14.3.8) <7F34CD12-00F7-390C-1D82-3466614AF41F> /Applications/Microsoft Office 2011/*/MicrosoftOLEAutomation.framework/Versions/14/MicrosoftOLEAutomation
    0x2809000 -  0x2809fff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x280e000 -  0x2a8aff7  com.apple.QuickTime (7.7.3 - 2826) <D9F2857B-5668-3828-B85E-0F897462C8D8> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x2b33000 -  0x2b40fff +com.microsoft.merp (2.2.4 - 2.2.4) <4E9DFD77-E3C1-134B-908B-25721F699BBE> /Applications/Microsoft Office 2011/*/merp.framework/Versions/14/merp
    0x2b4b000 -  0x2d3ffeb +com.microsoft.msxml (14.3.8 - 14.3.8) <2E8E4B2E-C704-2FB0-C24C-10D7C476D253> /Applications/Microsoft Office 2011/*/MSXML.framework/Versions/14/MSXML
    0x2daf000 -  0x3519fef +com.microsoft.office (14.3.8 - 14.3.8) <43F1598A-2D8F-E07B-60F6-D5EF0C58111A> /Applications/Microsoft Office 2011/*/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
    0x3675000 -  0x4504fef +com.microsoft.officeart (14.3.8 - 14.3.8) <C38785A7-5742-D05C-4586-B473419E223B> /Applications/Microsoft Office 2011/*/OfficeArt.framework/Versions/14/OfficeArt
    0x47c3000 -  0x47cdff7 +com.microsoft.oleo (14.3.8 - 14.3.8) <0C95CF23-86DE-E7F1-57E5-7E82930CFA38> /Applications/Microsoft Office 2011/*/MicrosoftOleo.framework/Versions/14/MicrosoftOleo
    0x47d7000 -  0x47eeff3 +com.microsoft.mathfont (14.3.8 - 14.3.8) <E33D75DB-F95D-9C19-0899-3C7C6C195909> /Applications/Microsoft Office 2011/*/MicrosoftMathFont.framework/Versions/14/MicrosoftMathFont
    0x47f4000 -  0x4c6bff7 +com.microsoft.chart (14.3.8 - 14.3.8) <56B0A9A5-B881-6207-CA7F-F9F72E13839E> /Applications/Microsoft Office 2011/*/MicrosoftChartPlugin.framework/Versions/14/MicrosoftChartPlugin
    0x4db0000 -  0x4ef7ff7 +com.microsoft.msls3 (14.3.8 - 14.3.8) <C7F5BC89-303B-7A5A-32B0-4FB5D10074EC> /Applications/Microsoft Office 2011/*/MicrosoftPTLS.framework/Versions/14/MicrosoftPTLS
    0x4f05000 -  0x4f3bff7 +com.microsoft.msgrlibclient (8.0.0 - 8.0.0) <F52BE5A4-4783-4401-E2E4-9E3FF05FFAB7> /Applications/Microsoft Office 2011/*/MsgrLibClient.framework/Versions/14/MsgrLibClient
    0x4f5e000 -  0x4f5efff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x4f64000 -  0x4fa6fe7 +com.microsoft.ribbon (14.3.8 - 14.3.8) <037295CB-DC29-4C7F-D6EA-2D291961A9B1> /Applications/Microsoft Office 2011/*/MBURibbon.framework/Versions/14/MBURibbon
    0x4fcd000 -  0x500ffe3 +com.microsoft.mviewlib (14.3.8 - 14.3.8) <C04DD601-19FD-220B-1B43-0B277AFE2018> /Applications/Microsoft Office 2011/*/MViewLib.framework/Versions/14/MViewLib
    0x503a000 -  0x5097ff7 +com.microsoft.wlmuser (14.3.8 - 14.3.8) <27D3E20F-D702-9DC5-03CE-0A8EAB2D7844> /Applications/Microsoft Office 2011/*/WLMUser.framework/Versions/14/WLMUser
    0x50be000 -  0x50e8fff +com.microsoft.wlmgraphicsdevice (14.3.8 - 14.3.8) <DF1017C3-7D4A-EA9F-12F7-8CB2F8EC2F6E> /Applications/Microsoft Office 2011/*/WLMGraphicsDevice.framework/Versions/14/WLMGraphicsDevice
    0x5105000 -  0x5132fe3 +com.microsoft.wlmkernel (14.3.8 - 14.3.8) <FA6467BE-8BFF-DEDD-ECE7-D0F959F7DD4D> /Applications/Microsoft Office 2011/*/WLMKernel.framework/Versions/14/WLMKernel
    0x514a000 -  0x5cdbff7 +com.microsoft.gfx (14.3.8 - 14.3.8) <22501916-D338-322C-BB39-C7336A215A52> /Applications/Microsoft Office 2011/*/Gfx.framework/Versions/14/Gfx
    0x5d54000 -  0x6110ff7 +com.microsoft.igx (14.3.8 - 14.3.8) <7D517ECF-81FE-0E22-9FB3-CF0EB3AF0094> /Applications/Microsoft Office 2011/*/SmartArt.framework/Versions/14/SmartArt
    0x61de000 -  0x6244ffb +com.microsoft.mbuCloudServices (14.3.8 - 14.3.8) <9C278F6A-F821-6CFD-6859-F72642909C7D> /Applications/Microsoft Office 2011/*/MicrosoftCloudServices.framework/Versions/14/MicrosoftCloudServices
    0x6269000 -  0x626dff3 +com.microsoft.mbustrings (14.3.8 - 14.3.8) <2E8A30F7-B018-F957-3D1C-FB4E0EE48B0C> /Applications/Microsoft Office 2011/*/mbustrings.framework/Versions/14/mbustrings
    0x6278000 -  0x627aff7 +com.microsoft.mbulocale (14.3.8 - 14.3.8) <13EE7358-B49D-1124-075E-722C428C00A1> /Applications/Microsoft Office 2011/*/mbulocale.framework/Versions/14/mbulocale
    0x6284000 -  0x62a5feb +com.microsoft.wlmstrings (14.3.8 - 14.3.8) <ABF60A79-7B77-B86C-E650-A13E2A806590> /Applications/Microsoft Office 2011/*/wlmstrings.framework/Versions/14/wlmstrings
    0x62b5000 -  0x630cffb +com.microsoft.CocoaUI (14.3.8 - 14.3.8) <1C7B6378-1277-5087-BF96-72CF7CD7A078> /Applications/Microsoft Office 2011/*/CocoaUI.framework/Versions/14/CocoaUI
    0x6343000 -  0x6481fef +com.microsoft.MicrosoftOfficeDRM (14.3.8 - 14.3.8) <01BE98A1-6355-BE6D-2E2E-86FA549F3E29> /Applications/Microsoft Office 2011/*/MicrosoftOfficeDRM.framework/Versions/14/MicrosoftOfficeDRM
    0x64b2000 -  0x64cafeb +com.microsoft.threadpool (14.3.8 - 14.3.8) <7C18EC3A-BD05-FF16-2D5B-4DAFD070B6D0> /Applications/Microsoft Office 2011/*/ThreadPool.framework/Versions/14/ThreadPool
    0x64db000 -  0x6687ff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x673e000 -  0x6788fef +com.microsoft.menulib (14.3.8 - 14.3.8) <3292BA7A-ACE1-5C9B-36CD-5CB568D45622> /Applications/Microsoft Office 2011/*/MicrosoftMenuLibrary.framework/Versions/14/MicrosoftMenuLibrary
    0x67a1000 -  0x67d5fe3 +com.microsoft.urlmon (14.3.8 - 14.3.8) <FFADEF49-972C-3AA4-F2FA-E704B2DB082D> /Applications/Microsoft Office 2011/*/StdUrlMoniker.framework/Versions/14/StdUrlMoniker
    0x67e6000 -  0x683dfe7 +com.microsoft.uniscribe (14.3.8 - 14.3.8) <99A29EB4-CD12-F736-CC2E-CBAF58B5215B> /Applications/Microsoft Office 2011/*/Uniscribe.framework/Versions/14/Uniscribe
    0x685a000 -  0x6868ffb +com.microsoft.mbuinstrument (14.3.8 - 14.3.8) <38C72430-E78B-8143-0C5A-B57F59E538ED> /Applications/Microsoft Office 2011/*/mbuinstrument.framework/Versions/14/mbuinstrument
    0x6874000 -  0x6874fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x6878000 -  0x68c9ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x692a000 -  0x692bfff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x6933000 -  0x6adb4af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x6af8000 -  0x6af8fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x6b01000 -  0x6d03ff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x6e41000 -  0x6e41fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x6e4c000 -  0x7177ff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7311000 -  0x7f2cff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x84ba000 -  0x84c3fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x84ce000 -  0x84d2fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x84dc000 -  0x84dfff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x84e7000 -  0x885cff9  com.apple.HIToolbox (2.1 - 695) <74E2DE33-E48E-3206-BD78-AFB988235A83> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x89c3000 -  0x8a16fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x8a3e000 -  0x8a51fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x8a6b000 -  0x8b02ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x8b2c000 -  0x8b6aff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x8b91000 -  0x8bacff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x8bbe000 -  0x8bc3ff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x8bcb000 -  0x8bcdfff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x8bd2000 -  0x8bdbfff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x8be4000 -  0x8c39ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x8c5c000 -  0x8cb1fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x8d08000 -  0x8e6aff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x8f3b000 -  0x923cff7  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <C514A490-8689-3665-AD82-863B5FF8D6AE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92b6000 -  0x934eff7  com.apple.Metadata (10.7.0 - 800.12) <0AE4CD6B-FDFC-31ED-9F2C-FE870155CAF9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93a2000 -  0x9422ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94ba000 -  0x952dfff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x956b000 -  0x95c9ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95f8000 -  0x96d3ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x973e000 -  0x976aff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x978c000 -  0x97c9ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x97e1000 -  0x97f3fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x97fd000 -  0x9866fff  com.apple.SystemConfiguration (1.13 - 1.13) <542075CD-9085-3F30-B84B-DD0277D6A40E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9899000 -  0x9b06ff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9c2b000 -  0x9d3dffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x9d56000 -  0x9d64ff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x9d6c000 -  0x9e58ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x9e88000 -  0xa04effb  libicucore.A.dylib (511.25) <44DDE9A4-578E-3D23-A41A-D8795D000A18> /usr/lib/libicucore.A.dylib
    0xa0e3000 -  0xa0e4fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0xa0ea000 -  0xa10dff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0xa11a000 -  0xa11effa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0xa124000 -  0xa12fffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0xa13d000 -  0xa142ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0xa14e000 -  0xa156fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0xa15e000 -  0xa1aeff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0xa1be000 -  0xa1d6ffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0xa1ea000 -  0xa1edfff  libdyld.dylib (239.3) <729B32AC-EEE2-3739-8CE3-F90838D51906> /usr/lib/system/libdyld.dylib
    0xa1f5000 -  0xa1f5fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0xa1fb000 -  0xa203fff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0xa20c000 -  0xa210ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0xa216000 -  0xa218fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0xa21f000 -  0xa220fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0xa227000 -  0xa239fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0xa244000 -  0xa245fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0xa24b000 -  0xa2ddffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0xa306000 -  0xa308fff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0xa30f000 -  0xa317fff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0xa31e000 -  0xa346fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0xa35b000 -  0xa378ff4  libsystem_kernel.dylib (2422.1.72) <C5641F6C-E271-380A-A656-AE4C04345602> /usr/lib/system/libsystem_kernel.dylib
    0xa39a000 -  0xa3cbffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0xa3d7000 -  0xa3efff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0xa3f9000 -  0xa424ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0xa43f000 -  0xa448fff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0xa451000 -  0xa456ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0xa468000 -  0xa46fffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0xa47a000 -  0xa47bffa  libsystem_sandbox.dylib (278.10) <F3C9C427-AF9F-3CE0-95FF-DC9ACA0B5760> /usr/lib/system/libsystem_sandbox.dylib
    0xa481000 -  0xa482ffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0xa489000 -  0xa48fffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0xa497000 -  0xa4bbfff  libxpc.dylib (300.1.17) <252BC88F-A5CA-3E67-AEDB-3D7B9F4537E2> /usr/lib/system/libxpc.dylib
    0xa4d2000 -  0xa4e0fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0xa4e9000 -  0xa4edffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0xa4f3000 -  0xa4f3ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0xa4f8000 -  0xa504ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0xa50b000 -  0xa580ffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0xa5af000 -  0xa5b8fff  com.apple.DiskArbitration (2.6 - 2.6) <6379523D-3196-370C-AE4A-8EA586E36909> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0xa5c2000 -  0xa5c9ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0xa5d0000 -  0xa5dcffe  libkxld.dylib (2422.1.72) <F9B35FA5-C936-3286-A055-2B0780A674AC> /usr/lib/system/libkxld.dylib
    0xa5e1000 -  0xa5ecff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0xa5f8000 -  0xa5f9fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0xa5fd000 -  0xa619fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0xa623000 -  0xa68cfff  com.apple.datadetectorscore (5.0 - 354.0) <0C6C812D-3E7A-31A4-BFDE-CD3316AA35B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0xa6bc000 -  0xa6bfff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0xa6c5000 -  0xa6ddfff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0xa6f5000 -  0xa6fffff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0xa708000 -  0xa732fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0xa73e000 -  0xa801ff1  com.apple.CoreText (352.0 - 367.15) <746AD442-F7B4-3273-A36D-C7103D26F727> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0xa864000 -  0xac5cff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0xacf7000 -  0xae03fff  com.apple.ImageIO.framework (3.3.0 - 1038) <0B4A6607-9FBC-3A6C-984A-0542DE8385FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0xae61000 -  0xaed6ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0xaefe000 -  0xaefffff +cl_kernels (???) <66BA5E6A-48B2-4A9B-B5A8-BD6E3F71970A> cl_kernels
    0xaf01000 -  0xaf92fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0xafd4000 -  0xb022ff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0xb053000 -  0xb054ff5 +cl_kernels (???) <67179105-5ADA-4654-8CE8-C980FECD4326> cl_kernels
    0xb056000 -  0xb066ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0xb076000 -  0xb0d2ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0xb101000 -  0xb19dfff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0xb1cd000 -  0xb1d7ff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0xb1eb000 -  0xb1efffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0xb1fa000 -  0xb1fafff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0xb200000 -  0xb4eafd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0xb52a000 -  0xb52afff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0xb530000 -  0xb600fef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0xb60f000 -  0xb6bbffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0xb6c9000 -  0xba8eff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0xbae7000 -  0xbc3dff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0xbc64000 -  0xbd58fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0xbdb3000 -  0xbdf9ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0xbe1c000 -  0xbe40fff  libJPEG.dylib (1038) <212B0986-9227-397C-9493-BCB190EC020E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0xbe4a000 -  0xbea3ffa  libTIFF.dylib (1038) <691DAAFD-D72B-3BE9-AE5C-84AF86BE66CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0xbeb3000 -  0xbeceff6  libPng.dylib (1038) <F39168D4-ABEB-3C2D-A763-B9D3E1EF43BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0xbed8000 -  0xbedcffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0xbee3000 -  0xbfe1fff  libJP2.dylib (1038) <EE0B9985-625D-39E6-B425-03FB75BA2594> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0xc009000 -  0xc00bffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0xc011000 -  0xc05dff7  libcups.2.dylib (372) <9A2BE8DC-37E4-3019-B665-1036FE7868EA> /usr/lib/libcups.2.dylib
    0xc071000 -  0xc08afff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0xc0a4000 -  0xc0d5ffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0xc0f2000 -  0xc10fffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0xc11c000 -  0xc20cffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0xc21b000 -  0xc286ff9  com.apple.Heimdal (4.0 - 2.0) <E3091095-A893-3089-8DA1-8705B3BE5BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0xc2ac000 -  0xc2adffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0xc2b3000 -  0xc2b7fff  libheimdal-asn1.dylib (323.12) <9EA2A221-301B-3B9A-BBF2-38134145B5A8> /usr/lib/libheimdal-asn1.dylib
    0xc2be000 -  0xc2caff7  com.apple.OpenDirectory (10.9 - 173.1.1) <2AA24814-2DC6-3E28-B71B-186B686F0F19> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0xc2db000 -  0xc2e4ffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0xc2ec000 -  0xc362ff3  com.apple.securityfoundation (6.0 - 55122) <25149798-A37E-316F-84AB-93029EAF33D8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0xc394000 -  0xc506ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0xc591000 -  0xc677ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0xc702000 -  0xc839ff3  com.apple.desktopservices (1.8 - 1.8) <4D853961-F911-3FE2-A7DF-3130EA1D8CEB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0xc8b0000 -  0xc8c4ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0xc8d3000 -  0xc8edff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0xc8fc000 -  0xc93bff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0xc94e000 -  0xc95cff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0xc965000 -  0xc98cfff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0xc9a6000 -  0xcc98ff8  com.apple.CoreImage (9.0.54) <D7BC3E53-EF5B-3A14-8808-8D45EE505B48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0xcd3e000 -  0xcd94ff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0xcdad000 -  0xcdeffff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0xcdfd000 -  0xce05ffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0xce0c000 -  0xce1bfff  libGL.dylib (9.0.83) <E76D1F2A-D98B-3464-AD0B-FC1EBBADF027> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0xce2e000 -  0xce6bffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0xce73000 -  0xce75ffe  libCVMSPluginSupport.dylib (9.0.83) <BD30BDD1-DD5B-3F31-A09B-C274EA93CD7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0xce7a000 -  0xce7effe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0xce84000 -  0xd2b8ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0xd4cd000 -  0xd4d8fff  com.apple.CrashReporterSupport (10.9 - 538) <7A5FF845-433C-33E3-99B5-F6AA5B825734> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0xd4e5000 -  0xd534fff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0xd546000 -  0xd553ff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0xd55b000 -  0xd577ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0xd589000 -  0xd597ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0xd5a7000 -  0xd5ddfff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0xd605000 -  0xd630ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0xd63c000 -  0xd8a1ff7  com.apple.AddressBook.framework (8.0 - 1365) <6D80FC70-269E-3C12-A9B4-279F27C58BEF> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0xda44000 -  0xda55fe7 +com.microsoft.frameworks.wincrypto (14.3.8 - 14.3.8) <ED0D4573-D38A-CA16-D907-066AAAC7C4AE> /Applications/Microsoft Office 2011/*/WinCrypto.framework/Versions/14/WinCrypto
    0xda62000 -  0xdb7dff7 +mbupgx.dylib (14) <26E50DFC-0EFA-76F0-FB25-1EB3655DDEE3> /Applications/Microsoft Office 2011/*/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
    0xdb98000 -  0xdc43fff  libcrypto.0.9.7.dylib (106) <DA3D5F8E-5822-3D41-BC1C-FFE1CC9BB42B> /usr/lib/libcrypto.0.9.7.dylib
    0xdc8a000 -  0xdcc3fe3 +com.microsoft.molc.framework (14.3.8 - 14.3.8) <EF333912-5548-2682-53A3-B891CFFEFCFF> /Applications/Microsoft Office 2011/*/molc.framework/Versions/14/molc
    0xdcdb000 -  0xddf2ffb  com.apple.WebKit (9537 - 9537.71) <3A74A248-DC36-308D-B612-0775BA6F3341> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0xdeaa000 -  0xdec0ff9  com.apple.aps.framework (4.0 - 4.0) <B3D5B83C-4DDF-3E8E-A701-7931AE6FAF65> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0xded8000 -  0xded9fff  com.apple.AddressBook.ContactsData (8.0 - 1365) <3A9C53C8-07EC-310D-80AD-0B6E2492F021> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0xdee2000 -  0xdee8ff7  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <3CABD941-9D36-3FB7-BD93-11A7CDC3FB4D> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0xdef5000 -  0xdeffff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <D6735614-EF4B-389F-BF99-7D8416A504BA> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0xdf0b000 -  0xdfd8ff7  com.apple.backup.framework (1.5 - 1.5) <E33257DD-A751-3230-89B7-B4B79F70A8FB> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0xe04c000 -  0xe2b0fff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0xe376000 -  0xe3a7ff4  com.apple.securityinterface (9.0 - 55047) <0D5ED2B8-C973-3C91-BA45-22501A043263> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0xe3c9000 -  0xe3d0ff1  com.apple.phonenumbers (1.1.1 - 105) <4279F426-BD5E-3716-A23E-5A718B01F466> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0xe3da000 -  0xe42fff7  com.apple.framework.internetaccounts (2.1 - 210) <613F079B-6D69-3B3A-84EF-3F178A55F710> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0xe465000 -  0xe49dfff  com.apple.LDAPFramework (2.4.28 - 194.5) <0C42A932-15E8-3CD1-AC35-1DF7D41B25A2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0xe4ad000 -  0xe4dcff1  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <2215559E-C517-3122-906F-156FD3CC10AD> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0xe4ed000 -  0xe4f6fff  com.apple.AppleSRP (5.0 - 1) <6B946F4B-7DC4-3E82-BF2C-BE0930E3CF47> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0xe500000 -  0xe5e3ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0xe639000 -  0xe675ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0xe6a1000 -  0xe6a1ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0xe6aa000 -  0xe6f2fff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0xef2f000 -  0xefb8fff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0xefd0000 -  0xefd0ffd +cl_kernels (???) <01E47021-03AE-4C27-AD61-AD4C667CA2F5> cl_kernels
    0xefd2000 -  0xf033ff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0xf064000 -  0xf092ff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0xf0ad000 -  0xf61afff  com.apple.QuartzComposer (5.1 - 316) <4FC30662-E3CC-3AE5-88CE-7B271B59EFF0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0xf884000 -  0xf922ff7  com.apple.PDFKit (2.9 - 2.9) <0792168D-320D-33EF-AE24-6CDCB8C1990A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0xf96d000 -  0xf992ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0xf9b1000 -  0xfc2fff7  com.apple.imageKit (2.5 - 770) <C2FE06B8-DB32-392F-9280-5C1CB148D174> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0xfdd4000 -  0xfeadff6  com.apple.QuickLookUIFramework (5.0 - 622.3) <41D10880-AD68-3DE3-94F0-4CA9F44EBD5B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0xff28000 - 0x1024effb  com.apple.JavaScriptCore (9537 - 9537.65) <402E2B2F-AA3F-33E6-BD7D-46B1E9314311> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x1031a000 - 0x1048afff  com.apple.QTKit (7.7.3 - 2826) <C6C84EA7-E9C6-3891-B76F-C497C4A2ED65> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x10564000 - 0x10567ff3  com.apple.AppleSystemInfo (3.0 - 3.0) <99A923AE-121B-307D-AC1C-968976FBA225> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x1056e000 - 0x1069bff9  com.apple.avfoundation (2.0 - 651.12) <1AB88210-F2E6-3318-ACB2-41ED5AE6A0EF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x1075b000 - 0x107acffb  com.apple.CoreMedia (1.0 - 1273.29) <BE08E6C7-5E6F-3B54-9C17-751CFCBD823D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x107d7000 - 0x10b1dffb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x10bb1000 - 0x10fd6fe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x11024000 - 0x1103bff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x11051000 - 0x110a4ff3  com.apple.CoreMediaIO (401.0 - 4544) <867D01AF-3326-39CB-A136-48AFE4BE9802> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x110c8000 - 0x110e1fff  libAVFAudio.dylib (32.2) <C4CBDFDF-8F77-3872-B7DE-D2D7982084BA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x110f1000 - 0x111fefe4  com.apple.MediaControlSender (1.9 - 190.4) <DF0B5A99-046A-38C1-B68E-241CB2E622BC> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x11230000 - 0x11262ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x1126c000 - 0x11271fff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x1127c000 - 0x11723fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x11731000 - 0x11750ff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x1175b000 - 0x117b9ff7  com.apple.CoreUtils (1.9 - 190.4) <9E43FF7D-7FCD-3032-9EF9-BCF6D09E73C3> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x117dd000 - 0x11844ffc  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <8DADD7D2-AB98-34ED-8D6F-335338502CBE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x11873000 - 0x1189eff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x118aa000 - 0x11914ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x11952000 - 0x119a6fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <95A1E1CF-FC3E-3203-8683-34823CD70B6B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x119b0000 - 0x119b7ff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x119c0000 - 0x119caff2  com.apple.AppSandbox (3.0 - 1) <085C3B38-C7D8-3A62-AFC6-CEE27F93DFD1> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x119d3000 - 0x119fdff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0x11a04000 - 0x11a19ff3  com.apple.AppContainer (3.0 - 1) <B53ED2AD-9B19-316F-B7B9-80A3A94AC1D3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x11a29000 - 0x11a2bfff  com.apple.SecCodeWrapper (3.0 - 1) <29ECC157-F444-31FE-99CC-A9289FF3AC8D> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x11a32000 - 0x11a39fff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x11a3e000 - 0x11ac3ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x11b03000 - 0x11b58ff7  com.apple.QuickLookFramework (5.0 - 622.3) <3C6ADC02-2C67-361B-B042-47DDCC0EDA5F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x11b8a000 - 0x11b94ff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x11b9e000 - 0x11bf3ff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x11c1f000 - 0x11ccaffd  com.apple.imcore (10.0 - 1000) <90B6B340-1473-3F5C-B39D-887FFD2D01AD> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x11cf6000 - 0x11d14ff5  com.apple.frameworks.preferencepanes (16.0 - 16.0) <3E3368EE-CAD3-3096-89BC-D006A25A6294> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x11d2c000 - 0x1202dff1  com.apple.AOSKit (1.06 - 176) <E5067665-E177-37FF-AD38-0D995FB79741> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x1204e000 - 0x12ee7ff9  com.apple.WebCore (9537 - 9537.70) <3FC5900A-30C8-3244-B236-1ED771DFBC64> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x1370d000 - 0x1376fff3  com.apple.imfoundation (10.0 - 1000) <20565092-0897-3E34-A35A-E1F027D53A26> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x137a3000 - 0x137a4fff  com.apple.marco (10.0 - 1000) <F7AD1FF7-5B1E-3D3C-AF00-FA3A43118CE5> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x137ae000 - 0x137cefff  com.apple.facetimeservices (10.0 - 1000) <BD92DB29-AD36-3B60-A5EF-F4A68F1394A1> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x137df000 - 0x1381eff5  com.apple.ids (10.0 - 1000) <AEDCAD16-6626-3A0B-A9BE-3FC8A47CEB52> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x13836000 - 0x13866ff3  libtidy.A.dylib (15.12) <3DBE95FE-8FA7-3584-9202-E37B54B3B064> /usr/lib/libtidy.A.dylib
    0x13876000 - 0x13877ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <B2525E0D-2BB1-3AF6-BDCA-56DCDC1F7DBF> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
    0x13881000 - 0x13894ff7  com.apple.idsfoundation (10.0 - 1000) <1C0CCF49-109E-3C34-96ED-466B7BEB8551> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
    0x138a5000 - 0x13903fff  com.apple.ViewBridge (1.0 - 46) <62450F2D-C27A-3D11-BA41-AF8C6B18BEDD> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x13930000 - 0x13930ffe  com.apple.AOSMigrate (1.0 - 1) <E612B5AD-06AE-3BCB-BA14-F7B64714640A> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x13937000 - 0x1399dff4  com.apple.ISSupport (1.9.9 - 57) &l

    Poštovani dr. Luka Boršić,
    u nastavku teksta Vam šaljem riješenje problema koje sam našao na adresi http://www.jabucnjak.hr/ Drago mi je da Vam mogu pomoći. Naime riješenje radi besprijekorno.
    Pozdrav
    Silvio Košutić

  • Shortdump when creating new Application set

    Hi All,
    We have a newly installed BPC system (BPC 7.0, SP 02).
    We are facing issues when creating new Application Set. Although on the .Net server it shows that the creation of appset was successful, in SM37 Copy AppSet job is terminated with Shortdump "Raise_Exception, X_Message". 
    I can see the new appset in RSA1, however not all dimensions and applications are copied from Apshell.
    I've seen SAP Note: 1420399, which says that this type of issue happens when the user does not have sufficient access. But we are facing same issue with admin user who has full access.
    Any pointers in resolving this issue would be highly appreciated.
    Thanks in advance.
    Regards,
    Meera

    Please verify you have followed the following steps from the installation guide.
    These steps are required for proper functioning of the Business Planning and Consolidation software:
    1. Set the /CPMB/ namespace to changeable:
    a) Go to transaction SE06 and choose System Change Option.
    b) Make sure that the BPC Addon is set to Restricted Modifiability.
    c) Set the /CPMB/ namespace to Modifiable.
    2. Set the /B28/ namespace to changeable:
    a) Go to transaction SE06 and choose System Change Option.
    b) Make sure that the BPC Addon is set to Restricted Modifiability.
    c) Set the /B28/ namespace to Modifiable.
    Thanks and best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP BusinessObjects
    Enterprise Performance Management
    Regional Implementation Group

  • Due to NAS issues, when I started a new time machine backup it did not have the old backups available. My question is do I need to delete them or will time machine automatically reclaim the space?  Only one Sparse Bundle, same name.

    Due to NAS issues, when I started a new time machine backup it did not have the old backups available. My question is do I need to delete them or will time machine automatically reclaim the space?  There is only one sparse bundle but when I enter time machine I don't see my historic backups.  I use a synology DS212 for my time machine.  Started a new backup which is 218gb but it says 618 gb is occupied  therefore it looks like 2 or 3 backups are still on the disk. Before my NAS issues the last backup was in 2014.  As you can see there is a second sparse bundle from 2012.  Not sure what that is.

    This is an old message now, but what happened to me similarly was:
    I had a major computer crash and through complicated pathways ended up reinstalling (Mavericks) as a new user (long story).
    At least I had good Time Machine backups on an NAS drive (Synology DS212j), or so I thought - when I started Time Machine up again, the old backup file was gone, replaced by a new one using my "new computer" name. The old file was gone both by directly mounting the NAS drive and by clicking "Enter Time Machine".
    It's like I had {OldShareName}.sparsebundle and then it was replaced by {NewShareName}.sparsebundle, all of the old info vanished.
    (I have spent a week finding old files elsewhere and have completed a satisfactory self-restore. It pays to "archive" [my own variation of] as well as "back-up".)
    My belief is that if this were a wired-netword-drive, e.g. plugged right into my iMac with a USB cable, then the old file would have remained.
    But this is an NAS drive, connected directly to my Airport wireless router, and I don't know the significance of the fact that it stores its Time Machine backups as "sparsebundle" files rather than simply as plain(er) files.
    As usual when things get complicated with computers (not just Apple computers) there was never a warning message. Something like "YOU'RE ABOUT TO DELETE A TIME MACHINE BACK-UP FILE!!!" would have made my life a lot simpler.
    BTW, I did try a "restore from Time Machine" option the first thing I had my "new computer" (old hardware, 2009 iMac) up and running, using Migration Assistant, and it ran for many hours and then failed in the wee hours - what that has to do with anything I'm not sure.
    I'm not sure that I have a question about this other than "why do these things happen to me?", but it's a warning. Apart from that I've been very happy with the stability and reliability (but not the cost or set-up complexity) of NAS vs. directly-cabled external drives.
    Charles

  • We have an issue when we send a film to the media encoder it crashes about half of the time for no particular reason. Anyone else got that too with Premiere Pro CC and the new Media encoder? Thanks! bedrijfsfilm Companyfilms

    We have an issue when we send a film to the media encoder it crashes about half of the time for no particular reason. Anyone else got that too with Premiere Pro CC and the new Media encoder?

    We have an issue when we send a film to the media encoder it crashes about half of the time for no particular reason
    Anyone else got that too with Premiere Pro CC and the new Media encoder?
    Lack of detailed info makes your question impossible for anyone to answer you!
    eg. ...."Doctor it hurts...anyone else got something that hurts?" 

  • I am facing issue when opening flash files in Flash CC. (error:- This file was created with a later release of Flash Professional and might contain new features that would be lost when saved in the current format.)

    I am facing issue when opening flash files in Flash CC. (error:- This file was created with a later release of Flash Professional and might contain new features that would be lost when saved in the current format.)

    Wow. Okay...
    I'll let the real veterans in this forum tackle your issues one after the other. But, I can tell you, all will be well.
    My only comment would be re: your computer specs:
    BJReis wrote:
    .  This may be due to somewhat older equipment:
    GHz Intel Core Duo MacBook Pro with a 4GB memory computer with Ddr3 running OSX 10.8.4
    To be completely honest, FCPX is a RAM hog. It just is. But, RAM is relatively cheap, and the pay-off is good.
    4GB is right on the edge, IMHO. 16G is ideal.
    I wish you luck, hang in there, and standby for more help.

  • Issue when creating a new email account on Adobe BC

    Hi,
    I got a big issue when I tried to create a new email account for my site, which is a very email account to me, and I had been using that email address for over 10 years.
    Here is the issue, When I created this email account, Adobe BC keep telling me that account has been created (please see the screen shots below), but I did not see this email account on the BC's backend email account list at all. I tried to create that email for over dozen times, it just won't work!
    Please anyone who can help me on this, or anyone from Adobe BC tech support team, please contact with me. Becasue I having hard time finding your tech support telephone numeber.
    Thank You.

    Hello designonly.
    You are saying that you have been using that email address for over 10 years. So you are trying to make an address which already somewhere exists?
    That brings me to another thing - is the DNS setup made well? In order to make email address work, you should edit the A-Name & NS. Sometime even more settings (depend on domain registrar).
    designonly, is this your first email setup?

  • I am facing issue when opening flash files in Flash CC. (Error : - .fla was created with a later version of Adobe Flash Professional CC and might contain new features not supported in this version of Flash professional.)

    I am facing issue when opening flash files in Flash CC. (Error : - .fla was created with a later version of Adobe Flash Professional CC and might contain new features not supported in this version of Flash professional.)

    fyfesa1970 wrote:
    Ask a simple question and get a simple answer...see below...hilarious:
    All representatives are actively assisting other customers. Your estimated wait time is 0 minute(s) and 1 second(s) or longer. Thank you for your patience.
    We all can learn from this. Whenever you get stuck in a customer-service situation that goes nowhere, as soon as you become aware of the futility, get the name and employee ID of the person, then say, "I don't mean to be rude, I think we're both wasting our time. Perhaps you weren't trained for this issue, or perhaps your system isn't displaying the correct information. It doesn't matter, because I'm not getting proper customer support this way. Please ESCALATE this to your highest-level manager IMMEDIATELY. If that person isn't availabe, ESCALATE me to that person's highest-level manager. If you haven't been given the proper training, you can use this to inform your manager that you need the training. Thanks for trying to help. I appreciate it. I have copied and saved this chat session. NOW PLEASE ESCALATE THIS CASE AS I HAVE REQUESTED ABOVE. I'm waiting now... "
    The point is that you're a customer, and the company needs customers, so the individual who's failing to deliver good service needs to be identified so they can be properly trained, and so that problems in the system can also be identified, but more important is that you get the service you're entitled to.
    If you search the forum for similar questions, you'll see the kind of information that the volunteer users like yourself on the forum need to know about your system and files involved, so they can help you better.
    Good luck.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • I have an original iPad and an iPhone 4.  If I download the new version of iTunes and the ios6 on my phone will I have issues when I sync my iPad

    I have an original iPad and an iPhone 4.  If I download the new version of iTunes and the ios6 on my phone will I have issues when I sync my iPad

    No

  • Issues when attempting to create a new 2012 R2 forest through powershell

    Hello,
    I've been writing  a script to automate the installation of some new servers, however I'm experiencing an issue when I'm coming to create the forest, for some reason the $DomainName and $ADSecPwd variables are not being passed to the Install-ADDSForest
    function.    The $DomainName and $ADSecPwd variables are defined at the top of the script.
    When viewing the variables right before execution I can see that they store the right values, however when executing the code PowerShell throws an exception saying that the DomainName parameter cannot be null.  The same is true for the the SafeModePassword.
    If I hard code the domainname and password then it works, but I don't want to do this, as I'm going to use this script n multiple domains.
    Another issue I have is that the paths are not being created on the specified 'F:\...' drive, instead they are being created in the default location on the C: drive. 
    Below is a copy of the function I'm using.  Anyone have any ideas why this isn't working as expected?
    function Install_ADForest ($uri, $localcredentials, $DomainName, $ADSecPwd) {
    Invoke-Command -ConnectionUri $uri -Credential $localCredentials -ScriptBlock {
    Install-ADDSForest `
    -DomainMode Win2012R2 `
    -ForestMode Win2012R2 `
    -DatabasePath "F:\Windows\NTDS" `
    -SysvolPath "F:\Windows\SYSVOL" `
    -LogPath "F:\Windows\Logs" `
    -NoRebootOnCompletion:$true `
    -DomainName $DomainName `
    -SafeModeAdministratorPassword $ADSecPwd
    Marcus

    Hi Marcus,
    that is because the Invoke-Command is executed on a remote system that does not know the variables in the function. You need to pass them into the scriptblock as arguments like this:
    function Install_ADForest ($uri, $localcredentials, $DomainName, $ADSecPwd)
    Invoke-Command -ConnectionUri $uri -Credential $localCredentials -ArgumentList @($DomainName, $ADSecPwd) -ScriptBlock {
    Param (
    $DomainName,
    $ADSecPwd
    Install-ADDSForest `
    -DomainMode Win2012R2 `
    -ForestMode Win2012R2 `
    -DatabasePath "F:\Windows\NTDS" `
    -SysvolPath "F:\Windows\SYSVOL" `
    -LogPath "F:\Windows\Logs" `
    -NoRebootOnCompletion:$true `
    -DomainName $DomainName `
    -SafeModeAdministratorPassword $ADSecPwd
    Cheers,
    Fred
    There's no place like 127.0.0.1

Maybe you are looking for

  • Max No of Requests Wait ????

    I am on WAS 700 in SM51 --> Select Application Server >Go to >Server Name >Information >Queue Information. The table shows table of 6 coloumns. One of the coloumn of the table is 'Max No of Requests Wait ". What it is ? Max number requested at peak t

  • How to know the type of transactions by seeing the data in IP_IN_QUEUE

    Hi B2B gurus, I am Using EDI X12 over internet. Our suppliers processing inbound transactions to us,After receiving from B2B its storing in IP_IN_Queue, The documents which we are sending it storing in IP_OUT_Queue. We want to see the data in in IP_I

  • Uploading employee photo in EP

    hi, i am able to upload the employee pic in the back end R3 system and its coming fine when i go to PA30. My doubt is > do i have to upload the image separately in the EP so that it appears in ESS> who's who  section? or should it appear automaticall

  • Rolling upgrade from 11.1.0.6 to 11.1.0.7

    Hello - I am testing the "rolling upgrade" from 11.1.0.6. to 11.1.0.7. I have a two node cluster on Linux. Is there a way to upgrade either the ASM software or the dbms software without causing downtime to the entire cluster? I can upgrade the cluste

  • Database doesn't start automatically

    Hi, sometimes, after a pc reboot, I need to manually restart the database in order to connect. In testing it is not a big deal, but once installed to the customer it will. Could someone give me some hints about the reasons why it happens? Below there