PowerShell Azure存储模拟器

时间:2018-09-27 21:58:33

标签: azure powershell storage azure-storage-emulator

我正在尝试编写PowerShell脚本来启动开发环境所需的所有服务,并且正在努力寻找启动Azure存储模拟器的方法。我所需要的只是一种启动服务的方式,但是我在网上阅读的所有内容都无法解决问题。

谢谢。

1 个答案:

答案 0 :(得分:2)

手动启动Azure存储模拟器时,您可以找到以下命令行:AzureStorageEmulator.exe start,其屏幕截图如下: enter image description here

因此在您的Powershell脚本中,您只需运行以下cmd命令行即可:

cmd /c "C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" start

然后该服务启动,屏幕截图如下: enter image description here