windows 2016 core 安装角色和功能
基本配置
sconfig
在powershell命令cmdlet中
查看已经启用的角色与功能
Get-WindowsFeature
安装IIS角色
Install-WindowsFeature web-server
安装 .NET Extensibility4.5
install-windowsfeature Web-Net-Ext45
安装 ASP.NET 4.7
install-windowsfeature web-asp-net45
可以将上面几个命令合并在一起执行
Install-WindowsFeature web-server,Web-Net-Ext45,web-asp-net45
评论已关闭