Skip to main content

J'ai Acronis True Image Home 2018. La commande script ne semble pas fonctionner.

Thread needs solution

J'ai Acronis True Image Home 2018. La commande script ne somble pas fonctionner pour la version 2018. Exemple:
"C:\Program Files (x86)\Acronis\TrueImageHome\TrueImageLauncher.exe" /script:4ACD0E0D-656D-4C26-9B85-1E826C7DCCC8
Que dois-je faire?

0 Users found this helpful

Yvon, welcome to these public User Forums.

The command line should work fine provided you are running this as Administrator.

I use the same approach when testing backup issues using a small batch command file:

LoopATItask.BAT

@echo off
set ATI="C:\Program Files (x86)\Acronis\TrueImageHome\TrueImageLauncher.exe"
set task=30089F46-F0D4-4696-903E-41162235E361

set loopcount=5
:loop
echo Launching ATI Task %loopcount%
%ATI% /script:%task%
set /a loopcount=loopcount-1
if %loopcount%==0 goto exitloop
timeout /t 40
goto loop
:exitloop
pause