我正试图编写一个脚本来确定Windows 10上是否已安装IIS。如果未安装IIS,我想为用户提供安装它并通过PowerShell进行安装。
我在这里看到了该帖子:Check whether IIS is installed or not
但是运行Get-WindowsFeature Web-Server
时得到not recognized as the name of a cmdlet
。所以我尝试运行Get-WindowsOptionalFeature Web-Server
,但返回Get-WindowsOptionalFeature : A positional parameter cannot be found that accepts argument 'Web-Server'.
如何检查IIS是否已安装?我该如何安装?
答案 0 :(得分:1)
这未经测试,但似乎可行。当然,您必须决定要实际安装的功能。
$IIS = Get-WindowsOptionalFeature -Online -FeatureName “IIS-WebServer”
if ($IIS.State -eq "Disabled") {
Enable-WindowsOptionalFeature -FeatureName $IIS.FeatureName -Online
}
您可以使用Get-WindowsOptionalFeature -Online
通过查看结果的State
属性来确定启用了什么。