Skip to content

Instantly share code, notes, and snippets.

@tomfanning
Created November 18, 2018 13:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomfanning/8a5e9aa0cc4e217b85cd67739738a20c to your computer and use it in GitHub Desktop.
Save tomfanning/8a5e9aa0cc4e217b85cd67739738a20c to your computer and use it in GitHub Desktop.
Install .net core hosting bundle 2.1.5 on IIS
$ProgressPreference='SilentlyContinue'
wget https://download.visualstudio.microsoft.com/download/pr/86df96bb-384c-4d7a-82ce-2e4c2c871189/045870c1ab4004219cb312039c5a64d5/dotnet-hosting-2.1.5-win.exe -outfile .\dnc-hosting.exe
start-process -wait .\dnc-hosting.exe -args "/install /quiet /norestart" -nonewwindow
iisreset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment