使用Powershell安装IIS和Framework 3.5 e 4.5.2。我需要一个脚本来安装IIS,并尝试确保我的实习安全

时间:2019-05-28 15:49:44

标签: powershell iis

我需要一个脚本在Powershell中安装IIS,即Framework 3.5 e 4.5.2。我需要这个来证明我在实习方面的工作。我在Google和博客上看,但我认为没有什么安全和好方法可以解决我的问题

1 个答案:

答案 0 :(得分:0)

据我所知,我们可以使用以下命令在Windows服务器中安装IIS:

Install-WindowsFeature -name Web-Server -IncludeManagementTools

然后,您应该从网络下载Microsoft .NET Framework 3.5 Service packMicrosoft .NET Framework 4.5.2 Service pack并使用以下命令进行安装。

Install-WindowsFeature Net-Framework-Core -source thefilepathofthenetframeworkfile.

结果:

enter image description here