Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Is there a program or anything to spin up my hard drive from sleep at certain time?
Thanks.
cmd /c dir c:
1. Create and open text file
2. Type in "D:," press enter, than type in "dir" where D: is the drive you want to wake up, without qoutes
3. Save file as wake.bat
4. Open scheduler in Windows
5. Set scheduler to run your wake.bat file at whatever time you want
I'm curious of what program you are running that simply isn't waking up the hard drive by itself? All the drives in my HTPC/NAS are set to sleep after 5 minutes of inactivity, but once something needs to access the data on the drive, whether locally or remotely, the drives spin up automatically.
1. Create and open text file
2. Type in "D:," press enter, than type in "dir" where D: is the drive you want to wake up, without qoutes
3. Save file as wake.bat
4. Open scheduler in Windows
5. Set scheduler to run your wake.bat file at whatever time you want
I'm curious of what program you are running that simply isn't waking up the hard drive by itself? All the drives in my HTPC/NAS are set to sleep after 5 minutes of inactivity, but once something needs to access the data on the drive, whether locally or remotely, the drives spin up automatically.
The (system) cache is NOT your friend, here. There is a very good chance that a drive(-letter)'s root directory is cached in the System (OS), and just doing a Dir on it is not guaranteed to spin up the drive itself.
Better to do:
dir K:\SpinUp.txt > K:\SpinUp.txt
which WILL guarantee that, upon completion, the drive containing K: will be spinning.
I am lost here on what you did above.
Do I need to name my file with a .bat extension?
What the new command does is create a file out of the directory listing on the destination drive. That way you can be sure that the drive wakes up.
Short answer: yes.
Yes I do know the Schedular and I have done it to shut down my computer.
I have a usefulness for this.
Bc my hd spin up from sleep, I always miss the first 4 minutes of a recording on my WMC!
I dont want to do a 4 min early recording.
Let me see tonight if it work. Thanks!
Create a file out of the directory listing on the destination drive. I have put "wake.bat" in the root of K: drive. That is the only file there.
I am lost. Thanks for explaining.
Is 5 minutes really a good idea? I was under the impression spinning up and down drives a lot is what wears them out really fast. Like turning on and off lightbulbs.
I don't think i'd want my hard drives spinning up much more than once a day at most. I have my spin-down time set to 5 hours right now. So hopefully they only spin down when i'm gone for extended periods.
I could be incorrect in this assumption though.
You were supposed to put those commands in a batch file (with a .bat extension) and use Task Scheduler to execute your batch file at the time you want the drive to spin up.
Hello people.
I think the above code is wrong.
Isnt it suppose to be this: dir K:\wakeup.bat > K:\wakeup2.bat
Otherwise if you overwrite it the original above will not work anymore.
Right or wrong?
dir k:\ > k:\wakeup.txt