windowsAzure模拟器错误

Failed to initialize Microsoft Azure storage emulator. Unable to open wait handle

无法初始化微软Azure存储模拟器。无法打开等待句柄

调试windowsAzure sdk2.8 出现上面的错误

google如下解决方法

1、I have same issue after Azure tools update (2.3 version). After hours of research I found strange solution - set 'Start Windows Azure storage emulator' to 'False' (in properties of Azure project).

右键 云项目属性  设置 strt Microsoft Azure sorage emulator(“启动Windows Azure存储模拟器')  为 fasle

100

我也这样的方法解决

2、Check if you are running BitTorrent/uTorrent or similar software using port 10000.

Check Steve Marx' blog post about the issue. http://blog.smarx.com/posts/windows-azure-storage-emulator-the-process-cannot-access-the-file-because-it-is-being-used-by-another-process

In case that post disappears, the command to check if any other software is using that port is:

C:Userssmarx>netstat -p tcp -ano | findstr :10000
  TCP    127.0.0.1:10000        0.0.0.0:0              LISTENING       3672
原文地址:https://www.cnblogs.com/z_lb/p/5194702.html