Can someone help comment on my workflow?

I’m looking for advice on my workflow.   I'm a dad taking pics of nature, kids, parties etc.    I need to get the gazillion of raw pics off my drive before it overflows.
Also, I’ve been using one collection per year but realize I need to combine all years into one collection… thereby nessesitating external hard drive storage of the actual pics.
Here is what I have come up with….
Phase 1: Download (copy to: C:/Pictures/Downloaded/2010)
Phase 2: Label all pics.   Rate them.
              0 = not yet rated
              1= Archive JPEG low res (Quality=62)
              2= Archive JPEG med res (Quality=85)
              3= Cool. Archive JPEG high (Quality=100)
              4= Very nice. Keep RAW.            
              5= Show my friends J. Keep RAW
Phase 2A: Make sure to delete as many pics as possible !!!!!!! I don’t need 23 pics of my boy making faces.
Phase 3:Delete all picts marked as so.
Phase 4: Export to external drive as a function of star rating. (ex: NAS:/Archive/2010/5star)
-          Export 1,2&3 stars as JPEG.
-          Move 4 & 5 stars as RAW.
Phase 5: Delete all 1,2&3 stars from local hard drive (since they are now in JPEG on external drive)
This process looks good to me but for some reason I am hesitant to execute (fear of loosing pics).  I’d love feedback.
Thanks,
-Ed

If you are worried about losing that "one" photo, start by backing up everything you have now, if you do not already have a backup in place.
After that I would delete as the first step.  Deleting photos is a difficult and emotional process.  You might consider turning it on its head, and instead, go through you images, picking only those you want to keep.  When you come across 23 funny face pictures, pick one!  I suggest you use the pick flag rather than the stars at this stage.  If you use the stars, you will dither over images and whether to keep 4/5 or 3/4/5...  I did this last winter, and went through 1000 images per evening.  After that I found I was losing enthusiasm and judgement.
BTW, the method I used was to build several smart collections, based on a folder structure of Decade/Year/Month/Day.  I wanted to work on one year at a time to keep the number of thumbs under 20,000 at a time:
X to evaluate:
Keywords doesn't contain "XXX"
Folder contains 2004
X to delete:
Keywords contains "XXX"
Folder contains 2004
Pick flag is not flagged
This is how it works.  Pick the "X to evaluate" smart collection.  This will show you all your 2004 images (or whatever folder structure you are using).  Assigning the keywork "XXX" means you have evaluated the image.  Setting the pick flag to "picked" means you want to keep the image.  Go though the thumbs, picking as you go.  When you have finished a group, set the keyword "XXX" for all the thumbs in the group.  They will magically disappear from the "X to evaluate" smart collection, and you can continue with the next group.  However, the images have not been deleted yet.
The next step is to look at the "X to delete" smart collection.  You can quickly review the images, to make sure you have not missed a keeper.  Set the pick flag to pick for any keepers you accidently missed.  Now you can delete the remaining images in the smart collection.
Continue this process with each major folder group.
Also, I suggest you start with your earliest images and work forward.  By doing this, you will quickly see which images are most important to you in the long term.  If you are like me, images of family and friends, and locations that evoke memories turn out to be the most important.  The "works of art" tend to lose their luster over time.  I wanted to keep some so I could see my artistic and technical progress, but not too many.  This has helped me immensly in making decisions on the more recent images, where the artistic merit is closer to my heart.
The next step is to remember the pain involved in cleaning up photo collections, and be ruthless in culling your current shoots to stay on top of the process.  Apart from making it easier to manage your photos, the ones you keep will be more meaningful, as they are less diluted by sheer numbers.
This will make your subsequent steps easier, as you will be working with less images.  You should keep the raw file for every image.  Also, unless you have many hundreds of thousands of images after the culling process, I suggest you keep everything on one drive in one catalog (I assume that is what you meant by "collections").  It will make your image management much easier for tracking and backups.  You can get alot of images on a 2TB drive.
Now that you only have the "keepers" I think you will find a rating system more meaningful if you choose to implement one.
Hope this helps.
Regards
Rory

