Aller au contenu principal

Acronis agent version number

Thread needs solution

It would be nice if you could see the version number of the client on the console.

They added the drive health status, but a version selection would help as well.

this would make upgrades easier to manage

Fichier attaché Taille
console.jpg 61.66 Ko
0 Users found this helpful

Hello Sven,

Thank you very much for your post. I will definitely assist you.

I will definitely create an Enhancement request and forward it to our Development team and as a workaround, you can run a script to export build numbers from the Acronis Management Server to a text file. Please check this article for additional information.

Let me know if you have additional questions please.

Thank you.

I agree that would be a nice out of the box enhancement.

You can however extract data from the SQL database behind Acronis. Currently I'm using B&R 11 Advanced version build 11.0.17438
if you run this query on the acronis_cms database it returns the version of the agents. You don't really need the a.name column.

select m.Name,a.Name,[version]
from agentinfo a
join Machine m on a.MachineID = m.ID
where Role = 0 and LEN(a.name) > 1