WD MyBook - how to keep it on all the time?

Hello,
I have 2 hard drives by WesternDigital (the MyBook series), and when they aren't in use, they turn off after some time. Is there a way to stop that and keep them on all the time?
My problem is that, when they are turned off (or in sleep mode - who knows, what it is), and I want to use Finder or open a dialog "Add photos" in for example Facebook, I have to wait pretty long until they turn on again.
Cheers,

Erase and reformat them. That should remove the WD SmartWare crapola which isn't and let you control the HDs via the EnergySaver prefPane. If erasing and reformatting them doesn't do the trick, see http://wdc.custhelp.com/app/answers/detail/a_id/1376. FYI, I never sleep HDs.
27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10.2), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

Similar Messages

  • How do I download the previos software iOS 6? I have the iOS 7 and my iPhone 5S gold keeps turning off all the time!

    How do I download the previos software iOS 6? I have the iOS 7 and my iPhone 5S gold keeps turning off all the time!

    Sorry, downgrading isn't supported by Apple.
    what troubleshootings steps have you done to try to resolve your issue?

  • My macbook air has gotten slow this past week i have changed browsers and the beach ball keeps coming up all the time and on a game i play it says the network is slow can anyone help me?

    my macbook air has gotten slow this past week i have changed browsers and the beach ball keeps coming up all the time and on a game i play it says the network is slow can anyone help me

    Go step by step and test.
    Restart the router. Restart the computer.
    OS X 10.7 Lion / 10.8. Mountain Lion
    http://support.apple.com/kb/PH3915
    Start up in Safe Mode.
    http://support.apple.com/kb/PH4373
    Repair Disk
    Steps 1 through 7
    http://support.apple.com/kb/PH5836?viewlocale=en_US
    Reset SMC.
    http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Increase Disk Space
    http://support.apple.com/kb/PH10677?viewlocale=en_US
    Best.

  • My iPad mini keeps restarting randomly all the time

    My iPad mini keeps restarting randomly all the time, I already restored it to manufacturer settings, help! This started about a week ago, and I can't take it to Apple because I got this Christmas 2012. I already reset it all, and it still keeps restarting.

    I had the same problem.  I ended up restoring to the factory settings using the method:
    1. connect usb to computer
    2. hold down home button and connect cord to ipad...continue holding down home key until connect to itunes appears on screen, then release
    3. restore to factory settings
    I lost all my pictures and data, but the ipad works again. Such a pain! Not happy about this at all!

  • Please help my mac is so slow coming up and going to different places. the flower keeps coming up all the time.

    Please help my mac is so slow coming up and going to different places. the flower keeps coming up all the time?????

    I'm having this problem but only online. I've confirmed that it is the computer (2007 MacBook), and it only happens when I'm using wi-fi connection. My other MacBook (2010) is connecting with wi-fi fine, and when I plug this MacBook into the ethernet connection it is also doing fine. I've re-started, check the memory, deleted cookies, histories, gone as far as uninstalling and re-installing browswers. Used the System Preferences network diagnostics and got an "all good". Ideas appreciated.

  • The connection between my iMac (8.1) and Airport express keeps dropping out all the time., The connection between my iMac (8.1) and Airport express keeps dropping out all the time.

    The connection between my iMac (8.1) and Airport express keeps dropping out all the time., The connection between my iMac (8.1) and Airport express keeps dropping out all the time.

    Hi BillCilla,
    If you are having intermittent but persistent drops in AirTunes via your AirPort Express, you may find the following article helpful:
    Apple Support: AirTunes audio stream drops or cuts out
    http://support.apple.com/kb/ta21538
    Regards,
    - Brenden

  • Siri keeps poping up all the time

    HI!
    I'm using iPhone5 with the latest software version, iOS 7.1.2. Last week, siri keeps poping up all the time even I didn't use the phone, just put on the table. firstly, I check the raise to speak option, that can use siri by raising the phone to the ear, without pressing the home button, but it isn't turn on. I can't find the way to stop siri to annoying me, so I just turn of the siri. However, even the siri is gone, voice control comes replace. Now, my phone start to play the music automatically. After that, when I press the sleep button, the phone will capture the screenshot right away. Finally, I realize the what is the problem of this issue. I have faced with the voice control and capture screenshot before in iPhone4, and the problem is that the the home button is stuck or being held. Therefore, I went to the repair center to change the new home button, and now my phone return to normal.
    Come to share some experience, and I hope that it can be a guideline or solution for others who face the same problem.

    I am discussing similar issues in a separate thread: http://discussions.apple.com/thread.jspa?threadID=1333938&tstart=0
    I found one or two such postings in Finder/Dock discussion group also. I feel it is a bug in Leopard but Apple support is not acknowledging it.

  • How to keep track of all the classes/methods/properties created in a long script

    Hi,
    I'm curious to know what method people use to keep track of all the classes, methods, and properties you've created when writing a longer script.
    For quick scripts, this isn't a problem. But for long scripts it can get quite difficult to keep track of all the objects one has created, and all their methods and properties, and overloaded constructors, etc.
    ESTK is great, and it's the IDE I use for InDesign scripting, if only because of it's powerful debugging options.
    But it doesn't provide any way of keeping track of this stuff. No proper Intellisense as in Visual Studio.
    I'd be interested to hear how people solve this issue.

    Hi Ariel,
    Not sure it is relevant to your question but I have an old snippet that collects and displays ExtendScript references using $.list(). This may help to track some object relationships.
    // WARNING: this is just a WIP -- Not tested in all platforms and versions
    $.scanRefs = function scanRefs(/*0|1*/showAll)
        var s = $.list(),
            p = (!showAll) && s.indexOf('[toplevel]'),
            a = ((!showAll) ? s.substr(0,10+p) : s).split(/[\r\n]+/),
            n = a.length,
            // --- Address:1     L:2  Rf:3   Pp:4  Type:5  Name:6
            re = /^([0-9a-z]{8}) (.) +(\d+) +(\d+) (.{10}) (.{1,17})/,
            reTrim = / +$/,
            i, t, k, m,
            refBy, type, name, tag, rest, rfCount, props, j,
            o = {},
            TYPES = {'Function':"FCT", 'Object':"OBJ", 'Array':"ARR", 'RegExp':"REG"};
        for( i=2, refBy=0 ; i < n ; ++i )
            s=a[i];
            while( s && m=s.match(re) )
                k = '&'+m[1].toUpperCase();
                rfCount = parseInt(m[4],10);
                rest = s.substr(m[0].length);
                type = m[5].replace(reTrim,'');
                name = m[6].replace(reTrim,'');
                if( 0x5B==rest.charCodeAt(0) )
                    p = rest.indexOf(']');
                    tag = rest.substr(0,1+p);
                    rest = rest.substr(1+p);
                else
                    tag = '';
                if( 0x20==rest.charCodeAt(0) )
                    rest=rest.substr(1);
                if( p=!(rest.indexOf("referenced by:")) )
                    rest = rest.substr(14);
                o[k] || (o[k] = {
                    locked:        +('L'==m[2]),
                    rfCount:    parseInt(m[3],10),
                    ppCount:    rfCount,
                    type:        TYPES[type]||type,
                    name:        name,
                    tag:        tag,
                    from:        [],
                    order:        -1,
                if( 0 < refBy )
                    if( p || !rest ){ throw "Unable to parse references." }
                    props = rest.split(' ');
                    refBy -= (j=props.length);
                    while( j-- ) t.from.push([k,props[j]]);
                    (props.length=0)||(props=null);
                    rest = '';
                else
                    refBy = rfCount;
                    if( p != !!refBy )
                        if( p ){ throw "Unable to parse references."; }
                        refBy = 0;
                    (t = o[k]).order = n - i;
                (m.length=0)||(m=null);
                s = rest;
        a.length=i=0;
        for( k in o )
            if( !o.hasOwnProperty(k) ) continue;
            a[i++] = k;
        a.sort( function(x,y){return o[x].order-o[y].order;} );
        //a.sort( function(x,y){return parseInt(x.substr(1),16)-parseInt(y.substr(1),16);} );
        var u,
            pngLock = "\x89PNG\r\n\x1A\n\x00\x00\x00\rIHDR\x00\x00\x00\x0E\x00\x00\x00\x0E\b\x06\x00\x00\x00\x1FH-\xD1\x00\x00\x00\tpHYs\x00\x00\x0B\x13\x00\x00\x0B\x13\x01\x00\x9A\x9C\x18\x00\x00\x01VIDAT(\xCF\xA5\x91\xB1j\xC2P\x14\x86\x93\xD6\x94\x98\xA4\xB5\xA5\x85\x0E-R\xAF\xA5\xB8\xF4\x1D\xAA\xEF\x10_B\x9C\xDD\x0B]\xA4o`C\xE9$B\x1C\xCD\x10\x10C6\x05q\td\xA9%\x83d2\x83O\xF0\xF7\xDCp#i\xB5\x1D\xDA\xC0\xC7\xB97\xE7|\xF7\xDC\xCB\x91\x00H\x7FA\xFA\xB7\x98\xFF\xAA\xD5\xEA\x0B\x855\xC1\x13k\xDA\xBF\xEA\x9A\xA6\x9C\x18\xC6\xC1\xB6\xE8\xBBHE\x16\x85w\xC6\xD8\xE3\x91\xA2\xDCQ|\xA2\xFD\x07\xC57\xADXT\x8B\xAAz\xB8#\x8A\x13\xD7\xBC\xD8\xD0\xB4kC\xD7\x19q\xCB*\x95g\xFA\x9FP\xD7\x0B\x8A\n!oE.\xB5Z-\xEC\xA3\xD9l\xA2\xFEP\x07\x1D\xC8;\x18D!/\x16x\x91\xEF\xFBX.\x97\xD8l6H\x92$]O\xA7S\x8CF#\x887\x9F\x13j^T\xB9\xD8\xE9t0\x99L\x10\xC71V\xAB\x15\x82 \xC0\xD0\x1E\xA2\xDDng\xE2\x15q\x9C\x175.:\x8E\x83\xC5b\x81(\x8A \xCB2\xE6\xF39\\\u00D7E\xBF\xDF\xCF\xC4\x1B\xE24/\x1A\\\u00ECv\xBB\xF0<\x0Fa\x18\xA2\xD1h`<\x1E\xC3\xB2,\x98\xA6\x99\x89\x8C8\xDB\x11\x07\x83AzU\xDEu6\x9B\xA5\xA2m\xDB\xE8\xF5z?\x8B4\xC3,\xF9\x1B_E1\x9F\x12Q&j\xC4\xFD\x1Ej\"_\xCA\x8B\x051\xA3K\x91d{(\x8B\xBC\xFE\t\xC1TI!\xE3L\x03\x7F\x00\x00\x00\x00IEND\xAEB`\x82",
            pngNop = "\x89PNG\r\n\x1A\n\x00\x00\x00\rIHDR\x00\x00\x00\x0E\x00\x00\x00\x0E\b\x03\x00\x00\x00(\x96\xDD\xE3\x00\x00\x00\x03PLTE\x00\x00\x00\xA7z=\xDA\x00\x00\x00\x01tRNS\x00@\xE6\xD8f\x00\x00\x00\x15IDATx\xDA\xDD\xC1\x01\x01\x00\x00\x00\x80\x90\xFE\xAF\xF6#\xDA\x01\x00\xD2\x00\x01\xCC \x10\x14\x00\x00\x00\x00IEND\xAEB`\x82",
            w = new Window('dialog', " ExtendScript Memory"),
            p1 = w.add('panel', u, "References"),
            lRefs = p1.add('listbox', u, "",
                numberOfColumns: 4,
                showHeaders: true,
                columnTitles: ["Address", "Type", "Name", "Refs"],
                columnWidths: [90,60,120,36],
            g = w.add('group'),
            pFrom = g.add('panel', u, "From"),
            lFrom = pFrom.add('listbox', u, "",
                numberOfColumns: 4,
                showHeaders: true,
                columnTitles: ["Address", "Type", "Name", "Property"],
                columnWidths: [90,60,120, 120],
            pTo = g.add('panel', u, "To"),
            lTo = pTo.add('listbox', u, "",
                numberOfColumns: 4,
                showHeaders: true,
                columnTitles: ["Property", "Address", "Type", "Name"],
                columnWidths: [120,90,60, 120],
        g.orientation = 'column';
        w.orientation = 'row';
        w.alignChildren = ['left','top'];
        lRefs.maximumSize = lRefs.minimumSize = [330,450];
        lFrom.maximumSize = lFrom.minimumSize = [420,120];
        lTo.maximumSize = lTo.minimumSize = [420,220];
        lRefs.onChange = function()
            lFrom.removeAll();
            lTo.removeAll();
            lFrom.parent.text = "From";
            lTo.parent.text = "To";
            if( !this.selection ) return;
            var key = '&'+this.selection.text,
                t = o[key],
                from = t.from,
                i = from.length,
                k;
            lFrom.parent.text = "["+key.substr(1)+"] is reachable from " + t.ppCount + (1<t.ppCount ? " properties" : " property");
            if( t.ppCount && !i )
                with( lFrom.add('item', '--------') )
                    image = pngNop;
                    subItems[0].text = '';
                    subItems[1].text = '<UNKNOWN REFERRER>';
                    subItems[2].text = '';
            while( i-- )
                k = from[i][0];
                t = o[k];
                with( lFrom.add('item', k.substr(1)) )
                    image = t.locked ? pngLock : pngNop;
                    subItems[0].text = t.type;
                    subItems[1].text = t.name + ' ' + t.tag;
                    subItems[2].text = from[i][1];
            for( k in o )
                if( !o.hasOwnProperty(k) ) continue;
                t = o[k];
                from = o[k].from;
                i = from.length;
                while( i-- )
                    if( from[i][0]!=key ) continue;
                    with( lTo.add('item', from[i][1]) )
                        image = pngNop;
                        subItems[0].text = k.substr(1);
                        subItems[1].text = t.type;
                        subItems[2].text = t.name + ' ' + t.tag;
            lTo.parent.text = "["+key.substr(1)+"]'s properties had access to " + lTo.items.length + " addr.";
            from = t = null;
        for( i=0, n=a.length ; i < n ; ++i )
            t = o[k=a[i]];
            with( lRefs.add('item', k.substr(1)) )
                image = t.locked ? pngLock : pngNop;
                subItems[0].text = t.type;
                subItems[1].text = t.name + ' ' + t.tag;
                subItems[2].text = t.ppCount + '/' + t.rfCount;
        w.show ();
    // TEST
    var t;
    var f = function MyFunc()
        (function MyInnerFunc(){})();
    $.scanRefs(1);
    @+
    Marc

  • HT204406 How do you get your albums from itunes match to STAY on your iPhone rather than having to download them EVERYTIME you want to listen to them? This is tedious and takes up a lot of time. I just want to have iMatch to keep things synced all the tim

    Unable to transfer a complete album and only 2 songs appear in iTunes. This is from a purchased CD which was uploaded to my private music collection to use in iTunes.
    Unable to keep the songs on iPhone without having to download them all the time. There are albums that apear but greyed because I have to re-download them. It is very nerve racking.
    Unable to keep the files edited properly. Such as New York Dolls when it is supposed to be The New York Dolls.
    So far, these are the problems I have been running across. No matter which I used to sync or to use iMatch it does seem to have me do a some of the actions over. This does not even cover the rating. It should keep all your settings and not selective.
    So I really could use the help. Thank you.

    Stallionmatt wrote:
    I take it this isnt somewhere where apple reps reply?
    No. This is a user-to-user forum, where your fellow users help you. Since those users may be on the other side of the world to you, it may take a while before anyone responds. Occasionally, Apple employees do respond, but that is the exception and their responses will usually direct you to articles that they think will help you.
    So, since I have not yet installed iTunes 11.2, I'll go out on a limb and assume that things haven't changed that much.
    On the Device/Summary pane is the option to Sync only ticked songs and videos. Is that option still on?

  • My iphone 5 service keep on "searching" all the time..HELP ME!

    please help me my iphone 5 service just keep on "SEARCHING" for sevice all the time..and i don't connect to my country carrier...please help me!

    Check with your carrier to make sure that your account is current and they may need to replace your SIM.

  • Adobe QT32 server keeps hanging up all the time.....

    I am having some trouble with Premiere Elements 12.1
    Adobe QT32 Server ist hanging up all the time. Cancelling the process is making the programm unusable. Keeping it running means that it nearly takes all of my resources and ram up to 90 percent....
    Any ideas? Would be very thankfull for help!!!
    My Specs:
    MacBook Pre 13'' late 2011
    OSX Yosemite (10.10.2.)
    2,4 GHz Intel Core i5
    16 GB 1333 MHz DDR3
    Intel HD Graphics 3000 512 MB
    Thanx

    bernhardl
    Thanks for the replies.
    With regard to the file named  "Adobe Premiere Elements Prefs"......It is the settings file. And, its deletion has proven at times to be
    the answer to all sort of program malfunctions. From what I understand, the Mac path to this Prefs file is
    Users\Owner\Libraries\Application Support\Adobe\Premiere Elements\12.0.
    In Windows, I typically write to delete the Adobe Premiere Elements Prefs file and, if that does not work, then the whole 12.0 Folder
    in which it exists. I am not sure if the whole 12.0 Folder deletion is OK for Mac as it is for Windows.
    ATR

  • Firefox keeps "not responding" all the time ... is very anoring

    it happens mostly while using facebook's posting page (FB and the Zynga games on FB are the only thing I'm on most of the time I'm on line) ... I keep running into "FIREFOX NOT RESPONDING" all the time ... I'll go to click on a posting and nothing happens ... when i click again the page goes cloudy and that DARN blue wheel shows up (I hate the wheel) & at top of computer is says "Firefox not responding" ... my scrolling wheel will not work right ... jumps up & down the page or won't move at all ... always have to be refreshing the page or exit firefox & reopen ... looses connection a lot or is out of sync & has to be refreshed ... this started to happen several weeks back after I first downloaded Firefox 4 ... in fact I've had to reload it several times ... this is all very frustrating when trying to play my games ... I've defragmented, run both my AGV & windows washer programs several times but nothing seems to help ... had no problems with earlier firefox so tried to reload it but now can't get earlier version to work either

    Hi,
    Please try this: '''Tools''' ('''Alt''' + '''T''') > '''Clear Recent History''', choose '''Everything''' in '''Time range to clear''' and '''Cache''' and '''Cookies''' under '''Details''' and '''Clear Now'''. [https://support.mozilla.org/en-US/kb/Clear%20Recent%20History Clear Recent History].
    If the problem persists, please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • Why does Firefox 23 keeps freezing briefly all the time?

    Firefox suddenly started freezing briefly for something like 3 seconds all the time when it updated to 23. It does it something like every 10 seconds. How do I stop the really annoying brief freezing?

    I had already tried disabling HWA before updating to 24 beta but it didn't make any difference. Still kept freezing. At least the problem appears to be fixed in 24 beta. I haven't yet had any more regular freezing problems after updating.

  • Mavericks keeps fan running all the time

    I upgraded to Mavericks and every thing seems to work ok (except maps) but my concern is that now i hear the fan running slowly all the time. Even on battery power the fan runs. I don't remember this in mt lion, and wonder if this is normal with os x 9 or something i need to worry about. I would guess it would use more battery when not connected to the power supply. Any ideas as to this problem?

    Some users have reported Dropbox is using an inordinate amount of power, but your system indicates nothing extreme. You might try uninstalling it to determine the result. Your Dropbox account won't be affected, and you can always reinstall it.
    If you haven't yet updated Dropbox do so, because version 2.4 is required for Mavericks and a maintenance update was released only yesterday.
    Also, there have been reports that an SMC reset has been beneficial. It is generally justified for any power - related anomalies including abnormal fan activity.
    Follow all the steps, even if they seem unimportant. The power adapter indicator light should cycle off / on once when you reset the SMC.
    Before Resetting the SMC
    Try each of the following steps in this order before you reset the SMC. Test the issue after completing each troubleshooting step to determine if the issue still occurs.
    Press Command + Option + Escape to force quit any application that is not responding.
    Put your Mac to sleep by choosing the Apple () menu from the upper-left menu bar and then choosing Sleep. Wake the computer after it has gone to sleep.
    Restart your Mac by choosing the Apple () menu from the upper-left menu bar and then choosing Restart.
    Shut down your Mac by choosing the Apple () menu from the upper-left menu bar and then choosing Shut Down.
    Resetting the SMC on portables with a battery you should not remove on your own
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if it's not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer.

  • My 4s keeps refreshing facebook, all the time. anyone know how to make it stop, it's killing my battery.

    my 4s continually shows it's updating my Facebook page. It's slowing the phone down and draining my battery. any ideas on how to fix it?

    The problem seems to be with the iPhone or the Facebook app's memory management.
    This fixed it for me:
    1) Open up ANOTHER application, like Notes for instance.
    2) Press the home button twice quickly. If you've never done this before, it make take a few tries to get the timing right. (The home button is the circular button at the bottom of your phone).
    3) A few icons should come up at the bottom of your screen. These are the application "currently running" on your phone, and they take up your phone's memory. Hold your finger down on one of the icons until they all "wiggle" or "shake"... Like when you rearrange icons on your phone's home screen.
    4) Once the icons are shaking, there will be a little red X in the corner of each icon. Click on the X for all of the applications, including Facebook, until there are none left except the "Notes" app icon.
    5) Restart your phone by holding down the power button (located on the top of your phone) until a red slider appears. Drag the slider to turn off your phone. After about 20-30 seconds, power your phone back up by clicking the power button once.
    6) Start the Facebook app. There may be a little refreshing but it should be much improved.
    I wrote this up because I imagine there's a lot of people out there that have run into this, and this seems to be the only way to fix it. Just restarting the phone doesn't seem to work.
    If this works for you, please login to the forum site with your Apple ID and let us know it worked! (Bookmark this page in your browser so you can get back to it after you log in).

