Updated to Mavericks and I get the upper left quarter of the screen blacked out on Time Machine. This means that I can't see the files. Any suggestions for getting rid of the black square?

Ive tried disconnecting and reconnecting the Time Machine. And I've tried rebooting the iMac, but I still get the top left hand quarted of the screeen blacked out. I can scroll back through the back-ups but the back square means that I can't see the details of any file.

Please read this whole message before doing anything.
This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

Similar Messages

  • When I try to upload the lates version of iTunes, it tells me to enter an alternate path to a folder containing the installation package iTunes.msi. What does this mean as I can't seem to find any such folder

    when I try to upload the lates version of iTunes, it tells me to enter an alternate path to a folder containing the installation package iTunes.msi. What does this mean as I can't seem to find any such folder

    Hello there, AndyB73.
    The following Knowledge Base article offers some great troubleshooting recommendations for issues installing iTunes:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I updated to Mavericks and a bunch of my info deleted.  I tried opening a previous iDVD I made, but when I click on it, it says to look for themes.  How do I get my movie to work?  Thanks.

    I updated to Mavericks and a bunch of my info deleted.  I tried opening a previous iDVD I made, but when I click on it, it says to look for themes.  How do I get my movie to work?  Thanks.

    Did you do an erase and install of Mavericks?  If not look in the HD/Library/Application Support folder for an iDVD folder.  There should be a Themes folder in it. If it's not there look in your Home/Library/Applications Suport folder for the iDVD folder.
    NOTE: In Mavericks, 10.9,  the Home Library is invisible so go to your Home folder and use the View ➙ Show View Options menu to bring up this window:
    Select Show Library Folder.  Now you can check to see if the iDVD folder in there.
    If you find the iDVD folder launch iDVD, go to its Advanced preference pane and point iDVD to the Themes folder:
    If you can't find the Themes folder you'll need to reinstall iDVD from the source you installed it from originally, i.e. the disks that came with your Mac or an iLife 09 or 11 disk.
    OT

  • How to display a frame at the upper left corner of each screen?

    hi,
    below are 2 ways to display a frame at the upper left corner of each screen (i have 2 monitors).
    both work but the 2nd way is much slower. which, if any, of the 2 approaches is "more" correct?
    import java.awt.Canvas;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.DisplayMode;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseAdapter;
    import java.awt.GraphicsConfiguration;
    import java.awt.GraphicsDevice;
    import java.awt.GraphicsEnvironment;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.Toolkit;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    // the thing that matters in here is setting the frame's location: xCoord
    // is incremented in each iteration by the current screen's width and
    // is used to set the frame's x-coordinate.
    public static void main(String args[])
          GraphicsEnvironment gEnviron = GraphicsEnvironment.getLocalGraphicsEnvironment();
          GraphicsDevice[]    gDevices = gEnviron.getScreenDevices();
          Color colors[] = {Color.blue, Color.red};
          for(int i = 0, xCoord = 0; i < gDevices.length; i++)
             // set panel's size and frame's size to take up the whole screen
             DisplayMode didsplayMode = gDevices.getDisplayMode();
    int screenWidth = didsplayMode.getWidth();
    int screenHeight = didsplayMode.getHeight();
    JPanel panel = new JPanel();
    panel.setBackground(colors[i % colors.length]);
    JFrame frame = new JFrame();
    frame.setSize(new Dimension(screenWidth, screenHeight));
    frame.setContentPane(panel);
    frame.setUndecorated(true);
    // set location of frame.
    frame.setLocation(xCoord, 0);
    xCoord += screenWidth;
    frame.addMouseListener
    new MouseAdapter()
    public void mousePressed(MouseEvent event) {System.exit(1);}
    frame.setVisible(true);
    // this is a lot slower and may not be correct: it sets the frame's location by calling
    // getConfigurations() on each screen device but using only the 1st configuration
    // (it returns 6 on my computer) to get the bounds (for the frame's x-coord).
    // a screen device has 1 or more configuration objects but do all the objects
    // of the device report the same bounds? if the anwser is yes, then the code
    // is correct, but i'm not sure.
    public static void main1(String args[])
    GraphicsEnvironment gEnviron = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] gDevices = gEnviron.getScreenDevices();
    Color colors[] = {Color.blue, Color.red};
    for(int i = 0; i < gDevices.length; i++)
    // set panel's size and frame's size to take up the whole screen
    DisplayMode didsplayMode = gDevices[i].getDisplayMode();
    int screenWidth = didsplayMode.getWidth();
    int screenHeight = didsplayMode.getHeight();
    JPanel panel = new JPanel();
    panel.setBackground(colors[i % colors.length]);
    JFrame frame = new JFrame();
    frame.setSize(new Dimension(screenWidth, screenHeight));
    frame.setContentPane(panel);
    frame.setUndecorated(true);
    // set location of frame: getConfigurations() is very time consuming
    GraphicsConfiguration[] gConfig = gDevices[i].getConfigurations();
    // on my computer: gConfig.length == 6. using the 1st from each set of configs
    Rectangle gConfigBounds = gConfig[0].getBounds();
    frame.setLocation(gConfigBounds.x, gConfigBounds.y);
    frame.addMouseListener
    new MouseAdapter()
    public void mousePressed(MouseEvent event) {System.exit(1);}
    frame.setVisible(true);
    thank you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Darryl.Burke wrote:
    Blocked one abusive post.
    @flounder
    Please watch your language.
    dbDude - I just looked at your profile. WTF are you doing in India??

  • Dear ladies and gentlemen! I recently received on my notebook, operating system 8.1, the message "Adobe Acrobat is no longer working properly". I also found myself that I can copy from einerPDF file excerpts not without problems in another document. My Ad

    Dear ladies and gentlemen!
    I recently received on my notebook, operating system 8.1, the message "Adobe Acrobat is no longer working properly". I also found myself that I can copy from einerPDF file excerpts not without problems in another document. My Adobe Acrobat 9 Pro has released version 9.0.0. Two updates this version is not listed. Please inform me how I can fix this problem.
    Sincerely, Walter Hacksteiner
    mailto: [email protected]

    The first thing I would try is to update Acrobat 9 to the latest version 9.5.5
    The next thing would be to run Acrobat 9 in Windows 7 or Vista or XP Compatibility Mode.

  • When I try to upload the lates version of iTunes, it tells me to enter an alternate path to a folder containing the installation package iTunes.msi. What does this mean as I can't seem to find any such folder and now I cannot uninstall Itunes either

    when I try to upload the latest version of iTunes, it tells me to enter an alternate path to a folder containing the installation package iTunes.msi. What does this mean as I can't seem to find any such folder and now I cannot uninstall Itunes either

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it, which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Youtube videos are imprinting in the upper left corner of my screen.

    When I have a youtube video playing in one tab, and I'm looking at another tab and bringing up a notepad text file or Spider Solitaire, the youtube video will imprint itself over the upper left corner of my screen and won't go away unless I refresh the desktop (solves it for a few seconds) or move the youtube tab away from the actively playing video.
    It doesn't happen with every video. Here's two where it affects me.
    http://www.youtube.com/watch?v=zBQVsJbM6e8
    http://www.youtube.com/watch?v=Ui0WU0QcE3M
    Does anyone know what's causing this?

    Ah, now I notice the Edit This Post function. -_-

  • When youtube is not my active tab, the video plays in the upper left corner of my screen.

    When I attempt to view a video on youtube, it takes several seconds to buffer. Leaving the video to run in the background I navigate to other tabs I have open and while the video buffers, nothing happens. When the video actually starts to play in the tab in the background, the video begins to play in the upper corner of my screen. The video does not to appear to be distorted at all, it's simply shifted from its location in the background tab to the upper left corner of my screen.

    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    * New Old Menu: https://addons.mozilla.org/firefox/addon/new-old-menu/
    * Personal Menu (Personal Firefox Button): https://addons.mozilla.org/firefox/addon/personal-menu/

  • I recently go my screen replaced and it has worked since then. But now all a sudden the screen does not light up. I know my phone is on because Siri is still responsive if I hold the home button, I just can't see anything. Any suggestions?

    I recently go my screen replaced and it has worked since then. But now all a sudden the screen does not light up. I know my phone is on because Siri is still responsive if I hold the home button, I just can't see anything. Any suggestions?

    Most likely the LCD Display connector simply came loose from its logic board connector. Take iPhone back to where it was repaired, and ask them to simply press the connector back into its place. Ask them to apply a bit of foam material or several small pieces of tape on top so the pressure of the flex connector plate holds it properly in place for the future.

  • When I try to upload the lates version of iTunes, it tells me to enter an alternate path to a folder containing the installation package iTunes.msi. What does this mean as I can't seem to find any such fold

    when I try to upload the latest version of iTunes, it tells me to enter an alternate path to a folder containing the installation package iTunes64.msi. What does this mean as I can't seem to find any such folder.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • HT1338 I need to bulk upload to Auctiva (auction software) but Java was disabled on my computer. I have 10.5.8 so does this mean that I can't use Java? If not, then is there a workaround to be able to use the bulk uploader from Auctiva?

    I need to bulk upload images from iPhoto to Auctiva (auction software) that will then be posted to eBay; however Java was disabled on my computer some time ago due to "known issues."  I have 10.5.8 so does this mean that I can't use Java? If not, then is there a workaround to be able to use the bulk uploader from Auctiva? As it stands now, I have to upload photos individually which is super time consuming.

    You can re-enable it for special purposes, opposite of disabling it...
    Disable Java in your Browser settings, not JavaScript.
    http://support.apple.com/kb/HT5241?viewlocale=en_US
    http://support.google.com/chrome/bin/answer.py?hl=en-GB&answer=142064
    http://support.mozilla.org/en-US/kb/How%20to%20turn%20off%20Java%20applets

  • I upgraded to IE9 and now I can't see my iPod - any suggestions?

    I upgraded to IE9 and now I can't see my iPod - any suggestions?

    uninstalled iTunes and all the recommended things
    Doublechecking. Have you tried a complete uninstall of both iTunes and all the other related software components and then a reinstall? If not, try the instructions from the following document:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8

  • TS4204 I need to delete a calendar event that transfered to my 4S from my Droid.  Also this event occurs yearly.  When I open this event, the edit button in the upper right corner does not exist so I can't delete it.  Any suggestions to get rid of it? Sur

    I need to delete a calendar event that transfered to my 4S from my Droid phone. This event occurs yearly.  When I open this event, the edit button that normally appears in the upper right corner does not exist so I can't delete it.  Any suggestions on how to get rid of it?

    uninstalled firefox ....deleted all files still remaining under mozilla firefox directory in program files ... to avoid having to reprogram all my settings, reisntall all addons as well .. I did not remove anything from mozilla firefox that is stored in either appdata or under the windows users directory (if any)
    ... the as suggested reinstalled the latest version of the firefox browser using the link you provided in the email ..; tested and several issues still remain present and unresolved ....
    so please this is urgent or I will have to jump browsers and start using chrome .. because we work 14 hours a day 6 (sometimes 7) days a week, to get ready for the launch of our newest venture and we cannot lose that much days on browser related issues ... so please instead of putting me through week long step process .. of do this .. do that .. can you please actually look into the issue from your end .. I use firefox for so many, many years thta I deserve this kind of support .. thnx Robert

  • Why is it that I downloaded Firefox 4.0 but I do not have the orange firefox box in the upper left hand corner of screen. My screen still looks like the old verison of firefox. My screen does not look like the one in the video. looks nothing like the one

    My Firefox 4.0 does not look anything like the videos you show about the features of the new Firefox. My screen looks totally different than yours. It does not have the orange box in the upper left hand corner of the screen. My screen still looks like the old version. I have the logo on the top of my screen with Ask a Question a vertical line Firefox Help - Mozilla Firefox.
    Under this line I have File, Edit, View, History, Bookmarks, Tools, and Help. Below this line is a tab with Ask a Question Firefox Help and a +. My husbands screen looks identical to the orange Firefox Box in the upper left of screen. I would like my screen to look identical to the ones shown in your videos. I only have one version of Firefox 4.0 my husband does have the Firefox 4.0 plus the Beta version. How do I add the Beta version? I have Windows Vista running systems. Please help. Thank you

    You're welcome

  • Time Machine only shows Finder, I can't see how to get a view of yesterdays Outlook

    HI have a MacbookPro 2.53GHz INtel Core 2 Duo with 4GB RAM 1067MHz DDR3 and am running Office for Mac 2011.
    There is a Time MAchine installed and it backs up automatically. In the past I have been able to retrieve emails or documents from Time Machine with no problem. HOwever yesterday I accidentally deleted an email and its not even showing in trash. I wanted to go onto Time Machine and look for it but when I enter it only gives me the Finder window and I can't see how to make it show me Outlook. Does anyone know how to get into the application I want?

    This is harder than it looks.. you will need to restore the library.
    Do a search.. here is first post I found.
    Where is the outlook pst file on OSX?
    You actually need to recover the files and then see if you can reload it.. but it is likely to mess up your current file.. so you might find this is really messy.
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macoutlook/restore-ou tlook-messages-from-time-machine/24e12473-c6dd-4234-8cd7-b3f4b05c22b9
    http://office.microsoft.com/en-au/mac-outlook-help/about-the-office-database-HA1 02928338.aspx?CTT=5&origin=HA102928254
    I have given up on computer email.. gmail serves very nicely.. and it is no where near as buggy. Albeit they machine read your mails for ads.. not a big deal to me.

