A reload is not required according to the accepted answer.
- Open the Powershell window in administrator mode.
- Type the following command:
netstat -p tcp -ano | findstr :10000 netstat -p tcp -ano | findstr :10000
This will tell you which process ID uses the port designated by the emulator. Use the Details tab in the Task Manager section to find a related application for the process ID. This is often something like bittorrent / utorrent.
- Kill this process and you're done.
..
But if you absolutely must run a conflicting application during development, you can change the ports used by the emulator.
To change the ports used by the emulator, then in powershell:
chdir "C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator" .\WAStorageEmulator stop
Then edit the configuration file according to the accepted answer and just save it.
C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\WAStorageEmulator.exe.config
You do not need to copy it anywhere. Then go back to Powershell and:
.\WAStorageEmulator status .\WAStorageEmulator start
source share