Maybe you are looking for

  • Error occured in Messaging bridge in weblogic to MQ Series

    Hi, I am trying to send the message from weblogic JMS to MQ Server Queue using Message Bridging. All the configuration has been done in both Weblogic and MQ Server. Once creating the bridge, i am getting the following error. <Feb 22, 2006 9:37:18 PM

  • Dragging audio into the timeline

    hello, when I drag a loop from the loop library into a timeline in garageband, the loop will automatically play back at the tempo set up for the project, my question is will a file that is not from the loop library, either a third party loop or an au

  • Best practices for making space on hard drive?

    My relatively trusty ol' 466 mhz G4 is bogging down. I am showing 9.77 GB out of 28.6 capacity. I have the Adobe CS programs and do a lot of Photoshop work. I decided to clean house and dump as much stuff as I can, including the older programs (Adobe

  • Files not previewing in CC

    I thought it was possible to see previews of your uploaded files but this only works for jpg/png/eps PSD, PDFs and AI files only show the grey icon, is this how it should be?

  • Latest Photoshop 14.1.1.415 CC update Crashes Randomly

    I can not reproduce consistantly, but it randomly crashes actively when I am working on files since latest update. System Mac OS X 10.8.5 The Crash Report https://gist.github.com/okayjeffrey/4ab3ffce609c37aa419d