wbadmin バックアップが実行できません

wbadmin バックアップが実行できません

Windows 10 では Windows バックアップを実行できません。次のような結果になりました:

wbadmin start backup -backupTarget:\\192.168.188.1\Backup\ -include:C:,D:,E:,F: -allCritical -quiet
wbadmin 1.0 - Backup command-line tool
(C) Copyright 2013 Microsoft Corporation. All rights reserved.


Note: The backed up data cannot be securely protected at this destination.
Backups stored on a remote shared folder might be accessible by other
people on the network. You should only save your backups to a location
where you trust the other users who have access to the location or on a
network that has additional security precautions in place.

Retrieving volume information...
This will back up (EFI System Partition),Download(D:),Utils(E:),Doc(F:),System(C:),Recovery (450.00 MB)
to \\192.168.188.1\Backup\.
The server threw an exception.
PS C:\WINDOWS\system32>

C:\Windows\Logs\WindowsBackup には何も存在しません。

答え1

私も同じ問題を抱えていました。

  • イベントログエントリなし
  • エラーや警告はありませんC:\Windows\Logs\WindowsBackup

私にとって効果があったのは次の通りです:

  1. WindowsImageBackupターゲットドライブ上のディレクトリを削除する
  2. 管理者権限を持つコマンド プロンプトで次のコマンドを実行します。
wbadmin delete catalog

その後、次のコマンドは期待どおりにバックアップされました。

wbadmin start backup -backupTarget:Z: -include:C: -allCritical -quiet

関連情報