P
P
Pavel2016-06-03 06:42:31
System administration
Pavel, 2016-06-03 06:42:31

Manual backup tool?

The essence of the problem: sometimes you need to make backups of several directories from drive A to drive B. It is planned to start it manually. the task is not to constantly overwrite the entire amount of data, since disks A and B contain actual data that does not need to be copied again (normal copying can also cope with this), but what it can’t cope with is deleting invalid data on drive B that is no longer on drive A.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Andrey Mikhalev, 2016-06-03
@Svarog7

try SyncToy https://www.microsoft.com/en-us/download/details.a...

A
Artem @Jump, 2016-06-03
Tag

Regular windows backup mechanism.

A
Alexey, 2016-06-03
@skazi_premiere

Unfortunately, you did not write for which system it is needed, but I would follow the principle (using PowerShell if possible):
1. Get a list of files from drive A;
2. We got a list of files from disk B;
3. Array with file names B - A = unnecessary files into a new array C;
4. Delete objects from disk B according to the list of array C.
Or take any backup system and make normal backups (having previously made a backup plan) of two types, full and incremental / differential at your discretion. Schedule and keep copies. And you will always have up-to-date information in a copy.

K
Konstantin Tsvetkov, 2016-06-03
@tsklab

Built-in Windows utility:

-------------------------------------------------------------------------------
   ROBOCOPY     ::     Robust File Copy for Windows
-------------------------------------------------------------------------------

  Начало: Fri Jun 03 13:12:14 2016

       Простое использование :: ROBOCOPY источник назначение /MIR

             Источник:: Исходная папка (диск:\путь или \\сервер\общий ресурс\путь).
        Назначение :: Папка назначения (диск:\путь или \\сервер\общий ресурс\путь).
               /MIR :: Создать зеркало всего дерева папок.

    Для получения информации об использовании выполните команду ROBOCOPY /?


****  /MIR может не только скопировать файлы, но и УДАЛИТЬ их!

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question