optimus said:Have we missed the point to the question?
NeilFawcett said:If you set say True Image to (full) backup your C drive every month. If during this backup you close your PC, then surely you're left with no backup?
mike1210 said:yep it would be corrupt, as above leave PC switched on![]()
NeilFawcett said:Let's remember the kind of people who post here are NOT a reflection of your average user. As a rule we are far more techno-literate.
So, we have in my case some older member of the public, who are no particularly techno-savi, so I want to create a backup system as simple as possible.
The most obvious way to do this with True Image is to say every month do an automatic backup of C to D for example.
HOWEVER, if the folks turn their PC on, the backup starts, they read their email say and then log off (before the 5-10 minute backup is complete), NO BACKUP!
There is also the fundamental flaw with True Image, in that it destroys your existing backup BEFORE starting the new one. If while copying say your entire C drive your C drive fails! Bang! No backup!
bledd. said:pretty sure you can set it to run the next time the pc is on (if the backup is missed)
schedule weekly incremental low priority backups, sorted![]()
Hodders said:We have a pre-job script that renames:
backup.001 to backup.002
backup.tib to backup.001
and THEN runs the script. That way we always have the latest backup. TI also emails me letting me know that beackup status.... No email = check.
Now there's a frightening thought.NeilFawcett said:Let's remember the kind of people who post here are NOT a reflection of your average user. As a rule we are far more techno-literate.
REM if image is there but 0 bytes then delete it
for /F %%A in ("%1.tib") do If %%~zA equ 0 del %1.tib
REM if file exists
if EXIST %1.tib (
REM if backup exists delete it
if EXIST %1_backup.tib del %1_backup.tib
REM rename existing image to backup
rename %1.tib %1_backup.tib
)
NeilFawcett said:NOTE: Do not use spaces in filename. ie: "C Drive Image" should be "C_Drive_Image"
if EXIST "%1_backup.tib" del "%1_backup.tib"
Andre said:Why not just put quotes around the substitutions throughout?
e.g.should mean spaces are allowedCode:if EXIST "%1_backup.tib" del "%1_backup.tib"
REM Put parameter into variable and lose quotes
SET filename=%1
SET filename=###%filename%###
SET filename=%filename:"###=%
SET filename=%filename:###"=%
SET filename=%filename:###=%
REM If image is there but 0 bytes then delete it
for %%A in ("%filename%.tib") do If %%~zA equ 0 del "%filename%.tib"
REM If file exists
if EXIST "%filename%.tib" (
REM If backup exists delete it
if EXIST "%filename% BACKUP.tib" del "%filename% BACKUP.tib"
REM Rename existing image to backup
rename "%filename%.tib" "%filename% BACKUP.tib"
)