Skip to content

Instantly share code, notes, and snippets.

@EmmanuelTsouris
Created January 31, 2018 17:08
Show Gist options
  • Save EmmanuelTsouris/5782f8a7af95194e90ff8973421473d6 to your computer and use it in GitHub Desktop.
Save EmmanuelTsouris/5782f8a7af95194e90ff8973421473d6 to your computer and use it in GitHub Desktop.
Two simple lines of PowerShell that install IIS and .Net
# Instal IIS
Install-WindowsFeature -name Web-Server -IncludeManagementTools
# Install .Net
Install-WindowsFeature Net-Framework-Core
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment