Last active
April 20, 2023 02:07
-
-
Save vkhazin/6c068801fe6a793b0c0b3d9dee741cf1 to your computer and use it in GitHub Desktop.
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
# To get list of available features, run from PowerShell: Get-WindowsFeature | |
# To install IIS: | |
Install-WindowsFeature -name Web-Server -IncludeManagementTools | |
Install-WindowsFeature -name Web-Dyn-Compression | |
# To enable classic ASP: | |
Install-WindowsFeature -name Web-ASP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment