Skip to content

Instantly share code, notes, and snippets.

@jarnohenneman
Created August 11, 2014 09:45
Show Gist options
  • Save jarnohenneman/9e8e5872935ff55af360 to your computer and use it in GitHub Desktop.
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…
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