web-dev-qa-db-ja.com

Windows7バックアップ-古いバックアップ範囲を自動的に削除します

仕事用PCのバックアップドライブとして使用する1TBのUSBドライブがあります。

ドライブは最終的にスペースを使い果たします。スペースの管理/バックアップの表示ダイアログを使用して古いバックアップを削除し、過去の期間のバックアップを削除する必要があります。

ドライブサイズを超えてエラーを発生させることなく、よりスマートな方法でバックアップスペースを管理し、できるだけ多くのバックアップを保持するようにWindowsバックアップに指示する方法はありますか?

3
RnR

私はこれを毎週実行するようにスクリプト化します:

wbadmin delete backup -keepversions:7 -quiet

簡単。ファイアアンドフォーゲット。

2
Brian

最新の3つのバックアップを保持するには:

wbadmin delete backup -keepversions:3 -quiet
  1. メモ帳を開き、行を入力します。
  2. ファイルをremove-old-backups.batとして保存します
  3. タスクスケジューラを開く(Windows 10)
  4. 「タスクの作成」を右クリックします
  5. [一般]:説明を入力します
  6. [トリガー]> [新規]> [スケジュールどおり]> [毎週]…(毎週実行する)
  7. [アクション]> [新規]> [プログラムの開始]>。batファイルを選択します

これでうまくいくはずです。

コマンドの情報:

wbadmin delete backup /?
wbadmin 1.0 - Backup command-line tool
(C) Copyright 2013 Microsoft Corporation. All rights reserved.

ERROR - Command syntax incorrect. Error: /?. See the command
syntax below.

Syntax: WBADMIN DELETE BACKUP
  {-keepVersions:<No. of copies> | -version:<VersionIdentifier> | -deleteOldest}
  [-backupTarget:<VolumeName>]
  [-machine:<BackupMachineName>]
  [-quiet]

Description:  Deletes the backups that you specify. If the
specified volume contains backups other than backups of the local
server, those backups will not be deleted.
To use this command, you must be a member of the Backup Operators group
or Administrators group.

Parameters:
-keepVersions  Specifies the number of the latest backups to
                keep. The value must be a positive integer. The option value
                -keepVersions:0 deletes all the backups.

-version       Version identifier of the backup in MM/DD/YYYY-HH:MM format.
                If you do not know the version identifier, at a command
                Prompt, type:  WBADMIN GET VERSIONS. Versions that are
                exclusively backups can be deleted using this
                command. Use WBADMIN GET ITEMS to view the version type.

-deleteOldest  Deletes the oldest backup.

-backupTarget  Specifies the storage location for the backup that you want
                to delete. The storage location for backups is a
                drive letter, a mount point, or a GUID-based volume path. This
                value only needs to be specified for locating backups that are
                not of the local computer. Information about backups for the
                local computer will be available in the backup catalog on the
                local computer.

-machine       Specifies the computer whose backup you want to
                delete. Useful when multiple computers were backed up to
                the same location. Should be used when -backupTarget is
                specified.

-quiet         Runs the command with no prompts to the user.

Remarks: One, and only one, of these parameters must be specified:
-keepVersions, -version, or -deleteOldest.

Examples:
WBADMIN DELETE BACKUP -version:03/31/2006-10:00
WBADMIN DELETE BACKUP -keepVersions:3
WBADMIN DELETE BACKUP -backupTarget:f: -deleteOldest
1
juFo

これはちょっと古いですが、答えは次のとおりです。いいえ。Windows(7)バックアップは古いバックアップを自動的に削除せず、(自動的に)削除する機能もありません。

それが必要な場合は、サードパーティのバックアップツールをお勧めします。

0
Nick