这个问题在新版的Azure emulator中会出现,很是郁闷。
大概说是的DDService.exe没找到,参考网友的做法,其实写个DDService就好了。于是用C随便写了一个如下
#include <stdio.h>
#include <stdlib.h>
int main()
{
char a,b,c;
scanf("%c%c%c",&a,&b,&c);
printf("%c%c%c",a,b,c);
fflush(stdin);
return 0;
}
然后在运行Azure Storage Explorer之前运行DDService.exe,让后别管它,打开Azure Storage Explorer 就会发现能够正常进入DevStorage了。
后来发现原因在于在新版的Azure中以前的DSService已经改名为DFService了。至于为什么自己随便写个就能用,就不得而知了。如果各位看官不想自己写这个EXE的话,可以直接下载下面链接中的东东 就能使用了。