Assuming that you have all the files necessary to run the web application in the project folder, you should be able to create a site in IIS Express and run it.
Here's what you probably need to add to the IIS Express configuration file. The file is usually located in the folder "C: \ Users \\ Documents \ IISExpress \ config \ applicationhost.config".
Below you will need to change the path to the website and make sure that you are correctly attached to it. You may need to change the port number if it conflicts with other websites that you want to keep.
<sites> <site name="MyWebsite" id="1" serverAutoStart="false"> <application path="/"> <virtualDirectory path="/" physicalPath="<USB Drive>:\<FolderToMyWebsite>" /> </application> <bindings> <binding protocol="http" bindingInformation=":8080:localhost" /> </bindings> </site> <sites>
source share