Maybe you are looking for

  • What will Apple do if my iPod Touch 4g crashed while updating to iOS 6?

    Yesterday while trying to update my iPod touch 4g to iOS 6, it just suddenly shut down mid-way (on a charger). When I tried turning it back on, it would pull up the battery screen indicating that the battery is low, so I would plug it in the charger

  • Schedule plan - Stored procedure

    Hi Experts, I have a requirement like below....Any ideas to achieve the same will be highly appreciated... PLAN Stored Procedure to run on 3rd, 9th, 16th & 23rd every month On 3rd : delete data from [ControlReports] tbl for previous month and insert

  • R/3 ECC6.0 connection as a source system to BI 7.0 For IDES system

    Hi Friends, I want to create a R/3 source system conenction in IDES say Example My IDES server For <b>R/3 ECC 6.0 is  XYZ800</b> and client is 800. My IDES server For <b>BI 7.0 also XYZ800</b> and client is 800. in ECC 6.0 IDES, both BI and R/3 is sa

  • Price not decending or ascending properly

    I am trying to process information and want to order it by price. I have a form to choose to show the price ascending or decending. I'm getting values like this: £79,950.00 £52,500.00 £164,950.00 £14,500.00 The prices are stored in my database like t

  • How is the difference between CRS-MSC-B and CRS-MSC-40G-B

    How is the difference between  CSC-MSC-B and CSC-MSC-40G-B and it can be used interchangeably or not ? thanks for your kindness