Continuous upgrade notification appears to be marketing indeed
Hello all,
Today Anna Trifonova responded to the many complaints about the daily nagging to upgrade to TI 2015 from TI 2014. At the same time she closed that thread so it was impossible to respond directly to her contribution. Therefore I am starting this new thread.
Let me start by saying that I will never buy Acronis again and also tell other people not to buy it. I am very displeased about how Acronis deals with our valid complaints.
Anna writes: "Notifications "New version is available on Acronis website" may rarely appear to ensure all Customers, who have not tried the new version yet, can get a possibility to easily upgrade to Acronis True Image 2015 for the best price available." Just this sentence alone warrants a couple of remarks.
Rarely: the notification appears every day at least once on all of my computers. Is that rarely? In my vocabulary this is regularly.
"to ensure all Customers, who have not tried the new version yet, can get a possibility to easily upgrade to Acronis True Image 2015 for the best price available...": so after all it is admitted that the whole thing is about marketing, because even if I do not want to be bothered by notifications and adjust the program settings accordingly, Acronis thinks that for this quoted reason I should be bothered, against my wishes!
Then the way to solve this: disable all notifications, including the valuable ones or adjust the Windows hosts file. If I do not want to lose the other notifications it appears that I have to do some programming (extra time, extra work, what if I did not know much about computers?), because Acronis wants to give people "a possibility to easily upgrade to Acronis True Image 2015 for the best price available" [sarcasm intended].
Finally, the response from Acronis came after a whopping 19 days after people started complaining. The solution is not really a solution. And last but not least, immediately after the response was posted the thread was locked. I really feel like I am bullied.
The way C U S T O M E R S are treated alone makes me not want to consider Acronis anymore. There are other good products out there that take me as a customer much more seriously.

- Log in to post comments

Today, I did get a reply from that managers@acronis.com email address that I wrote to on October 3rd. I had (basically) sent them a "wake up and smell the coffee" type of message. They wrote back today and attached (2) Bat files that can be run to disable and/or enable notifications from Acronis. I looked inside the Bat files and found that they were adding/removing the same set of arguments into the Hosts file that Acronis Users had already figured out.
"0.0.0.0 download.acronis.com"
Nothing new there for me and I had already previously added a similar argument to one of my PCs. I'm guessing that is what someone would receive (the Bat files) if they contacted Anna Trifonova via PM as her response provided.
I'm not surprised that she locked the thread. I expect that Acronis would like to see that topic start disappearing down the active list vs being resurrected to the top almost daily. TI2014 works just fine for me, I run it daily without problem and will be passing on TI2015 as designed. All the best to our brethren users (beta 2015 testers) here and may your backups always restore! :)
- Log in to post comments

Well said, TEX
Could you please post those 2 mentioned .bat files? just interested...
- Log in to post comments

Ken, here are the direct copy-n-paste contents of both of the .bat files. I did not use either of them because I'd already solved the problem myself on my PCs. So, I can't vouch for how well they work or the contents of the files. People would need to contact Acronis or Anna Trifonova if they have any issues or questions using the .bat files.
"disable_notifications.bat" file to turn "off" the upgrade notifications:
@echo off
echo.
echo 0.0.0.0 download.acronis.com >> c:\windows\system32\drivers\etc\hosts
"enable_notifications.bat" file to turn "on" the upgrade notifications:
@echo off
setlocal enableextensions disabledelayedexpansion
set "file=c:\windows\system32\drivers\etc\hosts"
for /f "tokens=* delims=0123456789" %%a in (
'findstr /n /i /v /c:"download.acronis.com" "%file%" ^& type nul ^> "%file%"'
) do (
set "line=%%a"
setlocal enabledelayedexpansion
>>"%file%" echo(!line:~1!
endlocal
)
endlocal
- Log in to post comments

Around the time I started getting the irritating and serial notifications to upgrade from my ti 2014, the activation due to hardware id change started even though I didn't change my hardware. While I do not count out something being wrong with my machine, the timing is mighty suspicious and I cannot help but tie it to added pressure to upgrade to 2015, which I was seriously considering doing until I found out that my favorite shredder function is not longer a part of tools. I know its a tiny function, but I grew to use it frequently. I don't think I'll continue on with this product because marketing is more important than getting the product right - just my thoughts here.
- Log in to post comments

thanks Tex for the files!
@Clarence Williamson:
just rerun setup2014.exe and choose "repair" - that should fix your "hardware id has changed" problem
- Log in to post comments

Thank you Ken sandal. After doing that, so far so good. Take care.
- Log in to post comments

Hello Everyone,
I'm very sorry, that you are so frustrated with closing the thread 65648, it wasn't meant to be an insult to anyone.
I just didn't want my message to get lost, because from experience I know how often it happens in such hot threads.
Thank you.
- Log in to post comments

Anna, I can see that you are trying to help, so thank-you for responding both here and in the other thread. Your logic for closing the thread makes sense to me. I have also had some good emails from the managers@acronis vehicle. From those emails, I can tell that you folks are very aware of the issue and (as they say) "they are putting a lot of effort into it". That is good to know.
My main suggestion to them is to engage the customers early on, acknowledge the problem and provide us some sort of follow-up as things move along. The silence, across many days was the worst effect. I think most of us know that you may not have an exact fix within just a few days and most people could tolerate waiting for the fix. It is the interim communications, work-arounds, status, etc that are important and this forum is probably as good a place as any to do that.
- Log in to post comments

I agree with Tex. It did take several weeks to get a response from Acronis, but it did eventually come.
Yes, it consisted of instructions to turn notifications from Acronis OFF in the Taskbar Manager, but as the annoying popups stopped I consider it to be as good as a fix.
I don't imagine I will miss anything important.
The real problem with this whole thing has been the lack of a prompt, complete, helpful response from Acronis.
It baffles me that they seemed to ignore a screamingly frustrated user base - for no apparent cause.
What, one wonders, could be so all-consuming that enterprise customers are left to twist in the wind?
Whatever, for me this sorry saga had come to its end.
- Log in to post comments

original disable_notifications.bat posted by Tex is not suitable for every situation:
1. hosts file might be write-protected
2. last line of hosts might have no line feed
3. XP system drive might be other than c:\
better run following code, saved as "disable_notifications.bat".
run it "as admin"!
@echo off
set file=%SYSTEMROOT%\system32\drivers\etc\hosts
attrib -s -h -r %file%
echo.>>%file%
echo 0.0.0.0 download.acronis.com >>%file%
- Log in to post comments