Computer slows down while downloading files using Safari version 4.0.3

I experience some performance issues while downloading files from the internet.
The system performance/responsiveness is perfect until starting the download process.
E.g. opening the finder takes noticeably more time.
However, the worst is moving the mouse (bluetooth mighty mouse). It's hard to explain, but during a download there's a lag which could be compared to decreasing the mouse sensitivity to a minimum.
Maybe someone could help me with that...
Thanks a lot!

HI and Welcome to Apple Discussions...
Check to see how much free drive space there is on the MacBook.
Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. *Make sure you always have a minimum of 10% to 15% free disk space at all times.*
If you need to free up disk space, go here for help.
http://www.thexlab.com/faqs/freeingspace.html
Could be an underlying issue with the hard disk. Boot from your install disk and run Disk Utility.
Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
Go to Installer menu and launch Disk Utility.
Select your HDD (manufacturer ID) in the left panel.
Select First Aid in the Main panel.
*(Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)*
Click Repair Disk on the bottom right.
If DU reports disk does not need repairs quit DU and restart.
If DU reports errors Repair again and again until DU reports disk is repaired.
When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
Select your start up disk and click Restart
Carolyn

Similar Messages

  • Problem downloading files using Safari

    I am using Macbook with Snow Leopard 10.6.3 and Safari Version 4.0.5 (6531.22.7) . I am having this wiered issues where i cant download anything from the internet and it seems like nothing. becausei tried firefox to yahoo messenger and nothing happens.
    Eg: This is page where it gets stuck and nothing downloads
    http://3347-mozilla.voxcdn.com/pub/mozilla.org/firefox/releases/3.6.3/mac/en-US/ Firefox%203.6.3.dmg it keeps saying loading with the wheel spinning but nothing never downloads.
    Can someone help me with this issue because my laptop is useless without me being able to download or install stuff that i need to use

    Has this ever worked? If so, when did the problem start?
    Did you install/update anything at about the time the
    problem started? Does it happen on all downloads or just
    some? It not all, what are the types of file downloads
    that fail and which ones succeed?
    Dave

  • [SOLVED]Whole computer slows down while lots of ongoing I/O operations

    Hello
    It's an issue bugging me from quite a long time, so finally I decided to share my anxiety :-D
    Is it normal that both desktop environment actions (clicks, moving windows around, even moving the cursor) and keyboard input slows down when disk is under heavy load? It happens for example when I try to unpack something from a big archive or load a big file in a program. Whole computer runs then like Crysis on 512MB RAM, for me it's unusable. I think my config is the key here, so here it is:
    Linux asus.k50in 2.6.34-zen2-ARCH-20100812-stable-06977-ge2287d6 #8 ZEN SMP PREEMPT Thu Aug 12 20:54:24 CEST 2010 x86_64 Intel(R) Core(TM)2 Duo CPU T6600 @ 2.20GHz GenuineIntel GNU/Linux
    GeForce 102M 512MB
    XFS filesystem on every partition.
    KDE4.5.1 + all available updates.
    Thanks in advance for any hints.
    Last edited by bfo (2010-09-14 17:33:13)

    * Amount of RAM?
    * Do you have a swapfile or -partition?
    * What do you see in the output of 'top' when this happens?
    * Do your logs tell you/us something?
    I have never seen this behaviour. It is normal, f.e. on an older machine that when doing a pacman -Sy, the system is less responsive or that (even on a newer system) when copying large amounts of data from one HD to another that file operations are slowed down. It is not normal that your desktop is affected by this.

  • Computer shuts down while downloading Itunes

    Every time I start to download the new version of Itunes it shuts down my computer. No blue screen or error messages, and my computer starts back up just fine. It also freezes on the last step while syncing my Iphone. I've uninstalled and reinstalled Itunes numerous times and no changes. Please help this is becoming very anoying!

    In the course of your troubleshooting to date, have you worked through the following document?
    Apple software on Windows: May see performance issues and blank iTunes Store

  • How to create column header text while downloading file

    How can we create column header text while downloading file using function GUI_DOWNLOAD(in SAP Release 4.6c) because there is no FIELDNAMES parameter in
    4.6c version.

    Hii,
      Check this sample code. I have called GUI_DOWNLOAD twice. Onetime to download header of table and next time data of table
    REPORT  z_file_download.
    DATA: w_name(90) TYPE c.
    DATA:
      BEGIN OF fs_flight,
        carrid   LIKE sflight-carrid,
        connid   LIKE sflight-connid,
        fldate   LIKE sflight-fldate,
        price    LIKE sflight-price,
        currency LIKE sflight-currency,
      END OF fs_flight.
    DATA:
      BEGIN OF fs_head,
        carrid(10) TYPE c,
        connid(10) TYPE c,
        fldate(10) TYPE c,
        price(10) TYPE c,
        curr(10) TYPE c,
      END OF fs_head.
    DATA:
      t_head LIKE
       TABLE OF
             fs_head.
    DATA:
      t_flight LIKE
         TABLE OF
               fs_flight.
    fs_head-carrid = 'CARRID'.
    fs_head-connid = 'CONNID'.
    fs_head-fldate = 'FLDATE'.
    fs_head-price  = 'PRICE'.
    fs_head-curr   = 'CURRENCY'.
    APPEND fs_head TO t_head.
    SELECT-OPTIONS:
      s_carrid FOR fs_flight-carrid.
    START-OF-SELECTION.
      SELECT carrid
             connid
             fldate
             price
             currency
        FROM sflight
        INTO TABLE t_flight
       WHERE carrid IN s_carrid.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                  =
        filename                      = 'D:\flight.xls'
       FILETYPE                      = 'ASC'
    *   APPEND                        = ' '
        WRITE_FIELD_SEPARATOR         = 'X'
    *   HEADER                        = '00'
    *   TRUNC_TRAILING_BLANKS         = ' '
    *   WRITE_LF                      = 'X'
    *   COL_SELECT                    = ' '
    *   COL_SELECT_MASK               = ' '
    *   DAT_MODE                      = ' '
    *   CONFIRM_OVERWRITE             = ' '
    *   NO_AUTH_CHECK                 = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   WRITE_BOM                     = ' '
    * IMPORTING
    *   FILELENGTH                    =
      tables
        data_tab                      = t_head
    EXCEPTIONS
       FILE_WRITE_ERROR              = 1
       NO_BATCH                      = 2
       GUI_REFUSE_FILETRANSFER       = 3
       INVALID_TYPE                  = 4
       NO_AUTHORITY                  = 5
       UNKNOWN_ERROR                 = 6
       HEADER_NOT_ALLOWED            = 7
       SEPARATOR_NOT_ALLOWED         = 8
       FILESIZE_NOT_ALLOWED          = 9
       HEADER_TOO_LONG               = 10
       DP_ERROR_CREATE               = 11
       DP_ERROR_SEND                 = 12
       DP_ERROR_WRITE                = 13
       UNKNOWN_DP_ERROR              = 14
       ACCESS_DENIED                 = 15
       DP_OUT_OF_MEMORY              = 16
       DISK_FULL                     = 17
       DP_TIMEOUT                    = 18
       FILE_NOT_FOUND                = 19
       DATAPROVIDER_EXCEPTION        = 20
       CONTROL_FLUSH_ERROR           = 21
       OTHERS                        = 22
    IF sy-subrc NE 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = 'D:\flight.xls'
          filetype                = 'ASC'
          append                  = 'X'
          write_field_separator   = 'X'
        TABLES
          data_tab                = t_flight
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.
      IF sy-subrc EQ 0.
        MESSAGE 'Download successful' TYPE 'I'.
      ENDIF.
      IF sy-subrc NE 0.
    *  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Regards
    Abhijeet

  • Mac os x 10.6.8 why do the fans keep coming on and computer slows down

    mac os x 10.6.8 - Why do the fans keep coming on and computer slows down with coloured circle.

    Use your Activity Monitor, sort the %CPU column to identify what process is hogging your resources.

  • I can not download any files using Safari ? when I choose to download application file the URL include the file name and stop responding. Any help??

    I can not download any files using Safari ? when I choose to download application file the URL include the file name and stop responding. Any help??

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in Mac OS X 10.7 or later, then you can’t enable the Guest account. The Guest login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    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. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    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.
    *Note: If FileVault is enabled under Mac OS X 10.7 or later, you can’t boot in safe mode.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • I am having issues related to storage and I believe this is causing my computer to slow down. "Other" files part is the major occupier(180 GB). I have done Omni disk and multiple other cleaning(iTunes-device, restart, etc), yet have not been able to empty

    I am having issues related to storage and I believe this is causing my computer to slow down. "Other" files part is the major occupier(180 GB). I have done Omni disk and multiple other cleaning(iTunes-device, restart, etc), yet have not been able to empty any more space, nor to speed up my computer? Any suggestions? All your contributions are welcomed. Thanks. Mehmet Mazhar Celikoyar

    Below is the result:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2009)
              MacBook Pro - model: MacBookPro5,3
              1 3.06 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              NVIDIA GeForce 9400M - VRAM: 256 MB
              NVIDIA GeForce 9600M GT - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    Startup Items:
              HP IO - Path: /Library/StartupItems/HP IO
    System Software:
              OS X 10.9 (13A603) - Uptime: 3 days 22:8:6
    Disk Information:
              ST9500420ASG disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (220.49 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS23N 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.rim.driver.BlackBerryUSBDriverInt          (0.0.64)
              com.livedrive.filesystems.livedrivefs          (2.1.14)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.adobe.versioncueCS4.plist
              [loaded] com.creativebe.MainMenuHelper.plist
              [loaded] com.macpaw.CleanMyMac2.Agent.plist
              [loaded] com.magican.castle.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [loaded] com.rim.BBDaemon.plist
              [failed] com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist
    Launch Agents:
              [loaded] com.adobe.CS4ServiceManager.plist
              [loaded] com.hp.messagecenter.launcher.plist
              [loaded] com.hp.productresearch.plist
              [loaded] com.rim.BBLaunchAgent.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [failed] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist
              [failed] com.macpaw.CleanMyMac2Helper.scheduledScan.plist
              [failed] com.macpaw.CleanMyMac2Helper.trashWatcher.plist
              [failed] com.UninstallerTool.plist
              [failed] com.VolumeWatcherTool.plist
              [failed] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
              BlackBerry Device Manager
              HP Scheduler
    3rd Party Preference Panes:
              Adobe Version Cue CS4
              DC30 Xact Driver Panel
              Flash Player
              Flip4Mac WMV
              Perian
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              OfficeLiveBrowserPlugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
              OctoshapeWeb.plugin
    Bad Fonts:
              None
    Time Machine:
              Mobile backups: OFF
              Auto backup: NO
              Volumes being backed up:
                        Macintosh HD: Disk size: 499.25 GB Disk used: 278.75 GB
              Destinations:
                        TOSHIBA EXT [Local] (Last used)
                        Total size: 2 TB
                        Total number of backups: 5
                        Oldest backup: 2013-10-24 23:21:31 +0000
                        Last backup: 2013-10-25 02:59:08 +0000
                        Size of backup disk: Excellent
                                  Backup size 2 TB > (Disk size 499.25 GB X 3)
    Top Processes by CPU:
                   3%          WindowServer
                   1%          EtreCheck
                   1%          Microsoft PowerPoint
                   0%          BBLaunchAgent
                   0%          fontd
                   0%          aosnotifyd
    Top Processes by Memory:
              168 MB             Microsoft PowerPoint
              123 MB             Safari
              86 MB              Mail
              74 MB              WindowServer
              45 MB              com.apple.WebKit.Networking
              45 MB              com.apple.WebKit.WebContent
              41 MB              Finder
              41 MB              PluginProcess
              41 MB              mds_stores
              33 MB              Notes
    Virtual Memory Statistics:
              72 MB              Free RAM
              1.27 GB            Active RAM
              1.24 GB            Inactive RAM
              667 MB             Wired RAM
              2.58 GB            Page-ins
              111 MB             Page-outs

  • TS1717 While downloading the latest iTunes version, my computer turned off. When I opened iTunes, it says that "The file "iTunes Library.itl"  cannot be read  because it was created by a newer version of iTunes" Help please :(

    While downloading the latest iTunes version, my computer turned off. When I opened iTunes, it says that "The file "iTunes Library.itl"  cannot be read  because it was created by a newer version of iTunes" Help please

    That message is usually a sign that you tried to roll back to an earlier build of iTunes, but occasionally I've seen it connected to a new upgrade. This technique should fix things.
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • How do I download PDF files using Safari.  All I get is a black screen.

    How do I download PDF files using Safari.  All I get is a black screen.

    Back up all data.
    Quit Safari. In the Finder, select Go ▹ Go to Folder... from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then launch Safari and test.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Computer slows down more each time I print a PDF. It reverts to a reasonable speed if I restart the computer. Everything worked normally until I installed Avast Virus Protection.

    I have Windows XP and Adobe Reader XI. My printer is a Ricoh Aficio 240W.
    My computer normally lacks internet access. I briefly connected it to the internet to install the full version of Avast Antivirus, then disconnected it from the internet again, and it has been disconnected from the internet since.
    After I installed Avast the computer began acting screwy when I printed PDF files. I uninstalled Avast but the screwiness continues.
    The image in the upper left corner was taken after doing one printing of a PDF file. I'm pretty confident AcroRd32.exe. is Adobe Reader. Notice that after running one print Adobe Reader is using about 50 CPU's.
    The image to the right of that was taken after doing two printings of a PDF file. Notice that after running two prints there are two AcroRd32.exe processes using 50 CPU's.
    The image below the other two was taken after doing three or four printings of a PDF file. Notice that after three printings one AcroRd32.exe process is using 50 CPU's and two others are using about 25. After about three printings my computer slows down dramatically, and it keeps getting slower the more prints I do.
    When I restart the computer it reverts back to normal. Can anyone think of a better solution to this problem of increasing slowness than restarting the computer every two PDF prints?
    My computer currently has no virus protection, although Windows Firewall is up. Someone at Avast I briefly mentioned this too thinks this should not happen and he was wondering if the computer has some sort of virus...but before I removed Avast it told nothing about viruses that I know of. I honestly do not know if anyone scanned the computer with Avast before removing Avast, but I suspect it was scanned before the removal of Avast. I suppose this could be the result of some virus...but then the computer behaves quite normally, except when I print PDFs. I'm wondering if Avast changed some settings in my printer program or Adobe programs....
    I have CCleaner. Every time I analyze my computer to look for stuff to remove to speed up the computer it shows Internet Explorer history files, and sometimes Internet Explorer temporary internet files despite not being online. If I click on Internet Explorer to go onto the internet, I am told I am working offline.
    Thanks. Guesses are welcomed.

    Note that regarding this section:
    The image in the upper left corner was taken after doing one printing of a PDF file. I'm pretty confident AcroRd32.exe. is Adobe Reader. Notice that after running one print Adobe Reader is using about 50 CPU's.
    The image to the right of that was taken after doing two printings of a PDF file. Notice that after running two prints there are two AcroRd32.exe processes using 50 CPU's.
    The image below the other two was taken after doing three or four printings of a PDF file. Notice that after three printings one AcroRd32.exe process is using 50 CPU's and two others are using about 25. After about three printings my computer slows down dramatically, and it keeps getting slower the more prints I do.
    The layout changed when I posted. Therefore, what I mean by the image in the upper left corner is the image at the top. What I mean by the image to the right of that is the image in the middle of the other two. What I mean by the image below the other two is, of course, the image at the bottom.

  • Where on my computer does Firefox put downloaded files?

    Where on my computer does Firefox put downloaded files? I need to use them.

    Hello Dan.
    This question can have many answers. If you selected, as you downloaded the file, a custom place to place the download, Firefox will have stored the file there (if the download was successfully completed). If you forgot where it was, you can go into Tools > Downloads, rightclick the file you want, and select "Open Containing Folder".
    If Firefox did not ask you where to save the file, you go into Tools > Options > General and select the location where Firefox will store your downloads. Here, you can also configure it to ask you every time you choose to save a download. As before, you can go into Tools > Downloads and ask for the containing folder.
    If you simply opened the download without asking Firefox to save it, it's possible that you can still access your file (if you did not close Firefox in the meantime). Files are are opened and not stored, are temporarily placed in a cache folder so you can use it while your Firefox session lasts. Simply go into Tools > Downloads, and, as before, ask for the containing folder. From there, you can copy/cut the file and paste it anywhere you want.

  • Error occurred while downloading files from Administration Server...

    Hi guys,
    If i already have my application deployed and exploded in ../tmp/_WL_user , when I restart the managed server it will try to download again the files from the upload directory in the Administration Servers? (I'm using stage mode).
    Sometimes I got the following error:
    Caused By: java.io.IOException: [DeploymentService:290066]Error occurred while downloading files from Administration Server for deployment request "0". Underlying error is: "null"
    and I already have the war exploded in /tmp/_WL_user
    the staging mode is not only for the first deployment? when i don't have the war exploded in /tmp/_WL_user?
    I've some confusion related to the process or deployment/startup of the managed servers.
    Thanks

    Hi,
    when you get following error * DeploymentService:290066 * then that means
    A service on the machine is preventing the WebLogic Server remote instance from downloading the configuration file. This can be Hosts Intrusion Prevention (HIPS) agents or any other agent causing this issue.
    Disable the agent interfering with the download process to fix this issue.
    Regards,
    Kal

  • [Solved]Computer slow down and freeze during data transfer syncing

    Hello,
    Everytime I make a data transfer, my computer slow down, and sometimes freeze during a few seconds, work for a fraction of seconds and freeze again. I don"t understand why.
    As an example, here is a bench of files i transfered during a syncing with Grsync
    It took about 12h to sync 64Gb.
    I've read a lot of topics talking about this problem but nothing works. I tried to switch off the SWAP and setting the vm.dirty_ratio and vm.background_dirty_ratio but nothing works.
    I'm making the trasfer between two Western Digital USB 2.0 external hard drive in NTFS.
    Does anyone know how to fix this?
    Thanks in advance
    Last edited by Neldar (2015-03-04 15:54:29)

    It seems it was beacause one of my external hard drive was about to die. I performed the same operation with 2 Western Digital external hard drive 1To USB3 and it works perfectly.

  • Computer shuts down while loading the progress-bar

    SPECS:
    MacBookPro 13-inch
    Early-2011
    I recently installed Yosemite in my computer, hours later while I was using the new OS X my computer freezed. I held the power button and it turned off. Now, I'm trying to power on the computer and when the progress bar is in 50% the computer turns off.
    I need help ASAP

    rthec wrote:
    I've seen some of the threads regarding this but none of the fixes work for me.  I formatted my hard drive for reasons other than this so it has a fresh install of Windows XP Home Edition, the latest video drivers, and the latest Flash.  When my wife plays Cityville or Castleville, her computer shuts down.  I checked the system logs and nothing is there regarding the shutdown.  I tried changing the hardware exiliration setting and that didn't help.  We've tried the games on Firefox and IE 8 with the latest updates and it still doesn't work.  Any help will be appriciated.
    The operating system, XP in this particular case, will shutdown the system to prevent damage to hardware if it encounters an instruction which can damage the system. It will usually logs an event which you can view by clicking Start, then in the Run field, type eventvwr.msc and click OK. Then open the both the "System" and "Application" submenus and look for events which are prefixed with a white X inside a red circle. The 6th column from the left will contain the Event ID which can be used to try and track down the source of the problem.

Maybe you are looking for