[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
lib
/
Acronis
/
PyShell
/
site-tools
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 agents.py
37,583 B
SET
[ EDIT ]
|
[ DEL ]
📄 amsctl.py
207,705 B
SET
[ EDIT ]
|
[ DEL ]
📄 cep.py
27,496 B
SET
[ EDIT ]
|
[ DEL ]
📄 change_machine_id.py
19,059 B
SET
[ EDIT ]
|
[ DEL ]
📄 cleanup_backups.py
17,859 B
SET
[ EDIT ]
|
[ DEL ]
📄 dmldump.py
1,649 B
SET
[ EDIT ]
|
[ DEL ]
📄 gtobview.py
16,468 B
SET
[ EDIT ]
|
[ DEL ]
📄 manage_creds.py
2,822 B
SET
[ EDIT ]
|
[ DEL ]
📄 multi_mms.py
12,465 B
SET
[ EDIT ]
|
[ DEL ]
📄 register_mms.py
1,929 B
SET
[ EDIT ]
|
[ DEL ]
📄 set_logging.py
7,140 B
SET
[ EDIT ]
|
[ DEL ]
📄 stdspecs.zip
13,958 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: dmldump.py
import acrort import acrobind def main(): specs = acrobind.create_viewspec_storage('stdspecs', acrobind.dir_here()) parser = acrobind.CommandLineParser() parser.append_processor(acrobind.ConnectionArgumentsProcessor(tenancy_required=True)) parser.append_processor(acrobind.PostOfficeArgumentsProcessor(std_specs=specs.enumerate())) parser.append_processor(acrobind.OutputArgumentsProcessor()) parser.append_processor(acrobind.DebugTraceArgumentsProcessor()) try: config = parser.parse_arguments() except acrort.Exception as exception: error = exception.to_error() ret = error.to_exit_code() if ret == acrort.common.EXCEPTION_AWARE_RETURN_CODE: error.throw() return ret printer = acrobind.Output(config, end='\n\n') queue = acrort.common.Queue(sigint=True, size_limit=1) connection, error = acrobind.connect_to_service(config, queue=queue, printer=printer) if connection is None: return error.to_exit_code() post_office = acrobind.PostOffice(connection, queue) action_id = post_office.execute_request(config) on_stop = False while True: msg = queue.get() if not on_stop and acrort.common.interrupt_sentinel: on_stop = True acrort.common.cancel_action(action_id) if not on_stop or msg.type_id not in acrort.common.MESSAGE_FAMILY_DML: printer.write(msg) if msg.type_id == acrort.common.MESSAGE_TYPE_COMPLETION: break if __name__ == '__main__': exit(acrobind.interruptable_safe_execute(main))