Similar Messages

  • SQL : Please can someone help ?

    Guys,
    Please can someone help me ? I've written the following query and struggling to get the correct
    outer join. In the first query, i look for all daily transactions of users registered under
    hill.com but it's not giving me a record for an game at 4:24 because there are 0 players from hill.com
    I need that to be displayed as 0 instead of skipping the entire row..
    In the second query, when i comment out the registration_site, that gives me the missing game. How do
    i use the outerjoin in this case ?
    select
    TO_CHAR(e.DRAW_DATE, 'Day') ,          
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,        
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') , 
             to_char(f.card_price/100,'999999.99')  , 
          to_char(f.prize_initialamount/100,'999999.99') ,
          to_char(e.total_prize/100,'999999.99') ,
            case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end ,
          to_char(e.player_count,'999999') ||','||    
          to_char((e.total_amount_bet/100)/(f.card_price/100),'999999') ,
             to_char(count(distinct(b.user_id)),'999999') ,  
             to_char(sum(d.total_bet_amount),'999999.99')
    FROM
         production.gl_user_registrations a,
         production.gl_user_game_sessions b,
         production.vf_game_parameters c,
         production.gl_user_game_play_summarys d,
         production.VF_BINGO_DRAW_HISTORY e,
         production.VF_BINGO_SCHEDULES f
    WHERE
         d.game_configuration_id =  c.parameters_id
    AND      b.user_game_session_id = d.user_game_session_id
    AND      b.user_id = a.user_id
    AND      (a.user_privilege = 'USER' or a.user_privilege = 'CHAT-RESTRICTED-USER')
    AND      d.user_game_state <> 'INPROGRESS'
    AND      c.for_money = '1'
    AND      registration_site<>'CWC'
    AND      game_type='Bingo'
    AND      d.GAME_PLAY_ID=e.GAME_PLAY_ID
    AND      trunc(e.draw_date) = trunc(sysdate-1)               
    AND      registration_Site  in ('hill.com')
    AND      f.DRAW_TIME(+) = to_char(e.DRAW_DATE, 'hh24:mi:ss')              
    AND      f.week_day(+) = mod(to_char(e.DRAW_DATE,'d'),7)+1 
    GROUP BY
         f.card_price/100,      
            f.prize_initialamount / 100 ,
         TO_CHAR(e.DRAW_DATE, 'Day') ,            
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,  
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') ,    
             e.player_count,        
             e.total_amount_bet/100 ,        
             e.total_prize/100 ,       
             (e.total_amount_bet - e.total_prize)/100 ,
             case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end,      
             DECODE(SUBSTR(((e.total_amount_bet - e.total_prize)/100),1,1),'-', 'N', 'Y')
    order by TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR'), TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS')
    Thursday  08-FEB-07 04:12:00        .25       5.00      29.93 Y      39,    164       6      14.25
    Thursday  08-FEB-07 04:18:00        .10       5.00      29.93 Y      37,    410       8      14.40
    Thursday  08-FEB-07 04:30:00        .50       5.00      34.31 Y      34,     94       3      22.50
    Thursday  08-FEB-07 04:36:00        .10       5.00      24.46 Y      38,    335       7      12.70
    select
    TO_CHAR(e.DRAW_DATE, 'Day') ,          
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,        
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') , 
             to_char(f.card_price/100,'999999.99')  , 
          to_char(f.prize_initialamount/100,'999999.99') ,
          to_char(e.total_prize/100,'999999.99') ,
            case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end ,
          to_char(e.player_count,'999999') ||','||    
          to_char((e.total_amount_bet/100)/(f.card_price/100),'999999') ,
             to_char(count(distinct(b.user_id)),'999999') ,  
             to_char(sum(d.total_bet_amount),'999999.99')
    FROM
         production.gl_user_registrations a,
         production.gl_user_game_sessions b,
         production.vf_game_parameters c,
         production.gl_user_game_play_summarys d,
         production.VF_BINGO_DRAW_HISTORY e,
         production.VF_BINGO_SCHEDULES f
    WHERE
         d.game_configuration_id =  c.parameters_id
    AND      b.user_game_session_id = d.user_game_session_id
    AND      b.user_id = a.user_id
    AND      (a.user_privilege = 'USER' or a.user_privilege = 'CHAT-RESTRICTED-USER')
    AND      d.user_game_state <> 'INPROGRESS'
    AND      c.for_money = '1'
    AND      registration_site<>'CWC'
    AND      game_type='Bingo'
    AND      d.GAME_PLAY_ID=e.GAME_PLAY_ID
    AND      trunc(e.draw_date) = trunc(sysdate-1)               
    --AND      registration_Site  in ('williamhill.com')
    AND      f.DRAW_TIME(+) = to_char(e.DRAW_DATE, 'hh24:mi:ss')              
    AND      f.week_day(+) = mod(to_char(e.DRAW_DATE,'d'),7)+1 
    GROUP BY
         f.card_price/100,      
            f.prize_initialamount / 100 ,
         TO_CHAR(e.DRAW_DATE, 'Day') ,            
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,  
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') ,    
             e.player_count,        
             e.total_amount_bet/100 ,        
             e.total_prize/100 ,       
             (e.total_amount_bet - e.total_prize)/100 ,
             case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end,      
             DECODE(SUBSTR(((e.total_amount_bet - e.total_prize)/100),1,1),'-', 'N', 'Y')
    order by TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR'), TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS')
    Thursday  08-FEB-07 04:12:00        .25       5.00      29.93 Y      39,    164      22      41.00
    Thursday  08-FEB-07 04:18:00        .10       5.00      29.93 Y      37,    410      27      41.00
    Thursday  08-FEB-07 04:24:00        .25       5.00      17.16 Y      35,     94      13      23.50
    Thursday  08-FEB-07 04:30:00        .50       5.00      34.31 Y      34,     94      14      47.00

    which table contains game_type column???
    It will be better to prefix all the columns with table aliases.

  • I want to erase my hard drive and reinstall  lion server. Can someone help me out?

    i have a mac mini running lion server. I want to erase all the date and start fresh. When i try to reinstall Lion it does not show anything about lion server but jut Lion. I want to make sure I do it properly. It is also asking me in which hard drive to install Lion but im unsure.
    can someone help me out?

    Check in the app store under purchases both lion and server should show up there to download again.
    No need to erase both drives for a clean install just the drive you are using for the OSX. Though if you are truly starting a fresh then erase and reformat both.
    As for Upgrades. Yosemite is the only upgrade now available through the app store as is Server 4.0 for Yosemite. I have not tested the latest server yet and can not comment on it's reliability.
    Any server you set up should be thoroughly tested on a closed network before going live.
    Hope this helps.
    PJRS

  • TS3274 My FaceTime doesn't ring, can someone help?

    My FaceTime does not ring on my end, can someone help?

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
     Cheers, Tom

  • I can not send email from my iPhone 3g using me dot com. Can someone help?

    I have had my iPhone 3g for 2 weeks now I believe and in this time have received tons of e mails but when I try to reply or send a new e mail I get the message "The connection to the outgoing server "smtp.mac.com" failed."
    I don't see why since my wifi is connected and does everything else, like surf the web, download updates to apps and receive e mail.
    Can someone help me figure this out? I also just purchased an iPod touch which will be using wifi only so I'm scared that it too will have the same problem

    I have a 1st gen iPhone that I just updated the software to 2.0.2
    Now whenever I press the mail icon it goes to the mail app for about 4 seconds, does nothing, no loading of folders, old messages, nothing.
    Then it reverts back to the home screen. Tried restarting, haven't tried restoring, thought I'd look here first.
    Anyone???

  • When I try to send email from my iPad and iphone it says that I have the incorrect username and/or password, but I know they are correct, can someone help me?

    When I try to send email from my iPad and iPhone it says that I have the wrong username and/or password, but I know they are correct.  Can someone help me?

    "Your email account" means to tap on the name of your email account. Whatever it is listed as in the settings.
    In my mail settings, one of my email accounts is a Comcast account. I tap on the Comcast name and it brings up this window.
    Then I tap on the arrow under the Outgoing mail server smtp setting to get to the next window.
    In the resulting window, I then tap on the arrow next to the smtp server under the Primary Server setting.
    That brings up this window in which I check to make sure that my user name and password have been entered correctly. If those items are missing, enter them in the appropriate fields and then tap done.

  • My ipod touch 1st gen has gone into recovery and wont restore because of a error 1 or something like that can someone help me quick this ipod is my little cousins and i dont want her mum to find out what happend

    my ipod touch 1st gen has gone into recovery and wont restore because of a error 1 or something like that can someone help me quick this ipod is my little cousins and i dont want her mum to find out what happend

    I have not seen a solution for error (1)
    make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    If you need assistance with finding any of your restores or attempting to restore from any that happened prior to his incident follow this article
    http://support.apple.com/kb/ht1766
    IF you do find a backup that has your contacts; I'd /highly/ recommand turning off your wifi network after the restore is finished because if the issue is with your iCloud your contacts may merge back with her's.
    With iCloud you DO NOT want to share the account; bad things happen Evil evil thigns...
    But in all seriousness; if two devices have the same iCloud; iCloud is told to merge and sync infomation between hte two and can't tell that it doesn't belong to the same person

  • Some of my photos in iphoto turn blank (white) when I tried to edit the size like zoon in and out.Can someone help me on this?

    Some of my photos in Iphoto turn blank (white) when I tried to edit the size like zoon in and out.Can someone help me on this?

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • HT5429 direction is not coming in IOS 6 in india. can someone help me for the same?

    direction is not coming in IOS 6 in india. can someone help me for the same? i'm using iphone 4

    Hi Civilclerk1,
    In order to achieve your requirement, we can try to use the following expression to instead the last_name column and first_name field:
    last_name: =iif(Fields! staff_role.Value="Lead Atty" or Fields! staff_role.Value="BK Mgr" or Fields! staff_role.Value="Partner" ,Fields! last_name.Value,nothing)
    first_name: =iif(Fields! staff_role.Value="Lead Atty" or Fields! staff_role.Value="BK Mgr" or Fields! staff_role.Value="Partner" ,Fields! first_name.Value,nothing)
    Besides, if we don’t want see the blank row in the tablix, we can add a filter as below in the tablix:
    Expression:=iif(Fields! staff_role.Value="Lead Atty" or Fields! staff_role.Value="BK Mgr" or Fields! staff_role.Value="Partner" ,1,0)
    Operator:=
    Value:=1
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck and will post the output. Please can someone help me with what it all means.Thanks in advance

    I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck. Please can someone help me with what it all means.
    Thanks in advance.
    EtreCheck version: 1.9.15 (52)
    Report generated 19 September 2014 08:07:14 GMT+8
    Hardware Information: ?
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:4:29
    Disk Information: ?
      Hitachi HTS545032B9A302 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (147 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ?
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.4 - SDK 10.5) Support
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.4 - SDK 10.4) Support
      [loaded] com.sophos.kext.sav (9.1.55 - SDK 10.7) Support
      [loaded] com.sophos.nke.swi (9.1.50 - SDK 10.8) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.sophos.autoupdate.plist Support
      [running] com.sophos.configuration.plist Support
      [running] com.sophos.intercheck.plist Support
      [running] com.sophos.notification.plist Support
      [running] com.sophos.scan.plist Support
      [running] com.sophos.sxld.plist Support
      [running] com.sophos.webd.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
    Launch Agents: ?
      [loaded] com.divx.dms.agent.plist Support
      [loaded] com.divx.update.agent.plist Support
      [running] com.sophos.uiserver.plist Support
      [running] com.trusteer.rapport.rapportd.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.amazon.music.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist Support
    User Login Items: ?
      iTunesHelper
      TomTomHOMERunner
      AdobeResourceSynchronizer
      Dropbox
    Internet Plug-ins: ?
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      DivX Web Player: Version: 3.2.1.977 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      EPPEX Plugin: Version: 10.0 Support
      Default Browser: Version: 537 - SDK 10.9
      OVSHelper: Version: 1.1 Support
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.7
    Safari Extensions: ?
      Ultimate
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Perian  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 297.29 GB Disk used: 160.38 GB
      Destinations:
      Data [Network] (Last used)
      Total size: 2 TB
      Total number of backups: 99
      Oldest backup: 2012-04-20 17:05:32 +0000
      Last backup: 2014-09-18 23:49:25 +0000
      Size of backup disk: Excellent
      Backup size 2 TB > (Disk size 297.29 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          6% InterCheck
          5% iCalExternalSync
          3% WindowServer
          2% CalendarAgent
          2% SystemUIServer
    Top Processes by Memory: ?
      152 MB SophosScanD
      147 MB InterCheck
      106 MB SophosAntiVirus
      66 MB Dropbox
      57 MB com.apple.iTunesLibraryService
    Virtual Memory Information: ?
      161 MB Free RAM
      1.55 GB Active RAM
      1.41 GB Inactive RAM
      902 MB Wired RAM
      611 MB Page-ins
      0 B Page-outs

    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    Remove Sophos
    https://discussions.apple.com/message/21069437#21069437

  • So I download photoshop cc (2014) and when I go to open the program, it gives me an error message and shuts the program down. It says," A problem cause the program to stop working correctly. Windows will close the program." Can someone help me please?

    So I download photoshop cc (2014) and when I go to open the program, it gives me an error message and shuts the program down. It says," A problem cause the program to stop working correctly. Windows will close the program." Can someone help me please?

    I've got the same issue and it affects all my adobe software.  You are not alone as I have seen several postings looking for the answer to this help request.

  • My itunes wont work and wont let my uninstall and then reinstall the newer version as its asking me too! i keep getting an error message!...please can someone help?

    please can someone help me to unistall itunes from my laptop control panel, this means it also wont let me install the latest version!

    I also have Jolly's problem. I found the iMovie 9.0.9 folder and tried to launch the older version of iMove. It would not launch. I removed all of the iMovie preferences from the Preferences folder, removed iMove 10 from the applications folder, and restarted my Mac. iMove 9.0.9 still won't launch and I can't access my videos created with the older version of iMovie. Is there a way to uninstall iMovie 10 and reinstall iMovie 9.0.9?
    I am running Yosemitie on a  iMac.
    Paul

  • HT1338 I cannot open itunes. When I try, a popup says I need quicktime 7.5.5 but I cannot download it. Can someone help??

    I cannot open itunes. When I try, a popup says I need quicktime 7.5.5 but I cannot download it. Can someone help??

    Quicktime 7.5.5 can be downloaded from this link.
    http://support.apple.com/downloads/#quicktime

  • I cant install or uninstall my itunes. I get this error 'the feature you are trying to use is on a network resource that is unavilable' Now ive seen the solutions on here but im using windows 8.1. Ive tried all options so please can someone help?

    I cant install or uninstall my itunes. I get this error 'the feature you are trying to use is on a network resource that is unavilable' Now ive seen the solutions on here but im using windows 8.1 and none of them work for me. Ive tried all options so please can someone help?

    That doesnt work for me. I removed itunes through the windows cleaner method as shown in other posts and re-installed itunes. Now im getting this error
    iTunes was not installed correctly. Please reinstall iTunes
    Error 7 (Windows error 126)
    Also my Microsoft office has stopped working after i deleted Itunes which is really strange.
    Can somebody provide me a solution please....

Maybe you are looking for