Exporting list of machine names from Acronics Backup
Is there a way to export a list of machine names from the Acronis Managent Server.
Or eventualy reading them from database or similar.


- Anmelden, um Kommentare verfassen zu können

Hello Per Nilsson,
welcome to Acronis forums!
I have configured a custom report (Overview -> Reports, click Add report, scroll down the list and select Custom, open it and click Add widget, select the first table Devices, in this new report click on the gear icon and uncheck all unnecessary columns):
Now you can download it either in PDF or Excel:
- Anmelden, um Kommentare verfassen zu können

Unfortunately the Report option is available only in Acronis Backup
Advanced
- Anmelden, um Kommentare verfassen zu können

How can I access the management servers sql backend? I use SQL Management Server but I don't know what credentials to use.
- Anmelden, um Kommentare verfassen zu können

Hello Per Nilsson!
How can I access the management servers sql backend? I use SQL Management Server but I don't know what credentials to use.
It depends on how you chose to install AMS. Specifically if you specified an already existing user for the AMS service, and whether you chose SQL server/Windows authentication for connecting to MSSQL. You can likely login with a local administrator with windows auth though.
By the way with SQLite the same database can be found at C:\ProgramData\Acronis\BackupManager\acronis_backup_manager.db, and queried with DB browser https://sqlitebrowser.org/
-- Peter
- Anmelden, um Kommentare verfassen zu können

Thanks. This is what i wanted.
I have never seen any SQL server installation option so I have obviously not used it.
From within sqlite browser I can find my info. Thanks.
- Anmelden, um Kommentare verfassen zu können

Hello again.
When browsing through the sqlite databse, I cannot find the differnt backup plans.
I'd like to map machines <> applied backup plans.
Can you please give me a hint where the backup plan is located in the database?
- Anmelden, um Kommentare verfassen zu können

Hello Per Nilsson!
Here's some more info:
- collector DB
- Path: C:\ProgramData\Acronis\MonitoringServer\am-database\collector.db
- Table: backup_plan
- You can find the backup_plan_id and backup plan displayname here. This info is probably aggregated from somewhere else, but I couldn't find both the id and displayname in other DBs.
- Which machines it's applied to is also here in the protected devices column, but it's stored as binary. It looks like resource_ids are embedded here as string. If you convert the whole blob to string you can search for the resource ids with this regex:
- [A-Z0-9)]{8}-[A-Z0-9)]{4}-[A-Z0-9)]{4}-[A-Z0-9)]{4}-[A-Z0-9)]{12}
- backup manager DB
- Path: C:\ProgramData\Acronis\BackupManager\acronis_backup_manager.db
- table: applied_policies, resources
- Snippet to list machines with their backup plans:
select
policy_id,
r.display_name
from applied_policies ap
join resources r on ap.resource_id = r.id
order by policy_id
- Snippet to list machines with their backup plans:
Join these two datasets and you have a BackupName - Machine name list
-- Peter
- Anmelden, um Kommentare verfassen zu können

Hello Peter,
thank you for publishing and sharing the request examples.
Hello Per!
When browsing through the sqlite databse, I cannot find the differnt backup plans.
I'd like to map machines <> applied backup plans
This request could also be simply configured in the Reports section of the Management Console of the Advanced license version.
- Anmelden, um Kommentare verfassen zu können

- collector DB
- Path: C:\ProgramData\Acronis\MonitoringServer\am-database\collector.db
Hello.
On my server I don't have this MonitoringServer folder.
- Anmelden, um Kommentare verfassen zu können

EDIT: Double post
- Anmelden, um Kommentare verfassen zu können

Hello Per Nilsson!
It's likely only present if you installed monitoring server during installation.
-- Peter
- Anmelden, um Kommentare verfassen zu können