Get # of Days since last modified

Is there anyway to have a number column that shows the number of days since the item or page was last updated? I was hoping to use a calculated column where [Today]-[Modified] but that doesn't work. A workflow wouldn't work because it would have to keep
continuously running to keep that column updated.  Any ideas?
Thanks.   
Nick Hurst

We ended up finding some posts online suggesting using Jquery to display this information on the page.  You can put this code in your page layout to display the number of days since the page was last modified or any date field you have associated
with the page. 
What we ended up doing was creating a calculated field to just grab a date field (in our case the column 'ReviewDate') and put it in the proper format:
=TEXT([ReviewDate],"MM/DD/YYYY")
Then we added a div to the page layout that has this date but is not displayed on the page:
<div class="review-date-text" style="display:none;">
        <SharePoint:CalculatedField FieldName="ReviewDateDisplay" runat="server" ControlMode="Display"/>
</div>
Here's the code, I'm not a developer so there are probably better ways to do this but I was able to piece this together from a couple different posts:
//The following gets the number of days since article was reviewed and writes the value into a right col div
//Gets Todays date and format it as date
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth();
var yyyy = today.getFullYear();
if(dd<10) {
dd='0'+dd
if(mm<10) {
mm='0'+mm
var todaysDate = new Date(yyyy,mm,dd);
//Finds the text value of the review date
//The review date is in the review-date-text div
var reviewdatetext = jQuery(".review-date-text").text();
var reviewdatetext = jQuery.trim(reviewdatetext);
//Parses the review date and formats as a new date
var dateParts = reviewdatetext.split('/')
var reviewyear = dateParts[2];
var reviewday = dateParts[1];
var reviewmonth = dateParts[0]-1;//January is 0!
var reviewDate = new Date(reviewyear,reviewmonth,reviewday);
//Finds the number of days difference between today and review date
oneDay = 24*60*60*1000; // hours*minutes*seconds*milliseconds
var diffDays = Math.round(Math.abs((todaysDate.getTime() - reviewDate.getTime())/(oneDay)));
//Appends the number of days to the review-date div in the right column
jQuery("<div class='Custom-Date-Review'>"+diffDays+" days ago</div>").appendTo("#review-date");
Works great for us, hope that helps someone else. 
Nick Hurst

Similar Messages

  • MC46 - How is days since last consumption calculated?

    Customer is using MC46 (Analysis of Slow-Moving Items).
    They wish to know where does the days since last consumption come from ?
    Regards.
    Phil.

    hi,
    This depends on the GR which is made on which date...so based on that date till today it will calculate the days...
    Hope it helps..
    Regards
    Priyanka.P

  • HT1871 Hi. my iphone 4 is getting heated and battery is getting lower & lower. since last 4 days i am facing this problem. please help me

    Dear Team,
    Since last 4 days after i have replaced display of my iphone 4, my handset is getting heated & battery is getting discharged in no time. i mean in morning i am doing full charge & before noon its getting low.
    please help
    Ravi Vyas

    Will it get rectified and restored...if so after how long. What could be the reason for such outage kindly share,  as I am facing real problem because of this...

  • Report - Return days since LAST activity

    Hi,
    I need a report that returns "All open SRs with the amount of days since the LAST completed activity of type X" (so we can see when the activity needs to happen again)
    I have managed to create a report that brings back "all open SRs with the amount of days since EVERY completed activity of Type X (so if the activity happened 10 times i get the report returning the SR 10 times).
    I was hoping i could use something like a min function in a pivot table to just return the days since the LAST one but am getting nowhere.
    Any ideas?!?!?!
    Thanks in advance
    Rich

    Hi Guys,
    I'm doing a similar report also.
    I have a analysis based on Activities that returns a list of service requests.
    I have inserted a column with a timediff function to tell me how many days old the activity is. e.g.:
    SR 1, act1, 2 days old
    SR 1, act2, 4 days old
    SR 2, act1, 6 days old
    SR 3, act1, 3 days old
    SR 3, act2, 9 days old
    Using a pivot table i display only the first activity for each SR.
    SR 1, act1, 2 days old
    SR 2, act1, 6 days old
    SR 3, act1, 3 days old
    However i now want to be able to sort the pivot table in descending order of the Day Old column.
    Unfortunately i can't get this to work.
    Any idea's?

  • TM Backup Failed - too many days since last backup

    I moved and it took awhile for me to plugin my TM drive. Finally plugged it in and got an error that says "Backup Failed it has been 89 days since your last backup." There is no option to start a new backup. How do I fix this?

    Hi Jake,
    Try repairing the TM backup using Disk Utility.
    If you back up to a Time Capsule or network disk:
    Open the Time Machine pane of System Preferences, and slide the switch to Off.
    Open Disk Utility, which is in the Utilities folder in the Applications folder.
    Make sure the Time Capsule or network disk is turned on and available.
    Open a Finder window, select your Time Capsule or network disk in the Shared section of the sidebar, and click Connect. If necessary, enter your user name and password.
    On the Time Capsule or network disk, select the disk or volume that contains Time Machine backups. Depending on how your Time Capsule is set up, there may be one or more disks or volumes.
    Locate your backup, and drag it to the Disk Utility sidebar.
    You can identify your backup by looking for your computer’s name in the backup’s filename.
    Select your backup in the Disk Utility sidebar, and then click Repair.
    If the repair is successful, attempt to back up using Time Machine. If the repair is not successful, delete your backup and start a new backup.
    Hope this helps.
    Neville

  • Determine Days Since Last Visit

    I think I may be overthinking this problem.
    What I have is a table that consists of membership data including visit dates. For each visit date, I need to determine the number of days since the last visit.
    I'm trying a combination of CTEs and partitions, but it is simply not coalescing in my head.
    Following is a sample set of data;
    KeyID          MemberID          AdmitDate          Last_Admit_Days
    1                 2601                 2014-04-17         
    2                 2001                 2014-05-04         
    3                 1001                 2014-05-15         
    4                 8001                 2014-05-28         
    5                 2601                 2014-05-23         
    6                 2601                 2014-05-28         
    7                 9301                 2014-03-21         
    8                 9301                 2014-05-15         
    9                 9301                 2014-05-21         
    10                8601                2014-05-26         
    11                3601                2014-04-13         
    12                3601                2014-05-05
    I tried putting that in as a code block, but it ended up putting everything on one line.
    Anyway, Member # 2601 has three admit dates; 2014-04-17, 2014-05-23 and 2014-05-28. So, the number in the Last_Admit_Days column for those records, should be the DATEDIFF in days between the AdmitDate and the AdmitDate of the immediately prior AdmitDate
    for #2601, like this;
    KeyID          MemberID          AdmitDate          Last_Admit_Days
    1                 2601                 2014-04-17         
    0
    5                 2601                 2014-05-23         
    36
    6                 2601                 2014-05-28         
    5
    I am stumped. Maybe the weekend will refresh me to take a better stab at it, but it's confounding me at the moment and I thought I'd ask here to see if anyone had a quick idea off the top of their heads.
    I truly appreciate any assistance.
    Thanx!

    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules. Temporal data should
    use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect. 
    This is minimal polite behavior on SQL forums. There is no such crap as a“key_id” in RDBMS; that night mare is mix of meta-data and attribute proprieties.
    CREATE TABLE Visits
    (member_id CHAR(4)NOT NULL,
    admission_date DATE NOT NULL,
    PRIMARY KEY(member_id,admission_date));
    INSERT INTO Visits
    VALUES
    ('2601','2014-04-17'),
    ('2001','2014-05-04'),
    ('1001','2014-05-15'),
    ('8001','2014-05-28'),
    ('2601','2014-05-23'),
    ('2601','2014-05-28),
    ('9301','2014-03-21'),
    ('9301','2014-05-15'),
    ('9301','2014-05-21'),
    ('8601','2014-05-26'),
    ('3601','2014-04-13'),
    ('3601','2014-05-05');
    SELECT member_id, admission_date,
           DATEDIFF(DAY,
                LAG(admission_date)
                OVER(PARTITION BY member_id
                     ORDER BY admission_date),
                 admission_date)
           AS visit_delta
      FROM Visits
      ORDER BY member_id, admission_date;
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Problems getting days since last used for licensed software

    Using SCCM 2007 SP2 R3
    We've been required to start removing certain licensed software after 60 days of non-use.  Tried the canned reports, but needed to do a customized one to get all the needed info:
    SELECT DISTINCT SYS.Netbios_Name0 AS 'NAME', CSYS.Manufacturer0 AS 'MFG', CSYS.Model0 AS 'MODEL'
    , PCB.SerialNumber0 AS 'SN#', SCUM.TopConsoleUser0 AS 'TOP USER'
    , RUA2.LastUserName0 AS 'LAST APP USER', OSYS.Caption0 AS 'OS', SMSIS.SMS_Installed_Sites0 AS 'SITE'
    , SYS.Resource_Domain_OR_Workgr0 AS 'DOMAIN', RUA2.ExplorerFileName0 AS 'FILE', RUA2.FileDescription0 AS 'PRODUCT'
    ,RUA2.ProductVersion0 AS 'METERED VERSION', SWF.FileVersion AS 'FILE VERSION'
    , CASE WHEN MIN(DateDiff(day, RUA2.LastUsedTime0, GetDate())) IS NULL THEN CAST('NOT USED'AS VARCHAR)
    ELSE CAST (MIN(DateDiff(day, RUA2.LastUsedTime0, GetDate())) AS VARCHAR)
    END AS 'VISIO LAST USED (> 60 DAYS)'
    FROM dbo.v_R_System SYS
    JOIN dbo.v_GS_SoftwareFile SWF ON SYS.ResourceID = SWF.ResourceID
    JOIN dbo.v_Add_Remove_Programs ARP ON SYS.ResourceID = ARP.ResourceID
    JOIN dbo.v_GS_COMPUTER_SYSTEM CSYS ON SYS.ResourceID = CSYS.ResourceID
    JOIN dbo.v_GS_PC_BIOS PCB ON SYS.ResourceID = PCB.ResourceID
    JOIN dbo.v_GS_OPERATING_SYSTEM OSYS ON SYS.ResourceID = OSYS.ResourceID
    JOIN dbo.v_RA_System_SMSInstalledSites SMSIS ON SYS.ResourceID = SMSIS.ResourceID
    JOIN dbo.v_GS_SYSTEM_CONSOLE_USAGE_MAXGROUP SCUM ON SYS.ResourceID = SCUM.ResourceID
    LEFT OUTER JOIN dbo.v_GS_CCM_RECENTLY_USED_APPS RUA2 ON SYS.ResourceID
    = (SELECT RUA2.ResourceID WHERE RUA2.ExplorerFileName0 = 'acrobat.exe')
    WHERE (SWF.FileName = 'acrobat.exe'
    AND SWF.FilePath LIKE 'c:\program%')
    AND SYS.Operating_System_Name_and0 LIKE '%workstation%'
    AND SYS.Client0 = '1'
    AND SYS.Obsolete0 = '0'
    AND ARP.DisplayName0 LIKE '%adobe %acrobat %'
    AND ARP.DisplayName0 NOT LIKE '%mui%'
    AND ARP.DisplayName0 NOT LIKE '%viewer%'
    AND ARP.DisplayName0 NOT LIKE '%pack%'
    AND ARP.DisplayName0 NOT LIKE '%update%'
    AND ARP.DisplayName0 NOT LIKE '%web%'
    AND ARP.DisplayName0 NOT LIKE '%modeler%'
    AND ARP.DisplayName0 NOT LIKE '%hotfix%'
    AND ARP.DisplayName0 NOT LIKE '%browser%'
    AND ARP.DisplayName0 NOT LIKE '%workgroup%'
    AND ARP.DisplayName0 NOT LIKE '%english%'
    AND ARP.DisplayName0 NOT LIKE '%extended%'
    AND ARP.DisplayName0 NOT LIKE '%cpsid%'
    GROUP BY SYS.Netbios_Name0, CSYS.Manufacturer0, CSYS.Model0, PCB.SerialNumber0, SYS.User_Name0, OSYS.Caption0, SMSIS.SMS_Installed_Sites0
    , SYS.Resource_Domain_OR_Workgr0, RUA2.ExplorerFileName0, RUA2.ProductName0, RUA2.FileDescription0
    , RUA2.ProductVersion0, RUA2.LastUserName0, SWF.FileVersion, SCUM.TopConsoleUser0
    HAVING MIN(DateDiff(day, RUA2.LastUsedTime0, GetDate())) > '60'
    OR MIN(DateDiff(day, RUA2.LastUsedTime0, GetDate())) IS NULL
    ORDER BY 'DOMAIN', 'SITE', 'NAME'
    It produces output similar to the below:
    NAME
    MFG
    MODEL
    SN#
    TOP USER
    LAST APP USER
    OS
    SITE
    DOMAIN
    FILE
    PRODUCT
    METERED VERSION
    FILE VERSION
    ACROBAT LAST USED (> 60 DAYS)
    ECH-WS73030
    BIOSTAR Group
    P43D3
    None
    vha19\vhadengethoh
    NULL
    Microsoft Windows 7 Enterprise
    ECH
    VHA19
    NULL
    NULL
    NULL
    11.0.06.70
    NOT USED
    ECH-WS60512
    Dell Inc.
    OptiPlex 990
    FZVCHS1
    vha19\vhaechconnel
    VHA19\VHAECHSchneA
    Microsoft Windows 7 Enterprise
    ECH
    VHA19
    Acrobat.exe
    Adobe Acrobat
    11.0.03.37
    11.0.06.70
    87
    Running into two problems:
      1.  Despite the product actually being used on some computers, Recently Used Apps (RUA) View shows no usage (none in other SW Metering views, either) and not sure what the issue is--SW and HW inventory are both working perfectly fine, as
    are the metering processes on the site server.  Gives me a lot of false positives for not being used.
      2.  Have found some cases in which a previous version was installed, and used, then later upgraded, but not used--however, seems no way to filter out just usage for the CURRENT version.  Have looked at comparing the SW File Version and the
    RUA.File Version, but they are often not identical, particularly if the product was patched.
    Is there a better way to determine usage, or a better custom report to use?
    Thanks.

    I'm cleaning up old post, did you figure this out, if so how?
    http://www.enhansoft.com/

  • To get first day and last day of month.

    Please help, I need a sql function that will return the first day of a month when I enter a date that is on or before the 15th and then returns the last day of the month when I enter a date of the 16th or later.
    This is my query but I get ORA-00932: inconsistent datatypes: expected DATE got CHAR error.
    select CASE
    WHEN to_char(:p_date, 'DD') < 15 THEN
    add_months((LAST_DAY(:p_date)+1), -1)
    WHEN to_char(:p_date, 'DD') > 15 THEN
    TO_CHAR(LAST_DAY(:p_date))
    end
    from dual;
    Thanks

    Hi,
    please use the good habit to mark your questions as answered when you are satisfied with the answers.
    Additionally when you put some code or output please enclose it between two lines starting with {noformat}{noformat}
    i.e.:
    {noformat}{noformat}
    SELECT ...
    {noformat}{noformat}
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Getting recurring errors since last MS update

    I have Win8. Since the last update a couple of days ago, Firefox keeps failing to display pages properly - I think any with tables. I am able to fix this temporarily by clearing the cache, but it recurs a couple of hours later.

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Getting 2 errors since last OS update...

    ....one seems to be completely random: "To view this web content, you need to install the Java Runtime Environment.   Click “More Info…” to visit the website for the Java Runtime Environment..."
    I have installed the Java Runtime Environment plugin, upgrade, whatever it is several times and I still get the message everyday a dozen or more times.
    The other error occurs when shutting down the computer.  It goes by pretty quick but I think it says something like; "Finish installing?  Abort or Yes" and I have no curser control at all at that point.  Happens every time I shut down or restart.
    Anyone have ideas about these alerts, errors and how to fix them?
    My Macbook Pro, 15" Retina display has the most up-to-date OS--10.10.1

    Start time: 19:31:46 01/05/15
    Model Identifier: MacBookPro10,1
    System Version: OS X 10.10.1 (14B25)
    Kernel Version: Darwin 14.0.0
    Time since boot: 9:34
    Bluetooth
       Apple Wireless Keyboard
       Apple Wireless Trackpad
    Diagnostic reports
       2014-12-19 cloudd crash
       2014-12-20 Kernel gpuRestart
       2014-12-26 com.apple.preference.network.remoteservice crash
       2014-12-30 Google Chrome hang
       2015-01-05 garcon crash
       2015-01-05 mds crash
    Log
       Jan  5 17:13:48 AFP_VFS afpfs_DoReconnect:  connect on /Volumes/Data failed 51.
       Jan  5 17:13:56 ASP_TCP asp_SetTCPQoS:  sock_settclassopt got error 57
       Jan  5 17:13:56 AFP_VFS afpfs_DoReconnect:  connect on /Volumes/Data failed 51.
       Jan  5 17:14:06 ASP_TCP asp_SetTCPQoS:  sock_settclassopt got error 57
       Jan  5 17:14:06 AFP_VFS afpfs_DoReconnect:  connect on /Volumes/Data failed 51.
       Jan  5 17:14:16 ASP_TCP asp_SetTCPQoS:  sock_settclassopt got error 57
       Jan  5 17:14:27 pci pause: SDXC
       Jan  5 17:48:15 com.facebook.videochat.NAME.updater: Service exited with abnormal code: 1
       Jan  5 17:51:44 wl0: Beacon Loss Event, last RSSI[-65]
       Jan  5 18:12:18 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 18:12:23 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 18:12:35 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 18:15:19 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 18:23:33 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 18:23:40 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 18:23:50 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:29:59 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:30:02 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:30:05 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:30:08 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:30:11 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:30:14 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:30:18 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:30:22 com.openssh.sshd.UUID: Service exited with abnormal code: 255
       Jan  5 19:30:31 com.openssh.sshd.UUID: Service exited with abnormal code: 255
    Activity
       Net: 8 in, 36 out (KiB/s)
    Daemons
       com.apple.installer.osmessagetracing
       com.microsoft.office.licensing.helper
       com.teamviewer.service
       com.oracle.java.Helper-Tool
       com.adobe.fpsaud
    Agents
       com.epson.esua.launcher
       com.genieo.completer.ltvbit
       com.apple.PTPCamera.86652.UUID
       2BUA8C4S2C.com.agilebits.onepassword4-helper
       com.facebook.videochat.NAME.updater
       com.epson.Epson_Low_Ink_Reminder.launcher
       com.apple.photostream-agent
       com.genieo.completer.download
       com.genieo.completer.update
       com.teamviewer.desktop
       com.oracle.java.Java-Updater
       com.google.keystone.user.agent
       com.teamviewer.teamviewer
       com.epson.eventmanager.agent
    Bundles
       /Library/Address Book Plug-Ins/SkypeABDialer.bundle
       - com.skype.skypeabdialer
       /Library/Address Book Plug-Ins/SkypeABSMS.bundle
       - com.skype.skypeabsms
       /Library/Application Support/Coupons/uninstall coupon printing software.app
       - null
       /Library/Application Support/EPSON/espdfenc.bundle
       - com.epson.espdfenc
       /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
       - com.microsoft.helpviewer
       /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
       - com.microsoft.autoupdate2
       /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
       - com.microsoft.error_reporting
       /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
       - com.microsoft.netlib.shipassertprocess
       /Library/Application Support/Microsoft/Office Converter Support/MFConverter.bundle
       - com.microsoft.MFConverter
       /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
       - com.microsoft.openxml.chartconverter.app
       /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
       - com.microsoft.openxml.excel.app
       /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
       - com.microsoft.openxml.word.app
       /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
       - com.microsoft.openxml.powerpoint.app
       /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
       - com.microsoft.silverlight.sllauncher
       /Library/Application Support/Nikon/Common/NkUploader
       - com.nikon.Uploader
       /Library/Automator/Add Attachments to Outlook Messages.action
       - com.microsoft.Automator.Add_Attachments_to_Outlook_Messages
       /Library/Automator/Add Content to Word Documents.action
       - com.microsoft.Automator.Add_Content_to_Word_Documents
       /Library/Automator/Add Document Properties Page to Word Documents.action
       - com.microsoft.Automator.Add_Document_Properties_Page_to_Word_Documents
       /Library/Automator/Add New Sheet to Workbooks.action
       - com.microsoft.Automator.Add_New_Sheet_to_Workbooks
       /Library/Automator/Add Table of Contents to Word Documents.action
       - com.microsoft.Automator.Add_Table_of_Contents_to_Word_Documents
       /Library/Automator/Add Watermark to Word Documents.action
       - com.microsoft.Automator.Add_Watermark_to_Word_Documents
       /Library/Automator/Apply Animation to PowerPoint Slide Parts.action
       - com.microsoft.Automator.Apply_Animation_to_PowerPoint_Slide_Parts
       /Library/Automator/Apply Font Format Settings to Word Documents.action
       - com.microsoft.Automator.Apply_Font_Format_Settings_to_Word_Documents
       /Library/Automator/AutoFormat Data in Excel Workbooks.action
       - com.microsoft.Automator.AutoFormat_Data_in_Excel_Workbooks
       /Library/Automator/Bring Word Documents to Front.action
       - com.microsoft.Automator.Bring_Word_Documents_to_Front
       /Library/Automator/Close Excel Workbooks.action
       - com.microsoft.Automator.Close_Excel_Workbooks
       /Library/Automator/Close Outlook Items.action
       - com.microsoft.Automator.Close_Outlook_Items
       /Library/Automator/Close PowerPoint Presentations.action
       - com.microsoft.Automator.Close_PowerPoint_Presentations
       /Library/Automator/Close Word Documents.action
       - com.microsoft.Automator.Close_Word_Documents
       /Library/Automator/Combine Excel Files.action
       - com.microsoft.Automator.Combine_Excel_Files
       /Library/Automator/Combine PowerPoint Presentations.action
       - com.microsoft.Automator.Combine_PowerPoint_Presentations
       /Library/Automator/Combine Word Documents.action
       - com.microsoft.Automator.Combine_Word_Documents
       /Library/Automator/Compare Word Documents.action
       - com.microsoft.Automator.Compare_Word_Documents
       /Library/Automator/Convert Format of Excel Files.action
       - com.microsoft.Automator.Convert_Format_of_Excel_Files
       /Library/Automator/Convert Format of PowerPoint Presentations.action
       - com.microsoft.Automator.Convert_Format_of_PowerPoint_Presentations
       /Library/Automator/Convert PowerPoint Presentations to Movies.action
       - com.microsoft.Automator.Convert_PowerPoint_Presentations_to_Movies
       /Library/Automator/Convert Word Content Object to Text Object.caction
       - com.microsoft.Automator.Convert_Word_Content_Object_to_Text_Object
       /Library/Automator/Copy Excel Workbook Content to the Clipboard.action
       - com.microsoft.Automator.Copy_Excel_Workbook_Content_to_the_Clipboard
       /Library/Automator/Copy PowerPoint Slides to the Clipboard.action
       - com.microsoft.Automator.Copy_PowerPoint_Slides_to_the_Clipboard
       /Library/Automator/Copy Word Document Content to the Clipboard.action
       - com.microsoft.Automator.Copy_Word_Document_Content_to_the_Clipboard
       /Library/Automator/Create List from Data in Workbook.action
       - com.microsoft.Automator.Create_List_from_Data_in_Workbook
       /Library/Automator/Create New Excel Workbook.action
       - com.microsoft.Automator.Create_New_Excel_Workbook
       /Library/Automator/Create New Outlook Mail Message.action
       - com.microsoft.Automator.Create_New_Outlook_Mail_Message
       /Library/Automator/Create New PowerPoint Presentation.action
       - com.microsoft.Automator.Create_New_PowerPoint_Presentation
       /Library/Automator/Create New Word Document.action
       - com.microsoft.Automator.Create_New_Word_Document
       /Library/Automator/Create PowerPoint Picture Slide Shows.action
       - com.microsoft.Automator.Create_PowerPoint_Picture_Slide_Shows
       /Library/Automator/Create Table from Data in Workbook.action
       - null
       /Library/Automator/Delete Outlook Items.action
       - com.microsoft.Automator.Delete_Outlook_Items
       /Library/Automator/Find and Replace Text in Word Documents.action
       - com.microsoft.Automator.Find_and_Replace_Text_in_Word_Documents
       /Library/Automator/Flag Word Documents for Follow Up.action
       - com.microsoft.Automator.Flag_Word_Documents_for_Follow_Up
       /Library/Automator/Forward Outlook Mail Messages.action
       - com.microsoft.Automator.Forward_Outlook_Mail_Messages
       /Library/Automator/Get Content from Word Documents.action
       - com.microsoft.Automator.Get_Content_from_Word_Documents
       /Library/Automator/Get Images from PowerPoint Slides.action
       - com.microsoft.Automator.Get_Images_from_PowerPoint_Slides
       /Library/Automator/Get Images from Word Documents.action
       - com.microsoft.Automator.Get_Images_from_Word_Documents
       /Library/Automator/Get Parent Presentations of Slides.action
       - com.microsoft.Automator.Get_Parent_Presentations_of_Slides
       /Library/Automator/Get Parent Workbooks.action
       - com.microsoft.Automator.Get_Parent_Workbooks
       /Library/Automator/Get Selected Content from Excel Workbooks.action
       - com.microsoft.Automator.Get_Selected_Content_from_Excel_Workbooks
       /Library/Automator/Get Selected Content from Word Documents.action
       - com.microsoft.Automator.Get_Selected_Content_from_Word_Documents
       /Library/Automator/Get Selected Outlook Items.action
       - com.microsoft.Automator.Get_Selected_Outlook_Items
       /Library/Automator/Get Selected Text from Outlook Items.action
       - com.microsoft.Automator.Get_Selected_Text_from_Outlook_Items
       /Library/Automator/Get Text From Outlook Mail Messages.action
       - com.microsoft.Automator.Get_Text_from_Outlook_Mail_Messages
       /Library/Automator/Get Text from Word Documents.action
       - com.microsoft.Automator.Get_Text_from_Word_Documents
       /Library/Automator/Import Text Files to Excel Workbook.action
       - com.microsoft.Automator.Import_Text_Files_to_Excel_Workbook
       /Library/Automator/Insert Captions into Word Documents.action
       - com.microsoft.Automator.Insert_Captions_into_Word_Documents
       /Library/Automator/Insert Content into Outlook Mail Messages.action
       - com.microsoft.Automator.Insert_Content_into_Outlook_Mail_Messages
       /Library/Automator/Insert Content into Word Documents.action
       - com.microsoft.Automator.Insert_Content_into_Word_Documents
       /Library/Automator/Insert New PowerPoint Slides.action
       - com.microsoft.Automator.Insert_New_PowerPoint_Slides
       /Library/Automator/Mark Outlook Mail Message as a To Do Item.action
       - com.microsoft.Automator.Mark_Outlook_Mail_Message_as_a_To_Do_Item
       /Library/Automator/Office.definition
       - com.microsoft.Automator.OfficeDefinition
       /Library/Automator/Open Excel Workbooks.action
       - com.microsoft.Automator.Open_Excel_Workbooks
       /Library/Automator/Open Outlook Items.action
       - com.microsoft.Automator.Open_Outlook_Items
       /Library/Automator/Open PowerPoint Presentations.action
       - com.microsoft.Automator.Open_PowerPoint_Presentations
       /Library/Automator/Open Word Documents.action
       - com.microsoft.Automator.Open_Word_Documents
       /Library/Automator/Paste Clipboard Content into Excel Workbooks.action
       - com.microsoft.Automator.Paste_Clipboard_Content_into_Excel_Workbooks
       /Library/Automator/Paste Clipboard Content into Outlook Items.action
       - com.microsoft.Automator.Paste_Clipboard_Content_into_Outlook_Items
       /Library/Automator/Paste Clipboard Content into PowerPoint Presentations.action
       - com.microsoft.Automator.Paste_Clipboard_Content_into_PowerPoint_Presentations
       /Library/Automator/Paste Clipboard Content into Word Documents.action
       - com.microsoft.Automator.Paste_Clipboard_Content_into_Word_Documents
       /Library/Automator/Play PowerPoint Slide Shows.action
       - com.microsoft.Automator.Play_PowerPoint_Slideshows
       /Library/Automator/Print Excel Workbooks.action
       - com.microsoft.Automator.Print_Excel_Workbooks
       /Library/Automator/Print Outlook Messages.action
       - com.microsoft.Automator.Print_Outlook_Messages
       /Library/Automator/Print PowerPoint Presentations.action
       - com.microsoft.Automator.Print_PowerPoint_Presentations
       /Library/Automator/Print Word Documents.action
       - com.microsoft.Automator.Print_Word_Documents
       /Library/Automator/Protect Word Documents.action
       - com.microsoft.Automator.Protect_Word_Documents
       /Library/Automator/Quit Excel.action
       - com.microsoft.Automator.Quit_Excel
       /Library/Automator/Quit Outlook.action
       - com.microsoft.Automator.Quit_Outlook
       /Library/Automator/Quit PowerPoint.action
       - com.microsoft.Automator.Quit_PowerPoint
       /Library/Automator/Quit Word.action
       - com.microsoft.Automator.Quit_Word
       /Library/Automator/Reply to Outlook Mail Messages.action
       - com.microsoft.Automator.Reply_to_Outlook_Mail_Messages
       /Library/Automator/Save Excel Workbooks.action
       - com.microsoft.Automator.Save_Excel_Workbooks
       /Library/Automator/Save Outlook Draft Messages.action
       - com.microsoft.Automator.Save_Outlook_Draft_Messages
       /Library/Automator/Save Outlook Items as Files.action
       - com.microsoft.Automator.Save_Outlook_Items_as_Files
       /Library/Automator/Save Outlook Messages as Files.action
       - null
       /Library/Automator/Save PowerPoint Presentations.action
       - com.microsoft.Automator.Save_PowerPoint_Presentations
       /Library/Automator/Save Word Documents.action
       - com.microsoft.Automator.Save_Word_Documents
       /Library/Automator/Search Outlook Items.action
       - com.microsoft.Automator.Search_Outlook_Items
       /Library/Automator/Select Cells in Excel Workbooks.action
       - com.microsoft.Automator.Select_Cells_in_Excel_Workbooks
       /Library/Automator/Select PowerPoint Slides.action
       - com.microsoft.Automator.Select_PowerPoint_Slides
       /Library/Automator/Send Outgoing Outlook Mail Messages.action
       - com.microsoft.Automator.Send_Outgoing_Outlook_Mail_Messages
       /Library/Automator/Set Category of Outlook Items.action
       - com.microsoft.Automator.Set_Category_of_Outlook_Items
       /Library/Automator/Set Document Settings.action
       - com.microsoft.Automator.Set_Document_Settings
       /Library/Automator/Set Excel Workbook Properties.action
       - com.microsoft.Automator.Set_Excel_Workbook_Properties
       /Library/Automator/Set Footer for PowerPoint Slides.action
       - com.microsoft.Automator.Set_Footer_for_PowerPoint_Slides
       /Library/Automator/Set Outlook Contact Properties.action
       - com.microsoft.Automator.Set_Outlook_Contact_Properties
       /Library/Automator/Set PowerPoint Slide Layout.action
       - com.microsoft.Automator.Set_PowerPoint_Slide_Layout
       /Library/Automator/Set PowerPoint Slide Transition Settings.action
       - com.microsoft.Automator.Set_PowerPoint_Slide_Transition_Settings
       /Library/Automator/Set Security Options for Word Documents.action
       - com.microsoft.Automator.Set_Security_Options_for_Word_Documents
       /Library/Automator/Set Text Case in Word Documents.action
       - com.microsoft.Automator.Set_Text_Case_in_Word_Documents
       /Library/Automator/Set Word Document Properties.action
       - com.microsoft.Automator.Set_Word_Document_Properties
       /Library/Automator/Sort Data in Excel Workbooks.action
       - com.microsoft.Automator.Sort_Data_in_Excel_Workbooks
       /Library/DropboxHelperTools/Dropbox_u501/DropboxBundle.bundle
       - com.evenflow.dropbox.dropboxbundle
       /Library/DropboxHelperTools/Dropbox_u501/mach_inject_bundle_stub.bundle
       - com.apple.carbonbundletemplate
       /Library/Frameworks/EpsonInformationService.framework
       - com.epson.EpsonInformationService
       /Library/Frameworks/HPDeviceModel.framework
       - com.hp.dmf
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/ClientUI.fr amework
       - com.hp.dmf.ClientUI
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Configure.f ramework
       - com.hp.dmf.Configure
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork
       - com.hp.dmf.Core
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/CFXmlParser.plugin
       - com.hp.dmf.plugins.CFXmlParser
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/LegacySecureData.plugin
       - com.hp.dmf.plugins.LegacySecureData
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/SecureData.plugin
       - com.hp.dmf.plugins.SecureData
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/libXmlParser.plugin
       - com.hp.dmf.plugins.libXmlParser
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/DataStore.f ramework
       - com.hp.dmf.DataStore
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/DeviceID.fr amework
       - com.hp.dmf.DeviceID
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/HDT.framewo rk
       - com.hp.dmf.HDT
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/PML.framewo rk
       - com.hp.dmf.PML
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework
       - com.hp.dmf.Status
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceAlerts.plugin
       - com.hp.dmf.plugins.DeviceAlerts
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceStatus.plugin
       - com.hp.dmf.plugins.DeviceStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceTrays.plugin
       - com.hp.dmf.plugins.DeviceTrays
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/EstimatedPagesStatus.plugin
       - com.hp.dmf.plugins.EstimatedPagesStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/JobsStatus.plugin
       - com.hp.dmf.plugins.JobsStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/SuppliesStatus.plugin
       - com.hp.dmf.plugins.SuppliesStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/XMLServices .framework
       - com.hp.dmf.XMLServices
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Resources/PlugIns/dmfs tatusclient.bundle
       - com.hp.dmfstatusclient
       /Library/Frameworks/HPPml.framework
       - com.hp.hpio.HPPmlFramework
       /Library/Frameworks/HPServicesInterface.framework
       - com.hp.hpio.HPServicesInterfaceFramework
       /Library/Frameworks/HPServicesInterface.framework/Versions/B/Resources/CocoaWra pper.bundle
       - com.hp.hpio.CocoaWrapper
       /Library/Frameworks/HPSmartPrint.framework
       - com.hp.print.HPSmartPrint
       /Library/Frameworks/HPSmartPrint.framework/PlugIns/SPSettingValueTransformer.pl ugin
       - com.hp.print.HPSmartPrint.SPSettingValueTransformer
       /Library/Frameworks/TSLicense.framework
       - net.telestream.license
       /Library/Frameworks/TSLicense.framework/Versions/A/Resources/EWSMac-GC.framewor k
       - com.eSellerate.EWSMac67108872
       /Library/Image Capture/TWAIN Data Sources/EPSON Stylus CX4100_CX4200.ds/Contents/PlugIns/EPSON Scan.bundle
       - com.epson.scan.dscl
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/DS Control.bundle
       - com.epson.scan.dscl
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/DTR.bundle
       - com.epson.scan.dtr
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/DTR2.bundle
       - com.epson.scan.esdtr2
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/Device Control.bundle
       - com.epson.scan.devcl
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/Device Interface.bundle
       - com.epson.scan.devif
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/EPSON USB Scanner.bundle
       - com.epson.scan.usb
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/ESISPD.bundle
       - com.epson.scan.esispd
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/EsDDC.bundle
       - com.epson.scan.DDC
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/EsDDE.bundle
       - com.epson.scan.EsDDE
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/FIT.bundle
       - com.epson.scan.fit
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/File Format/JPEG.bundle
       - com.epson.scan.epjpg
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/File Format/Multiple TIFF.bundle
       - com.epson.scan.epmtif
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/File Format/PDF.bundle
       - com.epson.scan.eppdf
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/File Format/PDFLib.bundle
       - com.epson.print.PDFLib
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/File Format/PICT.bundle
       - com.epson.scan.eppict
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/File Format/TIFF.bundle
       - com.epson.scan.eptif
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/IZENSTRMAPI.bundle
       - com.epson.IZENSTRMAPI
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/Image Control.bundle
       - com.epson.scan.imgctl
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/Image Filter.bundle
       - com.epson.scan.imgflt
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/Multi Page Saving.bundle
       - com.epson.scan.esmps
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/Scan Control.bundle
       - com.epson.scan.scncl
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/TWAIN Protocol Manager.bundle
       - com.epson.scan.twpmg
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/UI Twain Bridge.bundle
       - com.epson.scan.utwb
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/PlugIns/UI.bundle
       - com.epson.scan.ui
       /Library/Image Capture/TWAIN Data Sources/EPSON WF-3620_3640 Series.ds/Contents/Resources/Help/Help
       - com.epson.scan.help
       /Library/Internet Plug-Ins/CouponPrinter-FireFox_v2.plugin
       - com.coupons.plugin.mozilla-plugin
       /Library/Internet Plug-Ins/CouponPrinter-Safari.webplugin
       - com.coupons.plugin.safari-plugin
       /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
       - net.telestream.wmv.plugin
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
       - com.oracle.java.JavaAppletPlugin
       /Library/Internet Plug-Ins/Musicnotes.plugin
       - com.musicnotes.musicnotesplugin
       /Library/Internet Plug-Ins/Scorch.plugin
       - com.sibelius.scorch
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
       - com.microsoft.sharepoint.browserplugin
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
       - com.microsoft.sharepoint.webkitplugin
       /Library/Internet Plug-Ins/Silverlight.plugin
       - com.microsoft.SilverlightPlugin
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/PreferencePanes/Flip4Mac WMV.prefPane
       - net.telestream.wmv.prefpane
       /Library/Printers/Canon/BJPrinter/Frameworks/BJCommand2.framework
       - jp.co.canon.bsd.bjcommand2
       /Library/Printers/Canon/BJPrinter/Frameworks/BJEssential2.framework
       - jp.co.canon.bsd.bjessential2
       /Library/Printers/Canon/BJPrinter/Frameworks/BJExtDDI.framework
       - jp.co.canon.bj.bjextddi
       /Library/Printers/Canon/BJPrinter/Frameworks/BJPDELocalizedString2.framework
       - jp.co.canon.bj.bjpdelocalizedstring2
       /Library/Printers/Canon/BJPrinter/Frameworks/BJPrinterUtility2.framework
       - jp.co.canon.bj.print.BJPrinterUtility2
       /Library/Printers/Canon/BJPrinter/Frameworks/BJStatus2.framework
       - jp.co.canon.bj.print.bjstatus2.a
       /Library/Printers/Canon/BJPrinter/Plugins/BJNP/CIJNetworkIOM.plugin
       - jp.co.Canon.ij.print.iom.CIJNP
       /Library/Printers/Canon/BJPrinter/Plugins/BJNP/CIJNetworkPBM.plugin
       - jp.co.Canon.ij.print.pbm.CIJNP
       /Library/Printers/Canon/BJPrinter/Plugins/BJNP/canonijnetwork.bundle
       - jp.co.canon.ij.print.backend.canonijnetwork
       /Library/Printers/Canon/BJPrinter/Plugins/BJUSB/BJUSBIOM.plugin
       - jp.co.canon.bj.print.bjusbiom
       /Library/Printers/Canon/BJPrinter/Plugins/BJUSB/BJUSBPBM.plugin
       - jp.co.canon.bj.print.pbm.USB
       /Library/Printers/Canon/BJPrinter/Plugins/BJUSB/CIJUSBClassDriver.plugin
       - jp.co.canon.ij.print.CIJUSBClassDriver
       /Library/Printers/Canon/BJPrinter/Plugins/BJUSB/CIJUSBClassDriver2.plugin
       - jp.co.canon.ij.print.CIJUSBClassDriver2
       /Library/Printers/Canon/BJPrinter/Plugins/CIJUtility/CIJUtilityControl.bundle
       - jp.co.canon.ij.print.utility.control
       /Library/Printers/Canon/BJPrinter/Plugins/IJBluetooth/IJBluetoothIOM.plugin
       - jp.co.canon.ij.print.ijbluetoothiom
       /Library/Printers/Canon/BJPrinter/Utilities/BJPrinterUtility2.app
       - jp.co.canon.bj.print.app.bjprinterutility2
       /Library/Printers/Canon/BJPrinter/Utilities/CanonIJPrinterUtility.app
       - jp.co.canon.bj.print.app.canonijprinterutility
       /Library/Printers/EPSON/InkjetPrinter2/AutoSetupTool/EPRemoteAutoSetupTool.app
       - com.epson.ijprinter.EPRemoteAutoSetupTool
       /Library/Printers/EPSON/InkjetPrinter2/Backend/epsonremote.app
       - com.epson.ijprinter.app.epsonremote
       /Library/Printers/EPSON/InkjetPrinter2/CmdData/EP1304AA1.cmd
       - com.epson.ijprinter.cmd.EP1304AA1
       /Library/Printers/EPSON/InkjetPrinter2/Filter/eprastertopng.app
       - com.epson.ijprinter.eprastertopng
       /Library/Printers/EPSON/InkjetPrinter2/Libraries/EPRemoteIOService.framework
       - com.epson.ijprinter.framework.EPRemoteIOService
       /Library/Printers/EPSON/InkjetPrinter2/Machine/EP13R0300A.data
       - com.epson.ijprinter.data.EP13R0300A
       /Library/Printers/EPSON/InkjetPrinter2/Machine/EP13R0300W.data
       - com.epson.ijprinter.data.EP13R0300W
       /Library/Printers/EPSON/InkjetPrinter2/Machine/EP13R0360A.data
       - com.epson.ijprinter.data.EP13R0360A
       /Library/Printers/EPSON/InkjetPrinter2/Machine/EP13R0360W.data
       - com.epson.ijprinter.data.EP13R0360W
       /Library/Printers/EPSON/InkjetPrinter2/PrinterIcon/Printer_R001.pib
       - com.epson.ijprinter.pib.Printer_R001
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/FaxSupport2/WF-3620 Series.bundle
       - com.epson.ijprinter.bundle.WF-3620
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/FaxSupport2/WF-3640 Series.bundle
       - com.epson.ijprinter.bundle.WF-3640
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/FaxSupport2/WF-7610 Series.bundle
       - com.epson.ijprinter.bundle.WF-7610
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/FaxSupport2/WF-7620 Series.bundle
       - com.epson.ijprinter.bundle.WF-7620
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/LIRSupport/WF-3620 Series.lir
       - com.epson.ijprinter.lir.WF-3620
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/LIRSupport/WF-3640 Series.lir
       - com.epson.ijprinter.lir.WF-3640
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/LIRSupport/WF-7110 Series.lir
       - com.epson.ijprinter.lir.WF-7110
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/LIRSupport/WF-7610 Series.lir
       - com.epson.ijprinter.lir.WF-7610
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/LIRSupport/WF-7620 Series.lir
       - com.epson.ijprinter.lir.WF-7620
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/Remote Print 300.data
       - com.epson.ijprinter.data.Remote
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/Remote Print.data
       - com.epson.ijprinter.data.Remote
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/WF-3620 Series.data
       - com.epson.ijprinter.data.WF-3620
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/WF-3640 Series.data
       - com.epson.ijprinter.data.WF-3640
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/WF-7110 Series.data
       - com.epson.ijprinter.data.WF-7110
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/WF-7610 Series.data
       - com.epson.ijprinter.data.WF-7610
       /Library/Printers/EPSON/InkjetPrinter2/SupportPrinters/WF-7620 Series.data
       - com.epson.ijprinter.data.WF-7620
       /Library/Printers/EPSON/InkjetPrinter2/Utility/RemotePrint/Epson Remote Print Utility.app
       - com.epson.ijprinter.RemotePrintUtility
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UT1305Core.bundle
       - com.epson.ijprinter.bundle.UT1305Core
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UT1306Core.bundle
       - com.epson.ijprinter.bundle.UT1306Core
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UT1307Core.bundle
       - com.epson.ijprinter.bundle.UT1307Core
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-3620 Series_A.bundle
       - com.epson.ijprinter.bundle.UTWF-3620
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-3620 Series_W.bundle
       - com.epson.ijprinter.bundle.UTWF-3620
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-3640 Series_A.bundle
       - com.epson.ijprinter.bundle.UTWF-3640
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-3640 Series_W.bundle
       - com.epson.ijprinter.bundle.UTWF-3640
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-7110 Series_A.bundle
       - com.epson.ijprinter.bundle.UTWF-7110
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-7110 Series_W.bundle
       - com.epson.ijprinter.bundle.UTWF-7110
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-7610 Series_A.bundle
       - com.epson.ijprinter.bundle.UTWF-7610
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-7610 Series_W.bundle
       - com.epson.ijprinter.bundle.UTWF-7610
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-7620 Series_A.bundle
       - com.epson.ijprinter.bundle.UTWF-7620
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Bundles/UTWF-7620 Series_W.bundle
       - com.epson.ijprinter.bundle.UTWF-7620
       /Library/Receipts/AirPortUtility.pkg
       - com.apple.pkg.AirPortUtility
       /Library/Receipts/AirPortUtility_Leopard.pkg
       - com.apple.pkg.AirPortUtility_Leopard
       /Library/Receipts/AppleIntermediateCodec.pkg
       - com.apple.pkg.AppleIntermediateCodec
       /Library/Receipts/AppleMobileDeviceSupport.pkg
       - com.apple.pkg.AppleMobileDeviceSupport
       /Library/Receipts/CPU_AHT.pkg
       - hwbe.pkg.018-3139
       /Library/Receipts/CPU_Manual.pkg
       - hwbe.pkg.018-3331
       /Library/Receipts/CPU_RegionalBoot.pkg
       - hwbe.pkg.018-3107
       /Library/Receipts/CompatibilityUpdateforQT755.pkg
       - com.apple.pkg.CompatibilityUpdateforQT755
       /Library/Receipts/CoreFP.pkg
       - com.apple.pkg.CoreFP
       /Library/Receipts/FacebookExporteriPhoto.pkg
       - com.facebook.exporteriphoto
       /Library/Receipts/Flip4Mac QuickTime Components.pkg
       - null
       /Library/Receipts/Flip4Mac Web Plugins.pkg
       - null
       /Library/Receipts/FrontRowUpdate2.1.3.pkg
       - com.apple.pkg.FrontRowUpdate2.1.3
       /Library/Receipts/FrontRowUpdate2.1.6.pkg
       - com.apple.pkg.FrontRowUpdate2.1.6
       /Library/Receipts/FrontRowUpdate2.1.7.pkg
       - com.apple.pkg.FrontRowUpdate2.1.7
       /Library/Receipts/GarageBand.pkg
       - com.apple.pkg.GarageBand
       /Library/Receipts/GarageBandExtraContent.pkg
       - com.apple.pkg.GarageBandExtraContent
       /Library/Receipts/GarageBandFactoryContent.pkg
       - com.apple.pkg.GarageBandFactoryContent
       /Library/Receipts/GarageBand_412.pkg
       - com.apple.pkg.GarageBand_412
       /Library/Receipts/GarageBand_Instruments.pkg
       - com.apple.pkg.GarageBand_Instruments
       /Library/Receipts/GarageBand_Loops.pkg
       - com.apple.pkg.GarageBand_Loops
       /Library/Receipts/GarageBand_MagicContent.pkg
       - com.apple.pkg.GarageBand_MagicContent
       /Library/Receipts/Install Musicnotes.pkg
       - com.musicnotes.Viewer.Install
       /Library/Receipts/MBP41_15.pkg
       - com.apple.pkg.MBP41_15
       /Library/Receipts/MacBookProSMCUpdate.pkg
       - com.apple.pkg.MacBookProSMCUpdate
       /Library/Receipts/QuickTime745_Leopard.pkg
       - com.apple.pkg.QuickTime745_Leopard
       /Library/Receipts/QuickTime755_Leopard.pkg
       - com.apple.pkg.QuickTime755_Leopard
       /Library/Receipts/QuickTime75_Leopard.pkg
       - com.apple.pkg.QuickTime75_Leopard
       /Library/Receipts/QuickTime762_Leopard.pkg
       - com.apple.pkg.QuickTime762_Leopard
       /Library/Receipts/QuickTime764_Leopard.pkg
       - com.apple.pkg.QuickTime764_Leopard
       /Library/Receipts/QuickTime76_Leopard.pkg
       - com.apple.pkg.QuickTime76_Leopard
       /Library/Receipts/RAWCamera.pkg
       - com.apple.pkg.RAWCamera
       /Library/Receipts/RAWCameraUpdate.pkg
       - com.apple.pkg.RAWCameraUpdate
       /Library/Receipts/RemoteDesktopClient.pkg
       - com.apple.pkg.RemoteDesktopClient
       /Library/Receipts/Silverlight_EULA.pkg
       - com.microsoft.silverlight
       /Library/Receipts/WelcomeToLeopard.pkg
       - hwbe.pkg.018-3119
       /Library/Receipts/iDVD.pkg
       - com.apple.pkg.iDVD
       /Library/Receipts/iDVDExtraContent.pkg
       - com.apple.pkg.iDVDExtraContent
       /Library/Receipts/iDVDThemes.pkg
       - com.apple.pkg.iDVDThemes
       /Library/Receipts/iDVD_702.pkg
       - com.apple.pkg.iDVD_702
       /Library/Receipts/iDVD_703.pkg
       - com.apple.pkg.iDVD_703
       /Library/Receipts/iDVD_704.pkg
       - com.apple.pkg.iDVD_704
       /Library/Receipts/iLifeCookie.pkg
       - com.apple.pkg.iLifeCookie
       /Library/Receipts/iLifeMediaBrowser.pkg
       - com.apple.pkg.iLifeMediaBrowser
       /Library/Receipts/iLifeMediaBrowser_v2.pkg
       - com.apple.pkg.iLifeMediaBrowser_v2
       /Library/Receipts/iLifeSoundEffects_Loops.pkg
       - com.apple.pkg.iLifeSoundEffects_Loops
       /Library/Receipts/iMovie.pkg
       - com.apple.pkg.iMovie
       /Library/Receipts/iMovie_714.pkg
       - com.apple.pkg.iMovie_714
       /Library/Receipts/iPhoto.pkg
       - com.apple.pkg.iPhoto
       /Library/Receipts/iPhotoContent.pkg
       - com.apple.pkg.iPhotoContent
       /Library/Receipts/iPhoto_713.pkg
       - com.apple.pkg.iPhoto_713
       /Library/Receipts/iPhoto_714.pkg
       - com.apple.pkg.iPhoto_714
       /Library/Receipts/iPhoto_715.pkg
       - com.apple.pkg.iPhoto_715
       /Library/Receipts/iTunesAccess.pkg
       - com.apple.pkg.iTunesAccess
       /Library/Receipts/iTunesX.pkg
       - com.apple.pkg.iTunesX
       /Library/Receipts/iWeb.pkg
       - com.apple.pkg.iWeb
       /Library/Receipts/iWeb_204.pkg
       - com.apple.pkg.iWeb_204
       /Library/Receipts/smilebox.pkg
       - com.smilebox.client.pkg
       /Library/Spotlight/Microsoft Entourage.mdimporter
       - com.microsoft.entourageMDImporter
       /Users/USER/Documents/NellieFoundGrass-DVD.dvdproj
       - null
       /Users/USER/Downloads/FlashbackChecker.app
       - net.notoptimal.FlashbackChecker
       /Users/USER/Downloads/Install Spotify 2.app
       - com.spotify.danstaller
       /Users/USER/Downloads/Install Spotify 3.app
       - com.spotify.danstaller
       /Users/USER/Downloads/Install Spotify.app
       - com.spotify.danstaller
       /Users/USER/Downloads/Senuti.app
       - com.fadingred.Senuti
       /Users/USER/Library/Application Support/Barnes & Noble/Helper Apps/BNProtocolRouter.app
       - com.barnes.noble.BNProtocolRouter
       /Users/USER/Library/Application Support/Facebook/video/3.1.0.522/FacebookVideoCalling.app
       - com.Skype.FacebookVideoCalling
       /Users/USER/Library/Application Support/Facebook/video/3.1.0.522/FacebookVideoCalling.webplugin
       - com.skype.FacebookVideoCalling
       /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_bepbmhgboaologfdajaanbcjmnhjmhfn/Default bepbmhgboaologfdajaanbcjmnhjmhfn.app
       - com.google.Chrome.app.Default-bepbmhgboaologfdajaanbcjmnhjmhfn-internal
       /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_dlmebkoiahbppacaicbgncnjhbpdfkcc/Default dlmebkoiahbppacaicbgncnjhbpdfkcc.app
       - com.google.Chrome.app.Default-dlmebkoiahbppacaicbgncnjhbpdfkcc-internal
       /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_lfpacabphcagfehdgnigmfnbjdampbaa/Default lfpacabphcagfehdgnigmfnbjdampbaa.app
       - com.google.Chrome.app.Default-lfpacabphcagfehdgnigmfnbjdampbaa-internal
       /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_oppjbaijagamhfnfaegamdfkjgaccbkk/Default oppjbaijagamhfnfaegamdfkjgaccbkk.app
       - com.google.Chrome.app.Default-oppjbaijagamhfnfaegamdfkjgaccbkk-internal
       /Users/USER/Library/Application Support/Google/Chrome/PepperFlash/14.0.0.145/PepperFlashPlayer.plugin
       - com.macromedia.PepperFlashPlayer.pepper
       /Users/USER/Library/Application Support/Helper/Wondershare Helper Compact.app
       - com.wondershare.helper_compact
       /Users/USER/Library/Application Support/Helper/iSkysoft Helper Compact.app
       - com.iskysoft.helper_compact
       /Users/USER/Library/Application Support/RealNetworks/RealPlayer Downloader Agent.app
       - com.realnetworks.realplayerdownloaderagent
       /Users/USER/Library/Application Support/Wondershare/Video_Converter_Ultimate/IU/57020/Apps/ADManager.app
       - com.wondershare.ADManager
       /Users/USER/Library/Application Support/com.genieoinnovation.Installer/Completer.app
       - com.somoto.InstallerS
       /Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle
       - com.google.Keystone
       /Users/USER/Library/Mobile Documents/com~apple~shoebox/UbiquitousCards/qmZf17wxOnvIwykW1CsFqhxS7gw=.pkpass
       - null
       /Users/USER/Library/Printers/EPSON WF-3640 Series 2.app
       - com.apple.print.PrinterProxy
       /Users/USER/Library/Printers/EPSON WF-3640 Series.app
       - com.apple.print.PrinterProxy
    dylibs
       /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
       /Applications/Microsoft Office 2011/Office/OPF.framework/Versions/14/Resources/OPF_Common.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/Fm20.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/MicrosoftOLE2TypesLib.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RefEdit.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RichEdit.dylib
       /Library/Frameworks/HPServicesInterface.framework/Versions/B/Libraries/libHPIOn etsnmp.5.dylib
       /Users/USER/Library/Application Support/Digiarty/MacX YouTube Downloader/onlinevideo.dylib
       /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.6.703/_platform_specific/mac_x64/libwidev inecdm.dylib
       /usr/lib/libgutenprint.2.0.3.dylib
    App extensions
       com.getdropbox.dropbox.garcon
    Apps
       /Applications/Dropbox.app
    Contents of /Library/LaunchAgents/com.epson.Epson_Low_Ink_Reminder.launcher.plist (checksum 891421492)
       <?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>ProgramArguments</key>
        <array>
        <string>/Applications/Epson Software/Epson Low Ink Reminder.app/Contents/EpsonLowInkReminderAgent.app/Contents/MacOS/EpsonLowInkRe minderAgent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.epson.Epson_Low_Ink_Reminder.launcher</string>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.epson.esua.launcher.plist (checksum 1726226152)
       <?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>StartInterval</key>
        <integer>3600</integer>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Epson Software/EPSON Software Updater.app/Contents/EPSON Software Updater Agent.app/Contents/MacOS/EPSON Software Updater Agent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.epson.esua.launcher</string>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.epson.eventmanager.agent.plist (checksum 1862971771)
       <?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>/Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.epson.eventmanager.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app/Contents/MacOS/EEventManager</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist (checksum 2098554753)
       <?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>18</integer>
        <key>Minute</key>
        <integer>20</integer>
        <key>Weekday</key>
        <integer>3</integer>
        </dict>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.teamviewer.teamviewer.plist (checksum 3821885867)
       <?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>Debug</key>
        <true/>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.teamviewer.teamviewer</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/MacOS/TeamViewer</string>
        <string>-RunAsAgent</string>
        <string>YES</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/MacOS</string>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.teamviewer.teamviewer_desktop.plist (checksum 3679356347)
       <?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>Debug</key>
        <true/>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.teamviewer.desktop</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>LoginWindow</string>
        <string>Aqua</string>
        </array>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources/TeamViewer_Desktop</string>
        <string>-RunAsAgent</string>
        <string>YES</string>
        <string>-Module</string>
        <string>Full</string>
        </array>
       ...and 6 more line(s)
    Contents of /Library/LaunchDaemons/com.teamviewer.teamviewer_service.plist (checksum 1438920954)
       <?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>Debug</key>
        <true/>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.teamviewer.service</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources/TeamViewer_Service</string>
        <string>-Module</string>
        <string>Full</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.facebook.videochat.NAME.plist (checksum 3705965674)
       <?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.facebook.videochat.NAME.updater</string>
         <key>ProgramArguments</key>
         <array>
           <string>/usr/bin/java</string>
           <string>-cp</string>
           <string>/Users/USER/Library/Application Support/Facebook/video/3.1.0.522/FacebookUpdate.jar</string>
           <string>FacebookUpdate</string>
           <string>com.facebook.peep</string>
           <string>3.1.0.522</string>
         </array>
         <key>RunAtLoad</key>
         <true/>
         <key>StartInterval</key>
         <integer>10800</integer>
         <key>StandardErrorPath</key>
         <string>/dev/null</string>
         <key>StandardOutPath</key>
         <string>/dev/null</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.genieo.completer.download.plist (checksum 4220752091)
       <?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.genieo.completer.download</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/com.genieoinnovation.Installer/Completer.app/Contents/MacOS/InstallerS< /string>
        <string>-trigger</string>
        <string>download</string>
        <string>-isDev</string>
        <string>0</string>
        <string>-installVersion</string>
        <string>16974</string>
        <string>-firstAppId</string>
        <string>278470014</string>
        </array>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Downloads</string>
        </array>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.genieo.completer.ltvbit.plist (checksum 118536198)
       <?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.genieo.completer.ltvbit</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/com.genieoinnovation.Installer/Completer.app/Contents/MacOS/InstallerS< /string>
        <string>-trigger</string>
        <string>ltvbit</string>
        <string>-isDev</string>
        <string>0</string>
        <string>-installVersion</string>
        <string>16974</string>
        <string>-firstAppId</string>
        <string&

  • Need help with error -50!!!!!!! getting it since last week!

    i keep having an error showing up when im trying to connect to the itunes store from my computer.
    the error is
    We could not complete your iTunes Store request. An unknown error occured (-50).
    There was an error in the iTunes Store.
    Please try again later.
    i have been getting this message since last week.
    does it have something to do with day lights saving time?
    Message was edited by: mrznehabieber14

    Hi Try this, i was having the same problem and doing the following worked for me" i cant take the credit i found this in another forum posted by MIKEFILA, but i know what you going thru was so stressed.
    I just read someone's suggestion to access Parental Controls under Preferences. Choose to disable the Store and then iTunes U. Update and then voila! The iTunes U appears; even though you just "disabled" it. Next go back into Preferences/Parental Controls and "re-enable" the Store... Good Luck!

  • Can you call a built-in labview VI using teststand directly? For "File last modified"...

    I am trying to use Teststand to retrieve the "last modified" timestamp property for the sequence file that is running. The purpose is to determine whether a modification has been made since the last time a sequence with the same file name was run. The "saved count" property is not a viable option since mulitple people may be working on the same sequence, and in theory two people could have started with the same sequence file, made a change, and then saved (making the saved count property the same even though they are now different sequences).
    So, unless someone knows of an easy way to do get this info (file last modified information) within Teststand, here's my question:
    LabVIEW has a built-in VI that provides this information (Programming Pallete->File IO->Advanced File Functions->File/Directory Info). This gives a "last mod" output which is exactly what I need. However, this is in Labview, not teststand where I prefer to call it and retrieve the information. I could easily just place this built-in VI into a new blank VI, and then call that with TestStand, but that seems very redundant. The built-in version is exactly what I need.
    Is there a way to call this VI directly from TestStand without having to put it into a blank VI and save it as a seperate file? I can't seem to locate it within any of the labview directories or libraries, but maybe I'm not searching for the right name. Is there an easy way to find a VI on the harddrive that is on one of the buit-in labview palletes ?
    This seems like such a simple thing but it's giving me a lot of grief!
    Thanks!

    That is one of the built-in functions and not a stand-alone VI and the best way to call it is to create a VI with it on the block diagram.

  • Redo Log Last modified date

    Hi All,
    Couple of day's back we have set Hot back up mode for 11g database server from cold back up,
    after this reado log's last modified date is not getting updated and redolog last modified date is get's updated only when we restart the database,
    There is no error message in the alert log and data base running normally without any issues,
    can you please advise me why redo logs LastModified date is not getting updated.
    Thanks
    sankar

    user12994238 wrote:
    Hi All,
    Couple of day's back we have set Hot back up mode for 11g database server from cold back up,
    after this reado log's last modified date is not getting updated and redolog last modified date is get's updated only when we restart the database,
    There is no error message in the alert log and data base running normally without any issues,
    can you please advise me why redo logs LastModified date is not getting updated.
    Thanks
    sankarcould it be that the timestamp is not updated until such time as the file is closed? That would be easy enough to observe/test.

  • Storing the last modified date for files in a HashMap

    This method gets a list of all the .java files in the source subdirectory, gets the last modified date for them and stores the file name and last modified date in a HashMap.
    import java.util.HashMap;
    import java.io.FilenameFilter;
    import java.io.File;
    import java.util.ArrayList;
    public class myClass
         public static void main(String[] args)
              HashMap result = getLastModified();
         static FilenameFilter javaFilter = new FilenameFilter()
            public boolean accept(File dir, String name)
                return name.endsWith(".java");
         public HashMap getLastModified()
              HashMap lastModified = new HashMap();
              ArrayList javaFiles = new ArrayList();
              File sourceDir = new File(".\\Source");
              File currentFile;
              long lLastModified;
              //get a list of all the .java files in the source directory
              javaFiles=listFiles(javaFilter);
              //for all .java files get and store the last modified date
              for(int i=0; i<javaFiles.size(); i++)
                   currentFile=(File)javaFiles.get(i);
                   lLastModified=currentFile.lastModified();
                   lastModified.put(currentFile, lLastModified);
              return lastModified;
    }The problems I am getting are:
    >
    The method listFiles(FilenameFilter) is undefined for the type myClass
    and
    >
    The method put(Object, Object) in the type HashMap is not applicable for the arguments (File, long)
    can anyone help? What's the best way to go aobut this?

    Thanks for the replies abenstex I modified it so that javaFiles is now a File[] and made the change you suggested but I still have the second problem, here's the code so far:
    import java.util.HashMap;
    import java.io.FilenameFilter;
    import java.io.File;
    import java.util.ArrayList;
    public class myClass
         public static void main(String[] args)
              HashMap result = getLastModified();
         static FilenameFilter javaFilter = new FilenameFilter()
            public boolean accept(File dir, String name)
                return name.endsWith(".java");
         public HashMap getLastModified()
              HashMap lastModified = new HashMap();
              File[] javaFiles = {};
              File sourceDir = new File(".\\Source");
              File currentFile;
              long lLastModified;
              //get a list of all the .java files in the source directory
              javaFiles=sourceDir.listFiles(javaFilter);
              //for all .java files get and store the last modified date
              for(int i=0; i<javaFiles.length; i++)
                   currentFile=(File)javaFiles;
                   lLastModified=currentFile.lastModified();
                   lastModified.put(currentFile, lLastModified);
              return lastModified;

  • Time since last update

    Hi
    I regularly update my website sometimes once a day sometimes several times. I would to place a script or something on the page that places a "mins/hours/days" since last update. Similar to post columns on forums. I have looked through Dreamweaver exchange but cannot find anything (or have i missed it)
    thanks

    Most likely you will require PHP and such to do that. JavaScript as such cannot list files and their properties etc.. File system access goes against its security model.
    Mylenium

Maybe you are looking for

  • Urgent!!! Need help in file read/write data to a serial port

    Hi, I really need someone's help in order for me to complete my project. I have attached a vi which I have taken from an example and integrate to my project. In the vi, I have managed to get the encoder counts using Ni 9411. I need to read/write that

  • Print  option disabled... how to activate it?

    That's it how to activate the print option in a blocked pdf file. Is the any way? Thanks

  • Latest Itunes update has ruined itunes and rendered ipod unsupported.

    itunes updated and after having to go through a mess to fix it (ie) I had to delete all my apple related programs and reinstall itunes (11.1.4.62) to get it to work at all, now my ipod says "unsupported accessory is not supported". How do I fix this

  • Site-Specific Code Hints

    I am using a 30 day trial version of CS5.5. (side not, I love it) so I don't know if this is the source of my problem. I installed Wordpress on my computer and I am using XAMPP. I have opened the Site-Specific Code Hints and pressed ok. It does nothi

  • ApplyMRD Process Error

    it is to inform Oracle Apex Users. when we create master detail form through wizard.by default ApplyMRD process is created. MRD is usually made for multi row delete. In MRD process Under "Conditional Processing" Tab APPLY_CHANGES_MRD,SAVE is placed i