• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Program to keep my external hard drive from sleeping

You can look in the advanced Power Options, although those do not work sometimes i.e.: unchecking the allow the computer to power this device off option.

You'll probably want to look at whatever software came with your hard drive from the manufacturer, they sometimes have options in there for this.
 
I have six WD My Book drives. The newest one came with a utility to set power savings to "Never". Unfortunately, the utility does not work with my previous gen drives.
 
Yeah Windows setting doesn't work, and they are Hitachi drives. One idea I had was to connect a bit torrent client that drive and share a file to keep the drive active. Not my preferred solution though.
 
HGST used to offer a Feature Tool for internal drives. But various third-party proggies including CrystalDiskInfo should be able to set the drive's APM to disable standby (as well as set AAM).
 
You could just create a scheduled task runs every 5 minutes and simply calls and exits powershell, outputting to a log file on your drive:

Code:
powershell.exe exit > E:\test.log

(Change E: to whatever your drive letter is)

What this does exactly is open powershell, open and clear the file "test.log", then exit powershell and close the log file. It cant possibly be any simpler. The log file will be zero bytes.
 
How often are you accessing this drive DougoMan?

If you are accessing this thing all the time from one machine, an internal drive may be a better solution.
 
Back
Top