Skip to main content

USB Drive Hibernating

Thread needs solution

When the USB drive is hibernating, Acronis True Image cannot find it.

How do I get Acronis to wake it up?

0 Users found this helpful

Marvin, welcome to these public User Forums.

When you say that the USB drive is hibernating, do you still see it shown as a drive letter in Windows Explorer?

If yes, then you could try using a simple Pre Command batch file in your ATI task options to prompt it to wake up.

:: CheckDrive.bat
echo off
if not exist S: goto nodrive
dir S: 
echo "Drive found!"
exit /b 0

:nodrive
echo "Drive not found!"
exit /b 1