Created
January 31, 2018 17:08
-
-
Save EmmanuelTsouris/5782f8a7af95194e90ff8973421473d6 to your computer and use it in GitHub Desktop.
Two simple lines of PowerShell that install IIS and .Net
This file contains 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
# 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