robocopy (windows)

タスクスケジューラを使って自動バックアップを行うこともできる.タスクスケジューラ robocopyでググれば詳しい説明を見つけられるだろう.

windowsのファイルも重要なファイルについてはバックアップを取るのは重要で,そのバックアップを簡単に行うのにwindowsの標準コマンドrobocopyがお勧めだ.

たとえばd-driveからi-driveに,新しいファイルをコピーして,d-driveで削除しあファイルはi-driveでも削除するには,windowsのコマンドプロンプトから次のようにする

robocopy d:\ i:\ /mir /DCOPY:T /XD $RECYCLE.BIN$ "System Volume Information"

It is important to take backup for important windows files. To backup easily I would like recommend to use standard windows command "robocopy". If you want to take back up of drive D to drive I, by copying new files from D to I and deleting old files that exist only I, you can run the following command from command prompt of windows

robocopy d:\ i:\ /mir /DCOPY:T /XD $RECYCLE.BIN$ "System Volume Information"

You can also set automatic backup at certain time of a week or a day by using task scheduler of windows. You can find explanation for this by google search with "robocopy" and "task scheduler"