FlippX, on 09 May 2012 - 10:30 AM, said:
I got 2 hdds over here, but I guess just copying the win-dir over as a backup won't work...
Thanks again.
re: Backup How-To...
Posted 09 May 2012 - 11:08 AM
FlippX, on 09 May 2012 - 10:30 AM, said:
Posted 09 May 2012 - 01:38 PM
Posted 10 May 2012 - 10:05 AM
Posted 10 May 2012 - 10:36 AM
Posted 10 May 2012 - 12:38 PM
Posted 10 May 2012 - 12:54 PM
Posted 10 May 2012 - 01:58 PM
FlippX, on 10 May 2012 - 12:38 PM, said:
Posted 10 May 2012 - 03:07 PM
Posted 11 May 2012 - 03:42 PM
Fredledingue, on 10 May 2012 - 03:07 PM, said:
lcopy /a /s c:\windows\*"/A" includes files with system and/or hidden attributes also, "/S" recurses through subdirectories, and "*" makes sure every file from the source is copied, whether they have an extension or not. Make sure the target directory is empty before you do the copy.
ldel /a /s /f c:*"/F" deletes folders too. Then do:
lcopy /a /s d:\path\*where "d:\path\" is the drive and path to your backup.
zip32 /r /S -9 zipfile c:\windows\*"/r" recurses through subdirectories, "/S" includes files with system and/or hidden attributes, "-9" gives maximum compression (but is slower), "zipfile" is substituted with the name you want to give the created zip file, and "*" makes sure all files from the source are included, whether they have an extension or not. Make sure to choose a non-existant "zipfile" name.
unzip32 d:\path\zipfilewhere "zipfile" is substituted with the name of the archive file you want to restore, and "d:\path\: is where you stored it.
Posted 11 May 2012 - 05:23 PM