2015-02-10 85 views
1

我想寫激活下PowerShell的Web服務器>應用程序開發設置

Web服務器(IIS)> Web服務器>應用程序開發

但對於所有功能PowerShell腳本我的生活我無法在網上找到語法。我導入了servermanager,甚至運行下面的代碼來查找命令列表,但似乎找不到我需要的東西。

Get-WindowsFeature | 
    Where-Object {$_.Installed -match 「True」} | 
    Select-Object -ExpandProperty Name | 
    Write-Host 

從這裏的GUI就是我要找的

enter image description here

編輯

後與Get-WindowsFeature Web-Server一些工作,我能找到Web-App-Dev命令中引用的功能我正在嘗試安裝。但是,並非所有這些都被列出。運行以下命令

Add-WindowsFeature Web-App-Dev 

只有以下是安裝

enter image description here

之後,我已經試過這種「解決」,但是我得到了相同的結果。有誰知道如何在應用程序開發節點中安裝每個功能?

$features = Get-WindowsFeature Web-App-Dev 
$subFeatures = $features.SubFeatures 

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

最簡單的辦法什麼名字都是叫'GET-WindowsFeature *網絡*'。這顯示了一個很好的輸出,列出了所有功能的名稱,並匹配它們在GUI中的外觀。 https://msdn.microsoft.com/en-us/library/ee662312.aspx – Rory 2015-11-05 16:23:39

回答

0

使用Get-WindowsFeature一番調查後發現:

Web-App-Dev 

要安裝我用下面

#install Web Server (IIS) > Web Server > Application Development settings 
$features = Get-WindowsFeature Web-App-Dev 
$subFeatures = $features.SubFeatures -split " " 

foreach($item in $subFeatures) 
{ 
    Add-WindowsFeature $item 
} 
相關問題