It seems that something goes wrong in my compute emulator and I can't use it normally, so I followed the instruction here to try to reset my emulator:
write-host "========= Resetting Azure Comoute Emulator & Dev Storage... ========="
$CSRunFile = "C:\Program Files\Microsoft SDKs\Windows Azure\Emulator\csrun.exe"
$DSInitFile = "C:\Program Files\Microsoft SDKs\Windows Azure\Emulator\devstore\DSInit.exe"
& $CSRunFile @("/devstore:shutdown")
& $CSRunFile @("/devfabric:shutdown")
Start-Process $DSInitFile @("/ForceCreate", "/silent") -Wait
& $CSRunFile @("/devfabric:shutdown")
& $CSRunFile @("/devfabric:clean")
& $CSRunFile @("/devfabric:start")
& $CSRunFile @("/devstore:start")
& $CSRunFile @("/removeAll")
write-host "Resetting Azure Comoute Emulator & Dev Storage Done!"
But I blocked when I tried to shutdown the /devfabric
C:\Program Files\Microsoft SDKs\Windows Azure\Emulator>csrun.exe /devfabric:shutdown
Windows(R) Azure(TM) Desktop Execution Tool version 1.8.0.0 for Microsoft(R) .NET Framework 4.0
Copyright (c) Microsoft Corporation. All rights reserved.
Shutting down the compute emulator...
Using session id 1
^C
C:\Program Files\Microsoft SDKs\Windows Azure\Emulator>
I can't get a respond for a long time.
Anyone could help with it?