web-dev-qa-db-ja.com

コマンドラインからAzure Storage Emulator Dataをクリアする方法は?

私のソリューションはAzureエミュレーターを使用しています。 Azure Storage EmulatorBlobsQueuesおよびテーブル手動アクションを実行する必要はありません。コマンドライン、できればPowerShellから実行できるようにする必要があります。

Visual Studio 2015のサーバーエクスプローラー、Azureノード:

enter image description here

AzureStorageEmulator.exeヘルプは、次のコマンドを返します。

  • AzureStorageEmulator.exe init:エミュレーターデータベースと構成を初期化します。
  • AzureStorageEmulator.exe start:エミュレーターを起動します。
  • AzureStorageEmulator.exe stop:エミュレーターを停止します。
  • AzureStorageEmulator.exeステータス:現在のエミュレータステータスを取得します。
  • AzureStorageEmulator.exe clear:エミュレーターのすべてのデータを削除します。
  • AzureStorageEmulator.exe help [コマンド]:一般またはコマンド固有のヘルプを表示します。

ただし、「クリア」を試行すると、以下が返されます。

次のサービスのユーザーデータは正常に消去されました:なし

23
Jesper Wilfing

オプス!私の間違い、正しいコマンドは:

C:\ Program Files(x86)\ Microsoft SDKs\Azure\Storage Emulator

.\AzureStorageEmulator.exe clear all
40
Jesper Wilfing