gpt4 book ai didi

powershell - Powershell Web服务器>应用程序开发设置

转载 作者:行者123 更新时间:2023-12-02 23:44:39 32 4
gpt4 key购买 nike

我正在尝试编写一个Powershell脚本来激活下面的所有功能

Web Server (IIS) > Web Server > Application Development



但是对于我的一生,我无法在线找到语法。我已经导入了 servermanager,甚至运行了下面的代码来找到命令列表,但似乎找不到我真正需要的。
Get-WindowsFeature | 
Where-Object {$_.Installed -match “True”} |
Select-Object -ExpandProperty Name |
Write-Host

在GUI中,这就是我想要的

编辑

在使用 Get-WindowsFeature Web-Server进行一些工作之后,我能够找到 Web-App-Dev命令引用了我要安装的功能。但是,并非所有列表都列出。运行以下命令后
Add-WindowsFeature Web-App-Dev

仅安装以下内容

我已经尝试过这种“解决方法”,但是得到的结果相同。有谁知道如何在“应用程序开发”节点中安装每个功能?
$features = Get-WindowsFeature Web-App-Dev
$subFeatures = $features.SubFeatures

foreach($item in subFeatures)
{
Add-WindowsFeature $item
}

最佳答案

根据文档。 Windows Server 2008 R2之后,可以将Add-WindowsFeature用作Install-WindowsFeature的别名。
https://technet.microsoft.com/en-us/library/jj205467(v=wps.630).aspx

您可以为此使用选项IncludeAllSubFeature。
Install-WindowsFeature Web-App-Dev -IncludeAllSubFeature

关于powershell - Powershell Web服务器>应用程序开发设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28441741/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com