我需要一个脚本在Powershell中安装IIS,即Framework 3.5 e 4.5.2。我需要这个来证明我在实习方面的工作。我在Google和博客上看,但我认为没有什么安全和好方法可以解决我的问题
答案 0 :(得分:0)
据我所知,我们可以使用以下命令在Windows服务器中安装IIS:
Install-WindowsFeature -name Web-Server -IncludeManagementTools
然后,您应该从网络下载Microsoft .NET Framework 3.5 Service pack和Microsoft .NET Framework 4.5.2 Service pack并使用以下命令进行安装。
Install-WindowsFeature Net-Framework-Core -source thefilepathofthenetframeworkfile.
结果: