I'm using IIS Express to create a virtual directory at http://localhost:5000/ and received this error:

Unable to create the virtual directory. The URL 'http://localhost:5000/' is already mapped to a different folder...

This is because I've used the port 5000 for an old project before and it's no longer needed.

My question is, how can I remove the old mapping using IIS Express so I can create the virtual directory at the same port again?

Thanks

link|improve this question

feedback

1 Answer

up vote 28 down vote accepted

You should be able to accomplish this in one of two ways.

  • You can remove the old project, or change its port using WebMatrix, which has an administration interface for IIS Express.
  • You can also do it by hand, by modifying the applicationhost.config file directly. The file is located in the %userprofile%\documents\IISexpress\config folder. You can find the project configuration under the <system.applicationHost>/<sites> element.
link|improve this answer
I used WebMatrix and it worked. Thanks! – Leon Apr 16 '11 at 10:13
2  
I also had to delete the site folder underneath %userprofile%\documents\my web sites\ before I was able to reuse the port number. – Tedford Nov 11 '11 at 23:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.