SPA 50X and XML Application URL

Hello Guys,
I made a XML application which runs just fine on a SPA 525 but not on the SPA 502 (have not tested on other 50X phones).
The issue is that the URL I return in a MenuItem for the tag <url> gets cut by the phone when it request it.
The Flow is
Phone Requests
http://192.168.9.207/MyPhoneBridge/myphonebridge.aspx?extension=102&model=SPA123
and gets in return
<?xml version="1.0" encoding="UTF-8"?>
<CiscoIPPhoneMenu><Title>Bla BLa</Title>
<Prompt>Bla Bla Bla</Prompt><MenuItem>
<Name>Name1</Name>
<URL>http://192.168.9.207:80/MyPhoneBridge/myphonebridge.aspx?extension=102&model=SPA123&extensionstatus=yes</URL>
</MenuItem>
<MenuItem>
<Name>Name1</Name>
<URL>http://192.168.9.207:80/MyPhoneBridge/myphonebridge.aspx?extension=102&model=SPA123&presenceinfo=yes</URL>
</MenuItem>
<MenuItem>
<Name>Name3</Name>
<URL>http://192.168.9.207:80/MyPhoneBridge/myphonebridge.aspx?extension=102&model=SPA123&fwdrules=yes</URL>
</MenuItem>
<SoftKeyItem><Name>Select</Name><URL>SoftKey:Select</URL><Position>1</Position></SoftKeyItem><SoftKeyItem><Name>Exit</Name><URL>Key:Services</URL><Position>2</Position></SoftKeyItem></CiscoIPPhoneMenu>
Which ever entry i select now, i only see the request from the phone for http://192.168.9.207:80/MyPhoneBridge/myphonebridge.aspx?extension=102 
All Arguments are cut. The this play then writes
XML format error or invalid application

Note that there is XML Phone Applications space dedicated to XML Phone Applications questions.
But it seems to be rather obvious issue. '&' is not allowed char in URL (it is generic rule, nothing special for SPA502). Such special char needs to be escaped accordingly. So replace all occurrences of '&' by '&amp;'. It should help.
By the way, it is mentioned in documentation.
Rate useful advices. It will help others to search solutions.

