Acronis True Image gives no signs it's being used (until it's too late.....)
I'm a new user to Acronis, and I'm getting to grips with how this software works, but I'm beginning to get really irritated now by the number of times I get caught out that it's running in the background (while I'm about to switch my PC off).
Let me explain.
I have a number of hard disks in my computer (I think 6 if I remember correctly), and I have two MyBook external hard disks to which I back up to.
I do Differential Backups and I've chosen to do them during the day, whilst I'm working (I work from home, freelance).
They are backing up every week day, starting early morning, around 9ish, and I've split the work up so that on Monday, Wednesday and Friday, my 'work' hard disk is backed up, and Tuesday and Thursday, my less volatile (non-work) data gets backed up.
Now, I don't know when these jobs will finish, nor how long they will take, Acronis decides that. But at some point during the day, I might need to go out, it might be late afternoon, and I'll log my machine off to shutdown......
It's at that point that I'll learn that Acronis was in the middle of taking a backup (still ?) and of course by that time, it's too late.....
No warning, nothing to tell me that Acronis is running (my task icons are minimised), no notifications, nothing.....
I've been caught out now at least 1/2 dozen times.
There *has* to be some kind of warning message that could come up BEFORE Windows has gone to that point of no return ?
Seriously getting bummed off with this software - I just want to set it and forget it !


- Log in to post comments

Another option here is to use the Pre & Post Command options to do something that will alert you to the running backup task.
The following Powershell script would create a text file on the desktop when the backup task starts, then remove that file from the desktop when the backup task finishes. This should be saved as file TaskActive.ps1
#Filename = TaskActive.ps1 $desktop = "$Env:userprofile\desktop" $taskactive = 'ATI_Active.txt' $here = Get-Location function MarkActive { Set-Location -Path $desktop if (!(test-path $taskactive)) { write-host "$taskactive not found - being created" new-item -path $desktop -type file -name $taskactive} else { write-host "$taskactive found - being removed" remove-item $taskactive } Set-Location -Path $here } MarkActive
The above is run from both the Pre (to set as active) and the Post Command (to clear) as shown in the screen images below. The Working directory should be set to where the TaskActive.ps1 file is stored.
An icon for file 'ATI_Active.txt' will appear on the user desktop when the script runs and then get removed when it runs a second time when the backup task ends.
- Log in to post comments

Thanks to you both for your help - by the way, I didn't receive any notification email from Acronis to tell me replies had been made to my post (yes, I do have "notify me" checked).
For Bobby, thanks for that, I've now checked those other couple of options at the very bottom and I've also extended the system icons to show the few I really do need, including the Acronis Shield (which I assume is what changes into an icon like you have during backups).
For Steve, thank you too - that's pretty advanced stuff, which I can copy and paste / save someplace and set up like you've described - though I do have a lot of icons on my desktop (which I'm not a fan of anyway), but of course, my screen is usually taken up with applications, so I wouldn't see that Icon, only at shutdown (when no applications are open any longer) and then I'd have to remember to look for an icon (on two large monitors......).
Clearly, this software needs a safety measure in place - if a backup is taking place it should WARN you BEFORE Windows is actually shutting down that you're about to 'lose your work'. Nearly ALL other software, if you try to close it BEFORE saving your work, will warn you so (eg Word, Excel, Photoshop, literally any software).
I think something as important as a backup software, should do the same.
- Log in to post comments

Jez, there is a way to disable all the shutdown / restart power options if you are using the default Windows 10 start menu that could be used in a Pre Command then re-enabled again in a Post Command. This would stop you from clicking on shutdown while your backup is still active.
Note: this does not work if you are using an alternative start menu application such as 'Classic Shell' or 'Open Shell' etc.
- Log in to post comments

Steve Smith wrote:Jez, there is a way to disable all the shutdown / restart power options if you are using the default Windows 10 start menu that could be used in a Pre Command then re-enabled again in a Post Command. This would stop you from clicking on shutdown while your backup is still active.
Note: this does not work if you are using an alternative start menu application such as 'Classic Shell' or 'Open Shell' etc.
Thanks Steve,
I do use a Classic Shell in Windows 10, and would consider going forward with the newer start menu to solve this, however, I wouldn't know how to implement what it is you're suggesting.
Does seem a little drastic when it's the software which is what needs fixing - but thanks for the suggested workaround, much appreciated.
Many thanks.
- Log in to post comments

Jez, if you are still using Classic Shell then you should update this to Open Shell which is the follow on program and is being maintained. The older Classic Shell has problems with Windows 10 for the latest builds.
I have worked out how to disable Shutdown for Open Shell but don't have a computer still running the original Classic Shell program to test as it stopped working for me a while back.
- Log in to post comments

Jez,
Yes, adding that one in "taskbar" as "show" should do the trick.
- Log in to post comments

Thanks again guys, both sending me top advice and I am always open and ready to bow to those of greater wisdom than I :)
I'm taking a look at OpenShell now Steve, it looks like the way to go and be more up to date. Thanks for that tip, I'll update and get back on here once that's done.
Bobby, yes, I did that thanks and yes, now when a back up is taking place, at least you get to see a progress bar showing up in the system tray - definitely better than I had it before. many thanks.
- Log in to post comments

Sweet! Better than nothing and pretty similar to the behavior of other competing backups. Would be nice if it was there automatically though ?.
- Log in to post comments