make more then one image at same time
Is it possibel to Setup Acronis True Images 2017 to create more the one image?
Explonation
Setup first : Image1, Image2, Image3
After this Setup Acronis True Images boot to dos, create the 3 Images
Close down and go back to Windows.
If "No possibel" other solution to make more then one image


- Se connecter pour poster des commentaires

What would be the puropse of creating 3 images, one right after the other? The would all essentially be the same if each full backup was run right after the other.
If you need 3 copies of the same backup let Acronis use a scheduled task to create the original backup. Then, either manually copy/paste it to 2 other locations, use another synch software to do this automatically (robocopy is embedded in Windows and can do this too, but it's command line), or a .bat script or scheduled task to automatically copy your backup folder to the 2 other locations.
If you want to make a .bat script using robocopy, it would go somethig like this
robocopy "Sourcedrive\backupfolder" "Destinationdrive1\backupfolder" /MIR /R:0 /W:0
robocopy "Sourcedrive\backupfolder" "Destinationdrive2\backupfolder" /MIR /R:0 /W:0
Of course, put the actual information for your source and destination drives...
Then copy the code into a .txt file and save as .bat. You can then run the .bat file anytime you want to replicate the exact contents of your original backup folder to the 2 other locations. To fully automate the process, you could add the .bat file as post backup job to your your backup task so that it would make these copies after each backup is taken with acronis.
- Se connecter pour poster des commentaires