Similar Messages

  • Send pdf and xml  to URL on one click

    My scenario is:
    -online Adobe form in ZCI layout with XML based interface created in webdynpro.
    -In webdynpro (form is embedded) Vendor fills out the form with the requested Payment, clicks the button and the form is saved at URL.
    -Then Approver will open PDF from that link, make his change and save it at that URL.
    -Then another Approver will open PDF from that link, make his change and save it at that URL.
    -Finaly Webdynpro program will upload the XML data from that URL into the embedded form and User will initiate sending the form data to SAP.
    I understand that every time the form is saved - it is needs to be saved in both PDF and XML.
    PDF is for the user to make changes on the form.
    XML  is for webdynpro to upload the form data and then send it to SAP.
    In Livecycle Designer there is Submit buttom in Standard library.
    The button has dropdown of Submit As : xdp, pdf, xml.
    So I can select only pdf OR xml - not both.
    How could I send to URL both PDF and XML on one click?
    Thank you ,
    Tatyana.

    From this conversation's thread it appears that Acrobat is not the application / service at issue.
    As this user forum has as its focus "Acrobat" it seems that the OP is in the wrong place.
    Acrobat's one click send feature provides the user a "draft" email. The user still has to process ("click") through steps with the email client/service to actually get the email out and on its way.
    I'm sure that "one click" does everything is available somewhere. Considering all it'd have to do and do right it'd be rather expensive.
    Be well...

  • RMS and RWMS application URL

    Hello Everyone
    We have successfully installed Oracle Retail Applications( RMS, RWMS, REIM, SIM, RPM and RIB) and deployed all the necessary softwares.
    I wanted to know how to find the URL's of the products to open these from frontend so that I can give them to end users.
    We installed Retail 13.4 applications
    Thankyou
    VJ..

    Hi Vijay,
    Go to the Log files of the respective installations. You can find the URL's of those applications in the log files.
    Regards,
    Anvesh Reddy

  • SPA 5xx and 3xx user downloadable Ringtone with provisioning

    Is there a way to download the 2 User Definable Ringtones on the SPA 50x and 303 family by provisioning?
    I know, there is a way to townload by Browser and a corresponding URL. But i am searching a way to do this by provisioning.

    You can discover it by yourself. Download a ring by browser, then look at actual phone's XML configuration (http://ip-phone-address/admin/spacfg.xml). If you will found the URL of downloaded ring tones here, then you discovered the appropriate tag at the same time. If no URL here, then it seems not to be possible to do via provisioning.

  • Pass the username and password in URL to auto log in the application from SharePoint List

    how to Pass the  username and password in URL to auto log in the application from SharePoint List  
    I have a link  in my SharePoint list  when user try to open the link its asking username and password .i want to put username and password in URL to auto log in into that external URL from sharepoint
    please help me it is possible

    Check out
    http://serverfault.com/questions/371907/can-you-pass-user-pass-for-http-basic-authentication-in-url-parameters
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • How to exit from a WebDynpro ABAP application and open another url

    Hi Friends,
    How to exit from a WebDynpro ABAP application and open another url like (www.yahoo.com) in the same window of the WD4 application on click of a Button?
    Regards,
    Xavier

    Hi,
    First of all you should create outbound plug in the window you are trying to exit with plufg type "Exit"
    Then create method handler in the view with this code
            data lo_view_cntr type ref to if_wd_view_controller.
            data lo_win_cntr type ref to if_wd_window_controller.
            data: l_parameter_list type wdr_event_parameter_list,
                  l_parameter type wdr_event_parameter,
                  l_val type ref to data,
                  l_val_url type REF TO data.
            field-symbols: <fs> type any,
                           <fs_url> type any.
            lo_view_cntr  = wd_this->wd_get_api( ).
            lo_win_cntr = lo_view_cntr->get_embedding_window_ctlr( ).
            CREATE DATA l_val type c.
            CREATE DATA l_val_url type string.
            ASSIGN l_val->* to <fs>.
            ASSIGN l_val_url->* to <fs_url>.
            <fs> = 'X'.
            <fs_url> = 'http://your-link.com'.     
            l_parameter-name = 'URL'.
            l_parameter-value = l_val_url.
            INSERT l_parameter INTO TABLE l_parameter_list.
            lo_win_cntr->if_wd_view_controller~fire_plug( EXPORTING plug_name = 'EXIT_PLUG'
                                                                    parameters = l_parameter_list ).
          You can easily change this logic to exit application instead of redirecting to the site
           just changing to
           l_parameter-name = 'CLOSE_WINDOW'.

  • JTF_UM_APPROVAL_URL is set at iStore and OM application level but no URL in email

    Hi,
    JTF_UM_APPROVAL_URL is at iStore and OM application level as per implementation guide. But still in workflow mailer we are getting following messages:
    URL: 3012: Illegal characters found in 'https://abc.com:443/<< Please define the URL for the application login in the JTF_UM_APPL_URL profile option >>'.
    Thanks
    Ashish

    Hello Ashish,
    If you had referenced to OA_HTML/ in the profile option url setting, replace this with the virtual directory mapped to the JSP file location.
    Regards,
    Debbie

  • Idle url GIF file Image and XML file required.* for 7970

    Can anyone supply me a working xml and gif file for the Cisco 7970 colour phone?
    Has anyone actually got this working?
    Thanks!

    First, get the terms right.
    Idle screen is idle screen. Does not need to have anything to do with CCMCIP directory.
    You can set the phone "Device" to ANY server which is running a HTTP server and is able to send headers. Apache. IIS. You name it.
    What you have to do is to
    - make a PNG file accessible using HTTP. Say, it will be http://someniceserver/ipphonestuff/neatpic.png
    - create an XML file with the description I already provided and change the URL to http://someniceserver/ipphonestuff/neatpic.png
    Voila.

  • SPA 30x and 50x - show miss state when call was pickup

    Hello
    do you know, how to show on display miss state (softkey miss) when call was pickup in pickup group.
    My IP phone is SPA 303 and 502, and 922 but SPA 922 is showing miss state well.
    Server is Asteriks.
    Marek

    Call completed elsewhere has not been missed, so SPA922 is on the wrong side ...
    If the line is declared as shared AND call is CANCELed with
    Reason: SIP;cause=200;text="Call completed elsewhere"
    then no missed call is logged.
    I'm not sure if you can configure Asterisk not to use this Reason in such particular case. If I remember correctly, there is and option of Dial() Application for it ...
    Of course, unless you have User->Supplementary Services->Log Missed Calls for extension in question set to "Yes" no missed calls are logged at all.
    Rate useful advices and/or mark answer as "correct". It will help others to found solutions.

  • Difference between prefer-application-packages in weblogic.xml and weblogic-application.xml?

    Hi!
    When deploying a WAR to WebLogic 10.3.5, what is the difference between the prefer-application-packages element in the files weblogic.xml and weblogic-application.xml?
    In my WARs WEB-INF/lib/ I have a JAR that contains classes that are already provided by the container (but older versions).
    If I do not use prefer-application-packages then my app gets the classes provided by the container.
    If I use prefer-application-packages in weblogic.xml then I get the classes from WAR/WEB-INF/lib which is expected.
    But if I use prefer-application-packages in weblogic-application.xml then I get the container versions. Why?
    Is there a difference between those two options?
    The exact data I use is:
    (foo.bar.* is the conflicting package; I add or remove the linex marked with XXXX)
    WEB-INF/weblogic.xml :
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-web-app
        xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.2/weblogic-web-app.xsd">
        <wls:container-descriptor>
            <wls:show-archived-real-path-enabled>true</wls:show-archived-real-path-enabled>
            <wls:prefer-application-packages> <!-- XXXX -->
                <wls:package-name>foo.bar.*</wls:package-name> <!-- XXXX -->
            </wls:prefer-application-packages> <!-- XXXX -->
            <wls:prefer-application-resources>
                <wls:resource-name>META-INF/services/some....</wls:resource-name>
                <wls:resource-name>META-INF/services/unrelated...</wls:resource-name>
                <wls:resource-name>META-INF/services/stuff...</wls:resource-name>
            </wls:prefer-application-resources>
        </wls:container-descriptor>
        <wls:jsp-descriptor>
            <wls:page-check-seconds>-1</wls:page-check-seconds>
            <wls:precompile>true</wls:precompile>
            <wls:precompile-continue>true</wls:precompile-continue>
            <wls:keepgenerated>true</wls:keepgenerated>
        </wls:jsp-descriptor>
        <wls:session-descriptor>
            <wls:persistent-store-type>replicated_if_clustered</wls:persistent-store-type>
        </wls:session-descriptor>
    </wls:weblogic-web-app>
    META-INF/weblogic-application.xml :
    <?xml version="1.0" encoding="UTF-8"?>
    <weblogic-application
        xmlns="http://xmlns.oracle.com/weblogic/weblogic-application"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/javaee_5.xsd http://xmlns.oracle.com/weblogic/weblogic-application http://xmlns.oracle.com/weblogic/weblogic-application/1.2/weblogic-application.xsd">
        <application-param>
            <param-name>webapp.encoding.default</param-name>
            <param-value>UTF-8</param-value>
        </application-param>
        <xml>
            <parser-factory>
                <saxparser-factory>
                    org.apache.xerces.jaxp.SAXParserFactoryImpl
                </saxparser-factory>
                <document-builder-factory>
                    org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
                </document-builder-factory>
                <transformer-factory>
                    org.apache.xalan.processor.TransformerFactoryImpl
                </transformer-factory>
            </parser-factory>
        </xml>
        <prefer-application-packages>
            <package-name>foo.bar.*</package-name> <!-- XXXX -->
            <package-name>javax.jws.*</package-name>
            <package-name>javax.xml.ws.*</package-name>
            <package-name>org.apache.cxf.*</package-name>
            <package-name>antlr.*</package-name>
            <package-name>org.xmlsoap.schemas.wsdl.*</package-name>
        </prefer-application-packages>
    </weblogic-application>

    weblogic-application.xml has no meaning in WARs, it is only used in EARs.

  • SPA-50x RFC 4235 support

    As I have not been able to find any way to submit a support case to Cisco regarding these phones, and in hopes that someone from Cisco may see this, I'd like to request full support for RFC 4235 in the SPA-50x series phones. This is so that in SIP proxy environments the SPA phones can provide their own presence information to the server. The server would SUBSCRIBE to the phone, and the phone would send NOTIFYs of type application/dialog-info+xml whenever there is a state change (ringing, on the phone, etc.). The acceptable Expires time received in a SUBSCRIBE should also be allowed to be VERY short (1 second) so that if the proxy needs to only see what calls are ringing on the phone in order to intercept them, it won't have to make a persistent subscription to the phone.
    I have attached a packet capture showing how Polycom sends NOTIFYs on state change in accordance with RFC 4235. If anyone knows how to get this information to the Cisco SPA team for review I would greatly appreciate letting them see this.
    If you have any questions post here and I will attempt to answer them.

    As I have not been able to find any way to submit a support case to Cisco regarding these phones, and in hopes that someone from Cisco may see this, I'd like to request full support for RFC 4235 in the SPA-50x series phones. This is so that in SIP proxy environments the SPA phones can provide their own presence information to the server. The server would SUBSCRIBE to the phone, and the phone would send NOTIFYs of type application/dialog-info+xml whenever there is a state change (ringing, on the phone, etc.). The acceptable Expires time received in a SUBSCRIBE should also be allowed to be VERY short (1 second) so that if the proxy needs to only see what calls are ringing on the phone in order to intercept them, it won't have to make a persistent subscription to the phone.
    I have attached a packet capture showing how Polycom sends NOTIFYs on state change in accordance with RFC 4235. If anyone knows how to get this information to the Cisco SPA team for review I would greatly appreciate letting them see this.
    If you have any questions post here and I will attempt to answer them.

  • Flash contents not being displayed on the published Apex application URL

    I've had to publish one of my apex application through an bluecoat proxy to reach my Oracle HTTP server. It works fantastic for everything - except my flash charts. Flash contents are not getting loaded.Issue is only in the published application URL,the same application is working fine internally without proxy.
    Does anyone have any idea why this is failing and how I might fix this?.The bluecoat support enginner is having the following findings
    I am seeing some strange behavior when the browser goes through the
    proxy vs when it does not.
    When the browser uses the proxy the last thing it requests is the
    following(packet 354):
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Via: 1.1 GITS6ISA Cookie:
    WWV_CUSTOM-F_941005998277888_193=7DE31ABFD8D9E680 User-Agent:
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.19)
    Gecko/2010031422 Firefox/3.0.19 GTB7.1 (.NET CLR 3.5.30729) Host:
    ithelpdesk.anupcomp.ae Accept: image/png,image/*;q=0.8,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5 Accept-Charset:
    ISO-8859-1,utf-8;q=0.7,*;q=0.7 Referer:
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/theme_3_1.css
    X-Forwarded-For: 86.98.85.117 Cache-Control: max-stale=0 Connection:
    Keep-Alive X-BlueCoat-Via: E2DE37912594ECAA
    HTTP/1.1 200 OK ETag: "1a887e1-92-4c2c5105" Content-Type: image/gif
    Last-Modified: Thu, 01 Jul 2010 08:25:41 GMT Server:
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    OracleAS-Web-Cache-10g/10.1.2.0.2
    (G;max-age=3600+360;age=0;ecid=121853469393,0) Date: Tue, 25 Jan 2011
    07:52:55 GMT Accept-Ranges: bytes Content-Length: 146 Connection:
    Keep-Alive Age: 0
    That is the browser requests
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/btn-bg.gif and gets a
    200 ok from the proxy/server.
    When the browser does not use the proxy I see the following
    behavior(packet 2783):
    The browser requests
    http://anupserver:7777/i/themes/theme_20/btn-bg.gif 2 times, each time
    the server responds with a 304 not modified status, this means the
    browser has the most recent copy of the .gif file. The browser finally
    does a post to http://anupserver:7777/pls/apex/wwv_flow.accept. Given
    that the browser gets a 200 ok response from the proxy when requesting
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/btn-bg.gif and then
    stops requesting data, we need to understand why the browser is behaving
    differently without the proxy(i.e. why does it request the content 2
    times and why is it doing the post). The interaction between the
    browser and the proxy appears normal, a 200 ok response with content is
    normal, why does the browser stop requesting content?
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Accept: */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Accept-Encoding: gzip, deflate If-Modified-Since: Thu,
    01 Jul 2010 08:25:41 GMT If-None-Match: "1a887e1-92-4c2c5105"
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
    CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152;
    .NET CLR 3.5.30729) Host: anupserver:7777 Connection: Keep-Alive
    HTTP/1.1 304 Not Modified Date: Sun, 13 Feb 2011 12:42:01 GMT Server:
    OracleAS-Web-Cache-10g/10.1.2.0.2 Content-Type: text/html Connection:
    Keep-Alive Keep-Alive: timeout=5, max=999 Content-Length: 0
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Accept: */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Accept-Encoding: gzip, deflate If-Modified-Since: Thu,
    01 Jul 2010 08:25:41 GMT If-None-Match: "1a887e1-92-4c2c5105"
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
    CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152;
    .NET CLR 3.5.30729) Host: anupserver:7777 Connection: Keep-Alive
    HTTP/1.1 304 Not Modified Date: Sun, 13 Feb 2011 12:42:02 GMT Server:
    OracleAS-Web-Cache-10g/10.1.2.0.2 Content-Type: text/html Connection:
    Keep-Alive Keep-Alive: timeout=5, max=999 Content-Length: 0
    POST /pls/apex/wwv_flow.accept HTTP/1.1 Accept: image/gif,
    image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash,
    application/vnd.ms-excel, application/vnd.ms-powerpoint,
    application/msword, application/x-ms-application, application/x-ms-xbap,
    application/vnd.ms-xpsdocument, application/xaml+xml, */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Content-Type: application/x-www-form-urlencoded
    Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE
    6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR
    2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Host:
    anupserver:7777 Content-Length: 262 Connection: Keep-Alive
    Cache-Control: no-cache

    Hello Orton,
    I think this has something to do with network access, may be a firewall restricting access to the server.
    Thanks,
    Machaan

  • What is the "Backup IP" reboot reason on the Cisco SPA 50x IP phones?

    Hi,
    We have a customer, at a remote site with SPA504G phones, they have a problem with the phones rebooting once in a while, typically once an hour.
    In the reboot history on the phones the reason is "Backup IP".
    I cant find any reference to this in the SPA 50x manuals or anywhere else, so what do this actually mean?
    The phones are deployed using SIP, and are running firmware 7.4.9c.
    The phones /admin/status.xml has this information:
    <    <Reboot_Reason_1>Backup IP(01/01/2003 12:00:00)</Reboot_Reason_1>
          <Reboot_Reason_2>Backup IP(04/25/2012 07:43:29)</Reboot_Reason_2>
          <Reboot_Reason_3>Backup IP(04/25/2012 06:40:45)</Reboot_Reason_3>
    <    <Reboot_Reason_4>Backup IP(04/25/2012 05:38:02)</Reboot_Reason_4>
          <Reboot_Reason_5>Backup IP(04/25/2012 04:35:18)</Reboot_Reason_5>
    The manual has information about several other reboot reasons, but I can't find any information about this "Backup IP" reason.
    - Martin Mikkelsen, Zisson AS

    Wrong forum, post in "Small Business voice - SPA phones". You can move your posting with the Actions panel on the right.

  • Ssodatan and partner application

    Hello,
    I have configured successfully a java partner application.
    The problem is that each time I run ssodatan command all the
    records in the table WWSSO_PAPP_CONFIGURATION_INF_T are removed
    (the one for ny partner application too) and only portal30 and
    portal30_sso are recreated. So I loose all the parameter of the
    my partner application. It does't appears anymore in the partner
    application list...
    Can anyone help me?
    Thank you,
    Lorenzo.

    I didn't understand very well:
    we need to launch ssodatan necessary because the portal url and
    login server url changes often.
    After that, we loose the partner application configuration (of
    the java application), the portal is OK.
    You suggest me to run ssodatax command, but according with the
    comment in ssodatax script, I can't run it without creating
    manually the partner application (ssodatax needs: site id,
    Token, Encryption Key, ...).
    What I want to avoid is to create manually the partner
    application. Is possible to do this step in automatic way (using
    script or something else)?
    Thanks
    Lorenzo.

  • After updating to 10.10.2, my OpenGL applications do not work, and there are problems with window updates/refresh in App Store, and many applications, Google Chrome is unusable.

    After performing the OS X 10.10.2 update, OpenGL applications, for example Starry Night Pro fail to run, there are numerous windows update/refresh problems (incomplete refresh, remnants of window/frame borders), and some applications, for example Google Chrome are unusable, as cursor motion in the application window causes the display to flash horizontal bars in the window.
    I've tried a variety of things, including downloading the most current release of Xcode, turning on/off transparency in Accessibility, graphics switching, and a few other things, but the problem persists.
    The App Store display behaves similarly.  I am running a MacBook Pro.
    This is the output from EtreCheck:
    Problem description:
    Screen/windows corruption
    EtreCheck version: 2.1.8 (121)
    Report generated March 11, 2015 at 10:26:15 PM CDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,1
        1 2.6 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 36
    Video Information: ℹ️
        Intel HD Graphics 4000
        NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software: ℹ️
        OS X 10.10.2 (14C1510) - Time since boot: 23:26:45
    Disk Information: ℹ️
        APPLE HDD HTS547575A9E384 disk0 : (750.16 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 748.96 GB (146.71 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 749.30 GB Online
        HL-DT-ST DVDRW  GS31N 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple iPod
        Western Digital My Book 1 TB
            EFI (disk3s1) <not mounted> : 210 MB
            WDP1 (disk3s2) /Volumes/WDP1 : 333.40 GB (9.12 GB free)
            WDP2 (disk3s3) /Volumes/WDP2 : 333.40 GB (2.55 GB free)
            WDP3 (disk3s4) /Volumes/WDP3 : 332.79 GB (94.00 GB free)
        Western Digital My Book 1140 2 TB
            EFI (disk4s1) <not mounted> : 210 MB
            2TB_1 (disk4s2) /Volumes/2TB_1 : 666.79 GB (31.36 GB free)
            2TB_2 (disk4s3) /Volumes/2TB_2 : 666.79 GB (58.76 GB free)
            2TB_3 (disk4s4) /Volumes/2TB_3 : 666.18 GB (70.41 GB free)
        Logitech USB Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Logitech USB Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.36 36 - SDK 10.6) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.1.1 28614 - SDK 10.7) [Click for support]
            /Applications/Utilities/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.1) [Click for support]
            /Library/Extensions
        [loaded]    com.epson.driver.EPSONProjectorUDAudio (1.40 - SDK 10.6) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.FTDI.driver.FTDIUSBSerialDriver (2.2.18 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Control Center.HID Driver (3.6.0 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.6) [Click for support]
        [not loaded]    com.Ralink.driver.RT73 (1.1.6) [Click for support]
        [not loaded]    com.beceem.BeceemAppleWiMAXAdapter (5.2.56d16) [Click for support]
        [not loaded]    com.cisco.nke.ipsec (2.0.1) [Click for support]
        [not loaded]    com.devguru.driver.DIFMCDFree (1.1.0) [Click for support]
        [not loaded]    com.devguru.driver.DIFMSerial (1.1.0) [Click for support]
        [not loaded]    com.fklt.driver (1.8.0) [Click for support]
        [not loaded]    com.novatelwireless.driver.3G (2.2.8) [Click for support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (1.2) [Click for support]
        [not loaded]    com.prolific.driver.PL2303 (2.0.0) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.39) [Click for support]
        [not loaded]    com.sbig.driver.SBIGUSBEDriver (4.70) [Click for support]
        [not loaded]    com.sbig.driver.SBIGUSBLoader (4.70.2) [Click for support]
        [not loaded]    com.sierrawireless.driver.SierraDevSupport (2.0.6) [Click for support]
        [not loaded]    com.sierrawireless.driver.SierraFSCSupport (2.0.6) [Click for support]
        [not loaded]    com.tomtom.driver.UsbEthernetGadget (1.0.0d1) [Click for support]
        [not loaded]    com.wacom.kext.wacomtablet (6.3.7 - SDK 10.8) [Click for support]
        [not loaded]    org.emul.driver.EarthMate (1.0.0d1) [Click for support]
            /System/Library/Extensions/NovatelWireless3G.kext/Contents/Plugins
        [not loaded]    com.novatelwireless.driver.3GData (2.2.8) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [not loaded]    com.canon.MFManager.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.kodak.BonjourAgent.plist [Click for support]
        [running]    com.Logitech.Control Center.Daemon.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Click for support]
        [running]    com.wacom.wacomtablet.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [running]    com.autodesk.backburner_manager.plist [Click for support]
        [running]    com.autodesk.backburner_server.plist [Click for support]
        [loaded]    com.autodesk.backburner_start.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [running]    com.makerbot.conveyor.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist [Click for support]
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Firmware Updater.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Software Updater.plist [Click for support]
        [running]    com.parallels.mobile.startgui.launchagent.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
    User Login Items: ℹ️
        Google Drive    Application  (/Applications/Google Drive.app)
        USB Display Agent    Application  (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
        USB Display Agent    Application  (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
    Internet Plug-ins: ℹ️
        WacomNetscape: Version: 2.1.0-1 - SDK 10.8 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        SlingPlayer: Version: Unknown [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 6.0
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 [Click for support]
        AdobePDFViewer: Version: 9.5.5 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    User internet Plug-ins: ℹ️
        fbplugin_1_0_3: Version: Unknown [Click for support]
        BrowserPlus_2.6.0: Version: 2.6.0 [Click for support]
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
        fbplugin_1_0_1: Version: Unknown [Click for support]
        Picasa: Version: 1.0 [Click for support]
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        GoPro  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
        Logitech Control Center  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 748.96 GB Disk used: 602.25 GB
        Destinations:
            WDP3 [Local]
            Total size: 332.79 GB
            Total number of backups: 2
            Oldest backup: 2013-04-03 12:26:32 +0000
            Last backup: 2013-04-03 12:26:32 +0000
            Size of backup disk: Too small
                Backup size 332.79 GB < (Disk used 602.25 GB X 3)
            STAR_TECH_EXT [Local]
            Total size: 499.76 GB
            Total number of backups: 2
            Oldest backup: 2013-04-03 14:26:44 +0000
            Last backup: 2013-04-03 14:26:44 +0000
            Size of backup disk: Too small
                Backup size 499.76 GB < (Disk used 602.25 GB X 3)
    Top Processes by CPU: ℹ️
             3%    WindowServer
             1%    Creative Cloud
             0%    firefox
             0%    fontd
             0%    AdobeUpdateDaemon
    Top Processes by Memory: ℹ️
        670 MB    Safari
        567 MB    firefox
        464 MB    softwareupdated
        395 MB    mds_stores
        309 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.43 GB    Free RAM
        7.87 GB    Active RAM
        6.40 GB    Inactive RAM
        1.47 GB    Wired RAM
        7.30 GB    Page-ins
        205 KB    Page-outs
    Diagnostics Information: ℹ️
        Mar 11, 2015, 04:04:23 PM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-160423_[redacted]. cpu_resource.diag [Click for details]
        Mar 11, 2015, 02:54:29 PM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-145429_[redacted]. cpu_resource.diag [Click for details]
        Mar 11, 2015, 10:18:18 AM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-101818_[redacted]. cpu_resource.diag [Click for details]
        Mar 10, 2015, 10:55:10 PM    Self test - passed
        Mar 9, 2015, 03:21:58 AM    /Library/Logs/DiagnosticReports/SubmitDiagInfo_2015-03-09-032158_[redacted].cpu _resource.diag [Click for details]

    Here is the diagnostic script output:
    Start time: 12:06:12 03/14/15
    Revision: 1290
    Model Identifier: MacBookPro9,1
    System Version: OS X 10.10.2 (14C1510)
    Kernel Version: Darwin 14.1.0
    Time since boot: 3 days 13:11
    UID: 502
    Memory
        BANK 0/DIMM0
          Size: 8 GB
          Speed: 1600 MHz
          Status: OK
          Manufacturer: 0x859B
        BANK 1/DIMM0
          Size: 8 GB
          Speed: 1600 MHz
          Status: OK
          Manufacturer: 0x859B
    USB
        Hub (Belkin Corporation)
        My Book 1140 (Western Digital Technologies, Inc.)
        My Book (Western Digital Technologies, Inc.)
        USB Receiver (Logitech Inc.)
        USB Receiver (Logitech Inc.)
    FileVault 2: On
    Activity
        CPU: user 13%, system 7%
    CPU usage (%)
        plugin-container (UID 502): 100.0
        com.apple.WebKit (UID 502): 26.2
    File opens (per sec)
        AdobeUpdateDaem (UID 0) => /tmp/UUID_OUT (status 60): 6
    Energy (lifetime)
        WindowServer (UID 88): 7.44
        com.apple.WebKit.WebContent (UID 502): 7.22
    Energy (sampled)
        plugin-container (UID 502): 99.13
        com.apple.WebKit.WebContent (UID 502): 23.60
        WindowServer (UID 88): 21.29
        com.apple.WebKit.WebContent (UID 502): 13.16
        Console (UID 502): 12.28
    Memory (MB)
        kernel_task (UID 0): 1327
    Font issues: 1
    Listeners
        launchd: ftp
    System caches/logs
        3.6 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-02-19 com.apple.WebKit.WebContent crash
        2015-02-20 Topaz Adjust 5 crash
        2015-02-20 Topaz ReStyle crash
        2015-02-20 com.apple.WebKit.WebContent crash x2
        2015-02-21 com.apple.WebKit.WebContent crash x2
        2015-02-25 com.apple.WebKit.WebContent crash
        2015-03-04 system_profiler crash
        2015-03-07 com.apple.WebKit.WebContent crash
        2015-03-08 MPEG Streamclip hang x2
        2015-03-08 com.apple.WebKit.WebContent crash
    I/O errors
        disk2s2: close: journal 0xffffff8049bb9c20, is invalid.  aborting outstanding transactions 1
        disk2s2: do_jnl_io: strategy err 0x6 1
        disk2s3: close: journal 0xffffff8049bb9740, is invalid.  aborting outstanding transactions 1
        disk2s3: do_jnl_io: strategy err 0x6 1
        disk2s4: close: journal 0xffffff8049bb9260, is invalid.  aborting outstanding transactions 1
        disk2s4: do_jnl_io: strategy err 0x6 1
        disk3s2: do_jnl_io: strategy err 0x6 1
        disk3s3: close: journal 0xffffff8049bb95a0, is invalid.  aborting outstanding transactions 1
        disk3s3: do_jnl_io: strategy err 0x6 1
        disk3s4: close: journal 0xffffff8049bb9400, is invalid.  aborting outstanding transactions 1
        disk3s4: do_jnl_io: strategy err 0x6 1
        disk4s3: close: journal 0xffffff8023522c20, is invalid.  aborting outstanding transactions 1
        disk4s3: do_jnl_io: strategy err 0x6 1
    Volumes
        disk1: /
        disk5s3: /Volumes/WDP2
        disk5s2: /Volumes/WDP1
        disk5s4: /Volumes/WDP3
        disk6s2: /Volumes/2TB_1
        disk6s4: /Volumes/2TB_3
        disk6s3: /Volumes/2TB_2
        disk7s2: /Volumes/Starry Night Pro 7
    HID errors: 3
    Kernel log
        Mar  8 17:08:19 firefox (map: 0xffffff80501790f0) triggered DYLD shared region unnest for map: 0xffffff80501790f0, region 0x7fff8a200000->0x7fff8a400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  8 17:08:59 firefox (map: 0xffffff8051e54870) triggered DYLD shared region unnest for map: 0xffffff8051e54870, region 0x7fff8a200000->0x7fff8a400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  9 08:11:09 jnl: disk2s4: close: journal 0xffffff8049bb9260, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s4: close: journal 0xffffff8049bb9400, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk2s3: close: journal 0xffffff8049bb9740, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s3: close: journal 0xffffff8049bb95a0, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s2: write_journal_header: error writing the journal header!
        Mar  9 08:11:09 jnl: disk2s2: close: journal 0xffffff8049bb9c20, is invalid.  aborting outstanding transactions
        Mar  9 11:42:59 firefox (map: 0xffffff8031b5e780) triggered DYLD shared region unnest for map: 0xffffff8031b5e780, region 0x7fff89e00000->0x7fff8a000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar 10 13:44:08 Limiting closed port RST response from 310 to 250 packets per second
        Mar 10 23:03:12 firefox (map: 0xffffff802a954780) triggered DYLD shared region unnest for map: 0xffffff802a954780, region 0x7fff90000000->0x7fff90200000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar 10 23:20:37 Limiting icmp unreach response from 302 to 250 packets per second
        Mar 11 08:39:04 jnl: disk4s3: write_journal_header: error writing the journal header!
        Mar 11 08:39:04 jnl: disk4s3: close: journal 0xffffff8023522c20, is invalid.  aborting outstanding transactions
        Mar 13 17:42:33 Limiting icmp unreach response from 428 to 250 packets per second
        Mar 13 17:42:34 Limiting icmp unreach response from 433 to 250 packets per second
    System log
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128828
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128829
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128830
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128831
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:32:27 com.apple.sbd:  SOSCCThisDeviceIsInCircle SOSCCThisDeviceIsInCircle!! 7
        Mar 14 09:35:28 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:47:41 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Installer" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:50:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:52:55 WindowServer: WSGetSurfaceInWindow : Invalid surface 583724228 for window 1898
        Mar 14 10:09:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.WebKit.Plugin.64" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:48 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:49 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.WebKit.Plugin.64" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:55 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:10:08 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:39:34 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29a29a pid=25591 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 10:39:34 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29a29a pid=25591 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 11:57:26 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29f29f pid=26088 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 11:57:26 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29f29f pid=26088 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
    launchd log
        Mar  8 17:07:46 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar  8 17:08:18 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.341, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar  8 17:08:18 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.341, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar  9 11:41:23 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar  9 11:41:51 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.274, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar  9 11:41:51 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.274, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar 10 22:48:48 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = imklaunchagent.14852, service = com.parallels.inputmethod.ParallelsIM.5712, error = 134: Service cannot load in requested session
        Mar 10 22:48:58 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = WacomTabletDriv.14813, service = com.wacom.WacomTouchDriver.183780, error = 134: Service cannot load in requested session
        Mar 10 22:48:59 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = prl_deskctl_age.14812, service = com.parallels.mobile.prl_deskctl_agent.220416.UUID, error = 134: Service cannot load in requested session
        Mar 10 22:48:59 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = WacomTabletDriv.14813, service = com.wacom.TabletDriver.184064, error = 134: Service cannot load in requested session
        Mar 10 22:56:21 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar 10 22:59:02 com.apple.xpc.launchd.user.502.100005.Aqua: Could not import service from caller: caller = otherbsd.340, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar 10 22:59:02 com.apple.xpc.launchd.user.502.100005.Aqua: Could not import service from caller: caller = otherbsd.340, service = com.apple.photostream-agent, error = 119: Service is disabled
    Loaded kernel extensions
        com.Logitech.Control Center.HID Driver (3.6.0)
        com.Logitech.Unifying.HID Driver (1.2.0)
        com.epson.driver.EPSONProjectorUDAudio (1.40)
        com.parallels.virtualsound (1.0.36 36)
    System services loaded
        com.adobe.adobeupdatedaemon
        com.adobe.fpsaud
        com.apple.watchdogd
        com.autodesk.backburner_manager
        com.autodesk.backburner_server
        com.autodesk.backburner_start
        com.google.keystone.daemon
        com.makerbot.conveyor.daemon
        com.oracle.java.Helper-Tool
        com.oracle.java.JavaUpdateHelper
        com.parallels.mobile.dispatcher.launchdaemon
        com.parallels.mobile.kextloader.launchdaemon
        org.macosforge.xquartz.privileged_startx
    System services disabled
        com.apple.security.FDERecoveryAgent
        com.apple.mtmd
        com.apple.mrt
        com.apple.mtmfs
    Login services loaded
        com.GoPro.GoPro-Importer
        com.Logitech.Control Center.Daemon
        com.adobe.AAM.Scheduler-1.0
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.AdobeCreativeCloud
        com.apple.Safari
        - status: 78
        com.apple.mrt.uiagent
        com.citrixonline.GoToMeeting.G2MUpdate
        com.divx.dms.agent
        com.divx.update.agent
        com.google.keystone.system.agent
        com.kodak.BonjourAgent
        com.kodak.KODAK AiO Firmware Updater
        com.kodak.KODAK AiO Software Updater
        com.oracle.java.Java-Updater
        com.parallels.mobile.prl_deskctl_agent.launchagent
        com.parallels.mobile.startgui.launchagent
        com.valvesoftware.steamclean
        com.wacom.wacomtablet
        gldrvmond
        org.macosforge.xquartz.startx
    Global login items
        /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
        /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
    User login items
        Google Drive
        - /Applications/Google Drive.app
        USB Display Agent
        - /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
        USB Display Agent
        - /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
    User crontab
        #SqzS VERSION = 1.0.0
        #SYMANTEC SCHEDULER CRON ENTRIES.  THESE ENTRIES ARE AUTOMATICALLY GENERATED
        #PLEASE DO NOT EDIT.
        # Enc=1 Name="Update Virus Protection"  EvType1=1 EvType2=0 Sched=2
        0 8 * * 5 "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher"  1 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUdf"
        # Enc=1 Name="My AntiVirus Scan Task"  EvType1=2 EvType2=0 Sched=2
        #0 9 * * 6 "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher" -n  2 "/Library/Application Support/Symantec/AntiVirus/ScanNotification.app/Contents/scheduledScanner" "    "  "NVsi"  "SCae"  "path" '/' "kydo" "niCE" "long" 0
        # Enc=1 Name="My Product Update Task"  EvType1=1 EvType2=0 Sched=3
        0 8 * * * "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher"  3 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUlu"
        #SqzS END SYMANTEC CRON ENTRIES
    Safari extensions
        Open in Internet Explorer
        - com.parallels.openinie
    Widgets
        TimeCalc
        eCalc_Scientific
    iCloud errors
        bird 137
        cloudd 18
        storedownloadd 2
        CallHistorySyncHelper 2
    Continuity errors
        lsuseractivityd 21
        sharingd 11
    Restricted files: 10847
    Lockfiles: 19
    High file counts
        Desktop: 84
    Accessibility
        Keyboard Zoom: On
        Scroll Zoom: On
    Contents of /Library/LaunchAgents/com.canon.MFManager.plist
        - mod date: May 22 05:23:32 2012
        - checksum: 290641261
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.canon.MFManager</string>
        <key>Program</key>
        <string>/Applications/Canon Utilities/ImageBrowser EX/ExtApp/MFManager.app/Contents/MacOS/MFManager</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Canon Utilities/ImageBrowser EX/ExtApp/MFManager.app/Contents/MacOS/MFManager</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.dms.agent.plist
        - mod date: Nov 17 02:11:48 2014
        - checksum: 637650676
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.dms.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXMediaServer.app/Contents/MacOS/DivXMediaServer</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.update.agent.plist
        - mod date: May 19 16:24:29 2014
        - checksum: 3867571547
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.update.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXUpdate.app/Contents/MacOS/DivXUpdate</string>
        <string>/silent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>10800</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.kodak.BonjourAgent.plist
        - mod date: Sep 21 01:39:00 2012
        - checksum: 2625351456
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Kodak Version</key>
        <string>7.1.6.10</string>
        <key>Label</key>
        <string>com.kodak.BonjourAgent</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Printers/Kodak/AiO_Printers/KodakAiOBonjourAgent.app/Contents/ MacOS/KodakAiOBonjourAgent</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
        - mod date: Feb 15 11:22:20 2014
        - checksum: 2857777334
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>71</integer>
        <key>Minute</key>
        <integer>54</integer>
        <key>Weekday</key>
        <integer>5</integer>
        </dict>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.parallels.mobile.prl_deskctl_agent.launchagent.plist
        - mod date: Feb 24 10:45:51 2015
        - checksum: 1795713191
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnableTransactions</key>
        <true/>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/etc/com.parallels.mobile.prl_deskctl_agent.launchd</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.parallels.mobile.prl_deskctl_agent.launchagent</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Applications/Parallels Access.app/Contents/MacOS/Parallels Access Agent.app/Contents/MacOS/prl_deskctl_agent</string>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.wacom.wacomtablet.plist
        - mod date: Oct 11 17:37:46 2013
        - checksum: 2972905917
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.wacomtablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/WacomTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
        - mod date: Aug 11 16:52:54 2014
        - checksum: 2451978492
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>org.macosforge.xquartz.startx</string>
        <key>ProgramArguments</key>
        <array>
        <string>/opt/X11/lib/X11/xinit/launchd_startx</string>
        <string>/opt/X11/bin/startx</string>
        <string>--</string>
        <string>/opt/X11/bin/Xquartz</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>org.macosforge.xquartz:0</key>
        <dict>
        <key>SecureSocketWithKey</key>
        <string>DISPLAY</string>
        </dict>
        </dict>
        <key>ServiceIPC</key>
        <true/>
        <key>EnableTransactions</key>
        <true/>
        ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_manager.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 3394451584
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/usr/discreet/backburner/nrapi.conf</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.autodesk.backburner_manager</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburnerManager</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_server.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 2405015914
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/usr/discreet/backburner/nrapi.conf</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.autodesk.backburner_server</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburnerServer</string>
        </array>
        <key>Nice</key>
        <integer>18</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_start.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 597826117
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.autodesk.backburner_start</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburner</string>
        <string>boot</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.makerbot.conveyor.plist
        - mod date: Dec  2 11:47:26 2013
        - checksum: 147573995
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Disabled</key>
            <false/>
            <key>Label</key>
            <string>com.makerbot.conveyor.daemon</string>
            <key>WorkingDirectory</key>
            <string>/Library/MakerBot</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/MakerBot/conveyor-svc</string>
                <string>--config_file</string>
                <string>/Library/MakerBot/conveyor.conf</string>
            </array>
            <key>KeepAlive</key>
            <true/>
            <key>EnvironmentVariables</key>
            <dict/>
            <key>RunAtLoad</key>
            <true/>
            <key>UserName</key>
            <string>_conveyor</string>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchDaemons/com.parallels.mobile.dispatcher.launchdaemon.plist
        - mod date: Feb 24 10:45:50 2015
        - checksum: 1994226602
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.dispatcher.launchdaemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Parallels Access.app/Contents/MacOS/Parallels Access Dispatcher Service.app/Contents/MacOS/prl_pm_service</string>
        <string>-e</string>
        <string>--logfile</string>
        <string>/var/log/prl_disp_service_server.log</string>
        <string>--pidfile</string>
        <string>/var/run/prl_pm_service.pid</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.parallels.mobile.kextloader.launchdaemon.plist
        - mod date: Feb 24 10:45:51 2015
        - checksum: 3938648138
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.kextloader.launchdaemon</string>
        <key>ProgramArguments</key>
        <array>
                <string>/sbin/kextload</string>
        <string>/Applications/Parallels Access.app/Contents/Library/Extensions/10.9/prl_virtual_sound.kext</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /private/etc/ssh_config
        - mod date: Nov 19 19:03:16 2012
        - checksum: 1281775184
         Host *
           SendEnv LANG LC_*
        Host *
            XAuthLocation /opt/X11/bin/xauth
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 20 19:45:18 2011
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 29 16:03:43 2010
        - checksum: 2544798274
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 8/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Sep 11 18:20:35 2011
        - checksum: 2170691092
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 9/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Oct 19 12:47:52 2009
        - checksum: 10744905
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.FolderActions.folders.plist
        - mod date: Jan 30 08:36:08 2015
        - checksum: 1189540302
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.FolderActions.folders</string>
        <key>Program</key>
        <string>/usr/bin/osascript</string>
        <key>ProgramArguments</key>
        <array>
        <string>osascript</string>
        <string>-e</string>
        <string>tell application "Folder Actions Dispatcher" to tick</string>
        </array>
        <key>WatchPaths</key>
        <array/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist
        - mod date: Dec 18 09:24:48 2008
        - checksum: 3493273791
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.Safari</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/S afariSyncClient</string>
        <string>--sync</string>
        <string>com.apple.Safari</string>
        <string>--entitynames</string>
        <string>com.apple.bookmarks.Bookmark,com.apple.bookmarks.Folder</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ThrottleInterval</key>
        <integer>60</integer>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Library/Safari/Bookmarks.plist</string>
        </array>
        </dict>
        ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.citrixonline.GoToMeeting.G2MUpdate.plist
        - mod date: Dec 15 10:55:51 2014
        - checksum: 3001252484
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.citrixonline.GoToMeeting.G2MUpdate</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/CitrixOnline/GoToMeeting/G2MUpdate</string>
        </array>
        <key>StartInterval</key>
        <integer>3660</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.parallels.mobile.startgui.launchagent.plist
        - mod date: Mar 10 23:00:25 2015
        - checksum: 662430762
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.startgui.launchagent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Parallels Access.app/Contents/MacOS/prl_deskctl_wizard</string>
                <string>--autorun</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.valvesoftware.steamclean.plist
        - mod date: Mar  7 15:48:06 2014
        - checksum: 1327160095
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.valvesoftware.steamclean</string>
        <key>Program</key>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps/steamclean</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps/steamclean</string>
        <string>Public</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>SteamContentPaths</key>
        <array>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps</string>
        </array>
        <key>WatchPaths</key>
        <array>
        <string>/Applications/Steam.app</string>
        </array>
        </dict>
        </plist>
    App extensions
        com.google.GoogleDrive.FinderSyncAPIExtension
        com.parallels.desktop.console.Resource-Monitor
    Installations
        Topaz Detail2: 11/15/12, 2:58 PM
        Topaz DeNoise 5: 11/15/12, 2:57 PM
        Topaz Adjust 5: 1

Maybe you are looking for

  • Price not coming in PO

    Hello Experts, Myself Pranay. I am working in AFS industry. I created an info record in PB00 which is for standard material. but when i am doing carry out new price in PO, price is coming in both PB00 & J3AP. J3AP is for grid material. Please suggest

  • Business System in SLD

    Do I have to create each system as businass system into SLD? Is it possible to work with business system (in Integration Directory) that not exist into SLD?

  • Problems with foreign characters

    I've had the problem of iTunes not displaying foreign (Japanese in my case) characters. I do have proper language packs installed and I've seen these characters work on other people's computers. My iPod displays them perfectly too. Is there a setting

  • Iphone disabled connect to iTunes- not possible

    updated iphone and forgot passcode, it now says iphone is disabled connect to iTunes but when i connect to iTunes it tells me to enter the passcode which i can no longer do. I have tried to restore the iPhone but when it gets down to the final 20 min

  • HT1212 how do I get past the apple icon...my iphone prompts need passcode phone is locked.

    Please offer suggestions...this is a new phone . I have been on the phone with an AT&T rep for 3 hours...