Progress bar get about 60% and stuck

Hello

I had difficulties with the last update of El Capitan - my imac will not re-start and could get stuck on the spinning wheel. I could turn it off with the power switch and turn it back on w/out the update and it works great except for chrome.

Today I was asked to restart the update and I thought I'd give it a try. This time, he stops normally and looked like it will re-start! While she has been reset the progress bar froze on the gray apple screen and then the screen started to Flash. If anyone has any suggestions on how to fix this would be appreciated. Thanks in advance!

Use the Combo Update 10.11.6:

Apple - Support - downloads

The Combo update is a complete installation, as opposed to an incremental "delta" update, so you have to overwrite all files are damaged or missing. It does not matter if you have previously applied. All your data and settings must be kept, but that said, you should always have a backup.

Tags: Mac

Similar Questions

  • Progress bar of logo and gray MacBook Pro Apple.

    MY MacBook pro is not terribly old. Not more than 3 years is not new.

    It has the apple Logo and underneath is a gray progress bar. It loads thar bar take some time, then just stops almost as some laptops do when they update

    anywyas what I need help with this!

    Please?

    Thank you!

    make a gray screen:

    your hardware works basically

    the charges Apple logo:

    The Apple logo can only be demonstrated that it was brought in by the initial blob of software boot loader. See gray what apple means that your player has responded to this request and produced the right stuff. That this kind of things, then initializes, and to get more data in the drive Initializes the file system. The file system then try to mount the boot disk to read the files.

    draws a progress bar:

    If this bar remains for more than a very short time, the boot drive cannot be mounted, because the directory is damaged. Your computer is now running the equivalent of disk utility (ERD) while showing you the progress for about five minutes.

    -If this unit can be mounted after the repair, the boot continues.

    -If the drive cannot be mounted, your Mac will stop, because it cannot continue.

    What to do:

    Start to recovery and run utility disk (ERD) repeatedly until it comes clean or gets stuck.

    -If it comes clean after a few passes, try to start again

    -If it gets stuck, you need another drive to make progress. Get another drive and an external enclosure to maintain and install it on Mac OS from scratch. Then you can use it to try to save some of the files, if necessary. OR if you have a reliable backup, you can perform a restore on the new drive.

  • Safari 9.0.2. I find safari hangs and does not open pages as it should. Blue progress bar moves to half way then stops. Reload the page do me later, but it is slow. No idea what's causing the problem. WiFi is good.

    Safari. When opening a site, the page frequently does not. The blue progress bar moves about half way and then stops. I can get to move usually by reloading the page, but it's slow and frustrating.

    It does occur on a particular site. Now, it seems to be fairly general.

    WiFi is good so I don't think that's the problem.

    Any ideas?

    Go step by step by step and test.

    1. turn off the power to the router. Unplug it from the wall. Wait a while.

    Plug it in, back to the wall. Turn on the router. Wait for all lights are light up properly. It will take a while.

    Restart the computer.

    Boot mode safe.

    https://support.Apple.com/kb/PH18760?locale=en_US

    2 remove Caches.db

    Close all windows and close all applications.

    Hold down the 'option' key, then click on the "Go" menu in the Finder menu bar.

    Select 'Library' in the menu dropdown.

    Library > Caches > com.apple.Safari > Caches.db

    Right-click on the Caches.db file and select "move to trash".

    Close the windows.

    Restart and restart Safari.

    3 empty Caches

    Safari > Preferences > advanced

    Tick the box "Show develop menu in menu bar."

    Develop menu will appear in the Safari menu bar.

    Click on develop and select 'Empty cache' in the menu dropdown.

    4. remove the Cookies

    Safari > Preferences > privacy > Cookies and other data from the website:

    Click on the button "Details".

    Delete all cookies except those from Apple, your internet service provider and the banks.

    5 Disable Extensions and test them.

    Safari > Preferences > Extensions

    Uncheck 'Enable the Extension' and test.

    Enable the Extensions one by one and test.

    To uninstall any extension, select it and click the "Uninstall" button

  • Help with progress bar.

    Hi, I tried to add a few different progress bars to this script and I get errors.  Can someone please?   I at the moment at the beginning of the Script, but I got it at the end as well with no luck.  Here's the Code.

       #targetengine "AutoStartScript" 
       
    // Save and open information      
        app.addEventListener( "beforeSave" , doTextFrameOnPageOne );  
        app.addEventListener( "beforeSave" , doZeroPoint );
        app.addEventListener( "afterOpen" , doZeroPoint );
    
    // -----------------> Progress Bar<-------------------    
        app.scriptPreferences.enableRedraw = true
        var found = Array(50);
        var w = new Window('palette');
            w.add ("progressbar", undefined, start, stop);
            w.pbar = w.add('progressbar', undefined, 0, found.length);
            w.pbar.preferredSize.width = 300;
            w.show();
        for(var i = found.length-1;i>-1;i--){
            w.pbar.value = found.length-i;
            $.sleep(20);
            }
        
     // Reset the Zero Point on documents.   
        function doZeroPoint()
            {
               app.documents[0].zeroPoint = [0,0]; 
            
          
    // Create New Layer      
        function addLayer(doc, name) {  
        try{  
                var layer = doc.layers.itemByName(name);  
                if(layer && layer.isValid) {  
                         return layer;  
                    } else {  
                var myLayer = doc.layers.add();  
                myLayer.name = name; 
                
                    return myLayer;  
            }  
          } catch(e) {  
         }  
        }  
          
    // Create Text Frame      
        function addTextFrame(doc, layer, name) {  
            var myBlendingSettings = { blendMode : BlendMode.OVERLAY };        
            var myTransparencySettings = { blendingSettings : myBlendingSettings };     
              
            var tf = doc.textFrames.itemByName(name);  
            if(tf && tf.isValid) {        
                tf.remove();  
            }  
            tf = doc.textFrames.add(layer, LocationOptions.UNKNOWN, {name: name, fillColor :"Yellow", fillTint: 20, transparencySettings : myTransparencySettings, geometricBounds: ['0in','-5.45in','1.45in','-.75in'] });        
                  return tf;  
        }  
          
    // Create Table      
        function addTable(tf) {  
            var myTable = tf.texts[0].tables.add        
                (        
                   {         
                     // Number of Rows and Columns.      
                      bodyRowCount : 6 ,         
                      columnCount : 2         
                              
                 }        
            );       
          
        return myTable;  
            }  
          
          
        function addVariable(doc, name, value) {  
            var v = doc.textVariables.itemByName(name);  
            if(v && v.isValid)  
                return;  
          
            v = doc.textVariables.add({name:name, variableType:VariableTypes.CUSTOM_TEXT_TYPE});  
            v.variableOptions.contents =  value;      
        }  
          
          
        function doTextFrameOnPageOne(event)        
         {       
            var doc = event.target;     
            if(!(doc && doc.constructor.name == "Document")) {  
                return;  
            }  
                
    // Create New Layer   
            var myLayer = addLayer(doc, "SaveInfo");  
               
            var columnOneContentsArray = [                  
                 
                 "Document:" ,        
                 "User Name:",       
                 "Computer Name:",      
                 "Date Modified:",            
                 "Date Output:",      
                 "Date Created:",      
                 "Output Date:"        
            ];        
                    
            var columnTwoContentsArray = [     
                ];     
                       
            var tf = addTextFrame(doc, myLayer, "SaveInfo");  
    // Table Properties
            var myTable = addTable(tf);  
                setColumnWidthsAndAlignments(myTable)  
        function setColumnWidthsAndAlignments(tableObj)  
           {  
            var myWidths=[1.35, 3.32];  
            var myAlignments=[Justification.LEFT_ALIGN,Justification.LEFT_ALIGN];  
            var numberOfColumns=tableObj.columns.count();  
            for (c=0;c<numberOfColumns;c++)  
           {  
                myTable.columns[c].width=myWidths[c];  
                myTable.columns[c].cells.everyItem().texts.everyItem().justification=myAlignments[c];  
           }  
          }       
    // Create New Text Variables and Variable Options.
            var md = doc.textVariables.itemByName("Output Date");
                md.variableOptions.format = "MMMM dd, yyyy hh:mm a";
            var md = doc.textVariables.itemByName("Creation Date");
                md.variableOptions.format = "MMMM dd, yyyy hh:mm a";
                tv = doc.textVariables.item("Users Name");    
                !tv.isValid && tv = doc.textVariables.add({name:"Users Name", variableType:VariableTypes.CUSTOM_TEXT_TYPE});            
                tv.variableOptions.contents =  String( getAppUserName() );  
                tvL = doc.textVariables.item("CLN");   
                !tvL.isValid && tvL = doc.textVariables.add({name:"CLN", variableType:VariableTypes.CUSTOM_TEXT_TYPE});    
                tvL.variableOptions.contents =  String( getLogInUserName() ); 
              
                       
    // Placing Text variable information in tables             
            var R1, R2, R3, R4, R5, R6;       
                     
                myTable.columns[0].contents = columnOneContentsArray;        
                myTable.columns[1].contents = columnTwoContentsArray;        
            var cell0OfColumn2insertionPoint1 = myTable.columns[1].cells[0].insertionPoints[0];       
            var R1 = cell0OfColumn2insertionPoint1.textVariableInstances.add(LocationOptions.AFTER, cell0OfColumn2insertionPoint1);            
                R1.associatedTextVariable = doc.textVariables.itemByName("File Name");       
            var cell1OfColumn2insertionPoint1 = myTable.columns[1].cells[1].insertionPoints[0];      
            var R2 = cell1OfColumn2insertionPoint1.textVariableInstances.add(LocationOptions.AFTER, cell1OfColumn2insertionPoint1);    
                R2.associatedTextVariable = doc.textVariables.itemByName("Users Name")         
            var cell2OfColumn2insertionPoint1 = myTable.columns[1].cells[2].insertionPoints[0];          
            var R3 = cell2OfColumn2insertionPoint1.textVariableInstances.add(LocationOptions.AFTER, cell2OfColumn2insertionPoint1);            
                R3.associatedTextVariable = doc.textVariables.itemByName("CLN");         
            var cell3OfColumn2insertionPoint1 = myTable.columns[1].cells[3].insertionPoints[0];        
            var R4 = cell3OfColumn2insertionPoint1.textVariableInstances.add(LocationOptions.AFTER, cell3OfColumn2insertionPoint1);            
                R4.associatedTextVariable = doc.textVariables.itemByName("Modification Date");       
            var cell4OfColumn2insertionPoint1 = myTable.columns[1].cells[4].insertionPoints[0];       
            var R5 = cell4OfColumn2insertionPoint1.textVariableInstances.add(LocationOptions.AFTER, cell4OfColumn2insertionPoint1);            
                R5.associatedTextVariable = doc.textVariables.itemByName("Output Date");       
            var cell5OfColumn2insertionPoint1 = myTable.columns[1].cells[5].insertionPoints[0];      
            var R6 = cell5OfColumn2insertionPoint1.textVariableInstances.add(LocationOptions.AFTER, cell5OfColumn2insertionPoint1);            
                R6.associatedTextVariable = doc.textVariables.itemByName("Creation Date");         
            }        
          
          
    //  Computer User Name          
            function getLogInUserName()        
         {        
              
             var userNameOSX = $.getenv("USER");        
             var userNameWindows = $.getenv("USERNAME");        
                    
                if(userNameWindows == null){return userNameOSX}        
                else{return userNameWindows};        
                    
            }        
    // Application Name           
            function getAppUserName() 
            {        
                return app.userName;        
        }
    

    Thanks for any help you can give.  I had the 'progress bar' above ScriptUI for Dummies, I believe that sound of Peter.

    Have you tried to add a statement of w.update () after each time that the progress bar is incremented? (See the bug progress bar.) (Summary of the situation) )

    Ariel

  • from mac gray screen and progress bar goes to about half way and then stops

    from mac gray screen and progress bar goes to about half way and then stops

    It's probably failed hardware, take the machine to an Apple authorized service provider and get that fixed. You can locate one in your area by clicking on the Service Provider Locator authorized Apple

  • iPad 2 Mini stuck on the progress bar with the Apple logo and progress bar is not loaded, his impasse

    I pressed on restart all the settings on my iPad Mini 2, so it loaded but it drained. So I rebooted it until he turned back when he turned his back, it was still showing the progress bar, but it was quite moving. I tried to hold down the lock button and the home button, but still, it loads, its stuck on the progress bar and did not progress. I tried to connect to my computer to connect to itunes, but it does Duke host because its deadlock on the progress bar with the apple logo.  .pls help me!

    Try restoring your backup and recovery mode: If you cannot update or restore your iPhone, iPad, or iPod touch - Apple Support

  • MacBook Pro opens to the screen and progress bar gray, freezes when the progress bar ends. Have tried several options to get into safe mode and suggested strikes, but can't. Any suggestions?

    MacBook Pro opens to the screen and progress bar gray, freezes when the progress bar ends. Have tried several options to get into safe mode and suggested strikes, but can't. Any suggestions?

    Here are some links from Apple which may help

    How to choose a boot on your Mac - Apple Support drive

    On the screens, you see when you start your Mac - Apple Support

  • Firefox 4 seems to have forgotten the small progress bar at the bottom right of the screen that shows how close you were to get the web site that you just clicked to retrieve. What happened to him?

    In older versions of Firefox, there was a small rectangular window at the bottom right of the screen which got progressively filled with green squares, that your last order has been processed. This allowed you to know that the computer had received the order and close about how it would carry out the requested task. No such window does appear in Firefox 4. That has been omitted or what I have to do something to get it back?

    Click on View - Toolbars - then the module Bar, and your progress bar will be there.

  • Stuck on Start Up Apple screen logo with 50% progress bar, tried everything. Help, please!

    Hello world. I'd appreciate it really all the advice that you can offer me to help me fix my laptop. I have a mid-2010 Pro 2.4 GHz Core 2 Duo Macbook running OS X Yosemite. A year ago, he started trolling a lot, so replaced the HDD with a Samsung 850 EVO 120 GB SSD internal 2.5 inch SATA III. He works much better since.

    A few days ago, I bought a Google Chromecast and had set up with my MBP. Subsequently, he began trolling and I noticed there are apps in the Launchpad, that I had never downloaded (reader of Google, Gmail, Youtube, etc.). I could not remove these applications or drag them to the trash. Concerned, I decided to back up my files on a USB key and re - install the OS X.

    However, during the priming of the MBP, it is stuck on the Apple logo screen, with the bar never go beyond 50%. (Photo: http://postimg.org/image/66qh6x633/)

    What I tried:

    PHASE 1 (Before reformatting)

    -Safe Mode: Button power button and shift held down. Hit or miss, worked 1-2 times, but when I reboot, is again stuck at the Apple logo.

    -Reinstall OS X: CMD + R; After 15-20 minutes get to OS X utility screen; Reinstalled OS X Yosemite; 7 hours to reinstall - but when the mbp restarts to complete the installation, it is stuck at the Apple logo again.

    -Reformatting: CMD + R; 15-20 minutes get to OS X utility screen (several reboots to work); Select repair for all discs/drives (Samsung SSD, HD Recovery). Exit said that both are very good; Select clear to HD recovery. When this was done, I tried to reinstall OS X Yosemite, but the MBP shuts down suddenly. When I turned on it again, it is returned to be stuck on the loading screen Apple logo. Attempt to restart after 15 +, but same result every time.

    PHASE 2 (After reformatting).

    -Power-> CMD + R = blocked screen Apple logo with 50% progress bar

    -Power-> Option = shows 2 player and free Wi - Fi area (Pic: http://postimg.org/image/58qi2j1vl/); Have you tried all the combinations, but regardless, always gets stuck at the screen of the Apple logo to 50% complete, after an hour, I suddenly hear ' to use English as the main language... ". ", but the screen is still stuck. I left it on 36 hours once and nothing has changed

    -Power-> Shift = error (Pic: http://postimg.org/image/tahklsvy1/); Keep restarting or shows some other error (Pic: http://postimg.org/image/thstc6b59/) and restart. Never crosses.

    Tried other things:

    -Reset PRAM: When restarting MBP, is stuck at the Apple logo screen, 50% progress bar

    -Reset SMC: Stuck on the Apple logo screen for a long time and then the screen turns off, but the laptop is still on. When I press Caps Lock, the indicator light lights up. Also, after some time, I again hear "to use English as...". "even if the screen is off. No matter what I press, it does not wake up to the screen.

    Note:

    -The bottom of the laptop feels hot (maybe), but I do not hear the drive in motion.

    I am trying to save my mbp because I can't get a new one for a few months. Any advice/help is greatly appreciated! Thank you very much!!!

    P.S.: I only am not too computer savvy, please use everyday words words/non-tech, when possible, thank you!

    Remove the SSD and install it in a closed Chamber.  Connect it to the MBP via USB.  It will start?

    Ciao.

  • When I select a sequence of five frame to render HDR in Lightroom it merges files in a preview very well. But when I click on the Merge option, the progress bar is obstruction of about 42% complete. I suspect a memory problem, so I spent a few hours Unite

    When I select a sequence of five frame to render HDR in Lightroom it merges files in a preview very well. But when I click on the Merge option, the progress bar is obstruction of about 42% complete. I suspect a memory problem, so I spent a few hours uninstalling a bunch of useless software on my laptop and still photography will not merge the HDR sequence. It worked once before, but now it does not work. Help!

    I just 8 GB of RAM and have been able to put together five separate images HDR images. I compared these files 5-image HDR with files - 2 and 3-image and see improvement very few (if any) using all five. Your results may vary, but you can try to reduce the number of images until you get your new laptop.

  • Try to install the apps CC, progress bar stuck

    I spent most of my day trying to get the Cloud Creative desktop application installed (I had now create a new user on my computer that has apparently fixed that), and when I tried to install hearing as a test, the progress bar is stuck at 40%. Since he was going nowhere, I tried to cancel it, but it got stuck on the cancellation for centuries. So what I did close the app, put an end to all Adobe processes and open Office CC again. He crashed twice, and then I tried to run as an administrator. It is now running, but my download of hearing is now stuck at 11 percent without obvious reason.

    Anyone had similar problems? Is it possible to fix it? (I tried to delete the adobe files in %AppData%).

    This is a 64-bit computer if running on what should be fully updated Windows 7 with 8 GB of RAM and an i5 4670K.

    Well for some reason, it now works perfectly and everything is installed, I don't know what was going on.

  • Download mail and progress bar does not.

    New installation Win 8.1 and tuberculosis 24.5.0 with IMAP email server and there are no Add-ons installed. No solution on the web searches or forum.

    So far, the issue was seen in Win 7, where the progress bar has been distorted on a classic theme but not an Aero theme. In Win 8, the default themes are similar to the Win 7 classic themes, and there is no default Aero themes.

    However, TB works very well by about 8.1 win a classic or a custom theme. If, as a test, you need to install (just) a theme customized Windows site, I wonder if you would see any difference with TB.

  • Grey screen with progress bar stuck while refreshing at 10.11.3... any suggestions?

    My screen grey remains with the progress bar stuck on this update... suggestions?

    Mac Pro 2012 (5.1)

    Install the update or you complete the update and it is restarted before?

    If this is the first installation and it has stopped progress on waiting for installation remove all external devices from your computer except for the mouse and keyboard. If the computer responds you will need to determine if one of these devices is the origin of the problem. If disconnect these devices has nothing to restart and reset the VNRAM with these disconnected devices.

    https://support.Apple.com/en-us/HT204063

    If OS X 10.11.3 was already successfully installed before that date and you can't go past the gray screen, now you must restart in safe mode

    Try safe mode if your Mac does not end commissioning - Apple Support

    If it fails, disconnect all external devices, as recommended above, and repeat the process.

    If the computer restarts in safe mode but not normal boot with those external devices separated you may wish to provide us with a report of etrecheck to determine if a software is causing the problem.

    http://etrecheck.com

    Of the likely reasons for software are any application of third party for 'cleaning', 'keep' or otherwise 'anti-virus' packages which are known to the troublemakers on mac OS and must be uninstalled. AV of Mac isn't Windows AV, it is not necessary at the moment and has been cited as a cause of the incompatibility of the system and offers no real protection from the root.

  • When I open Windows mail, I start to get the mail and I get it about 474 243. And then an error saying Windows mail will be closed because of an error.

    Windows mail - error and the same letter over and over again.

    When I open Windows mail, I start to get the mail and I get it about 474 243. And then an error saying Windows mail will be closed because of an error. And I start it again and I get the SAME email AGAIN, and again, it stops somewhere and closes.

    Anyone know what could be the problem?

    You can try to set up a new e-mail account and use the exact settings of the account that you have now.  This way, you will have a copy of the same account.  Then see if it has the same problem.  If it works and is not old, and then see if the old man works after this and remove one of them, if you do not receive the messages in doubles.

    If the new copy of account has the same problem, then it's a stuck message and your courier company should fix this.

    Steve

  • Vista will not start - stuck on the progress bar with MS logo

    Yesterday afternoon, my HP desktop PC would not initialize. The progress bar would be continually scroll down with MS logo, and it will never change. I tried unplugging all USB ports and running system recovery. This morning, the PC said something to the tune of «this machine could not be restored...» If you have recently made a hardware change try to return to your old configuration. If problems persist, please contact your administrator. »

    We had the machine for about 18 months with no problems at all. It is equipped with AMD processors and is running 32-bit Vista Home Premium. I currently have anti-virus protection of software and spyware. I don't think that the office came with a recovery CD. There is a restore disc but I don't know if that was consulted. I tried to boot normally and repair the command prompt startup files with no luck.

    I hope that we bought the extended warranty from Staples, but meanwhile information or suggestions would be greatly appreciated.

    Thank you

    lucasmartin,

    The Advanced Boot Options menu lets you start Windows in advanced troubleshooting mode. You can access the menu by turning on your computer and pressing the F8 key before Windows starts. Try the loads up in safe MODE , there may be some drivers that are corrupt or using last known good Configuration.

    For more information http://windowshelp.microsoft.com/Windows/en-US/Help/f9c50a72-04ec-4088-9fd4-a4f979eef5a71033.mspx#EAF

    Engineer Support Justin M. Microsoft Answers visit our Microsoft answers feedback Forumand let us know what you think.

Maybe you are looking for

  • Suggestions for the best multi-column Favorites

    I have several folders and several bookmarks in each folder. Before you start to experiment, I was wondering if anyone can suggest a good add-on which provides multicolumn bookmarks.Is there a generally preferred? Thank you.

  • Unexpectedly on my Mac

    10.8.2 retina macbook pro 2.6 ghz intel core i7, 16 GB 1600 MHZ Logs you have requested, attached. It is obvious that you guys created bugs on the way (I'm not the only person to post on this) and yet you make us do all the work, miss scheduled meeti

  • Digital I/o

    Can you 'measure' a 1 kHz, 3VDC square on a digital port of a PXI6723?  I try to make sure that the connection is good so I'm sending you the (sq) waveform analog on through a differential driver/receiver circuit and back into the DIO.  I test the si

  • HP Officejet Pro L7590 habit of scanning

    That is the problem. I connected two desktops from HP L7590. A USB cable and the other through network. I have tried almost everything, but the solution Center still does not work. You can open it, but when you click the scan icon it displays an erro

  • Laptop to TV screen? ThinkPad R52

    Hi I was wondering if theres anyway to connect my laptop to a TV to display whatevers on the laptop? I have a thinkpad R52 model.