Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个 PowerShell 脚本来启动我的开发环境所需的所有服务,并且正在努力寻找一种启动 azure 存储模拟器的方法。我所需要的只是一种启动服务的方法,但我在网上阅读的所有内容都没有奏效。
提前致谢。
当你手动启动 azure storage emulator 时,你可以找到这个命令行:AzureStorageEmulator.exe start,截图如下:
AzureStorageEmulator.exe start
所以在你的 powershell 脚本中,你可以运行这个 cmd 命令行:
cmd /c "C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" start
然后服务启动,截图如下: