Created
August 11, 2014 09:45
-
-
Save jarnohenneman/9e8e5872935ff55af360 to your computer and use it in GitHub Desktop.
Change IIS express to Use64BitIISExpress instead of 32bit. In Visual Studio there is an option below Tools->Options->Projects & Solutions->Web Projects->Use 64 bit version of IIS Express for websites and projects. This might not always have desired effects there for my personal preference goes to changing the registry. Open the terminal as Admin…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Visual Studio 2012: | |
reg add HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\WebProjects /v Use64BitIISExpress /t REG_DWORD /d 1 | |
Visual Studio 2013: | |
reg add HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0\WebProjects /v Use64BitIISExpress /t REG_DWORD /d 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment