Remove-WebApplicationProxyApplication
Removes web applications published in Web 應用程式 Proxy.
語法
Parameter Set: ID
Remove-WebApplicationProxyApplication [-ID] <Guid[]> [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]
Parameter Set: Name
Remove-WebApplicationProxyApplication [-Name] <String> [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]
詳細描述
The Remove-WebApplicationProxyApplication cmdlet removes web applications published in Web 應用程式 Proxy. Specify web applications by name or by ID. If you specify a string that contains wildcard characters, * and ?, as the name, the cmdlet removes all the web applications that match that string.
When you remove a web application, Web 應用程式 Proxy drops any current connections for that application. The cmdlet does not uninstall the application from its backend server.
參數
-AsJob
別名 |
無 |
必要? |
false |
位置? |
named |
預設值 |
無 |
接受管線輸入? |
false |
接受萬用字元? |
false |
-CimSession<CimSession[]>
在遠端工作階段或遠端電腦上執行 Cmdlet。輸入電腦名稱或工作階段物件,例如 New-CimSession 或 Get-CimSession Cmdlet 的輸出。預設為本機電腦上的目前工作階段。
別名 |
Session |
必要? |
false |
位置? |
named |
預設值 |
無 |
接受管線輸入? |
false |
接受萬用字元? |
false |
-ID<Guid[]>
Specifies an array of GUIDs of web applications.
別名 |
ApplicationID |
必要? |
true |
位置? |
1 |
預設值 |
無 |
接受管線輸入? |
True (ByValue, ByPropertyName) |
接受萬用字元? |
false |
-Name<String>
Specifies a friendly name for the published web application. You can use wildcard characters.
別名 |
無 |
必要? |
true |
位置? |
1 |
預設值 |
無 |
接受管線輸入? |
false |
接受萬用字元? |
false |
-ThrottleLimit<Int32>
指定為執行此 Cmdlet 可建立的最大同時作業數。如果省略這個參數或輸入 0 的值,則 Windows PowerShell® 會根據在電腦上執行的 CIM Cmdlet 數目,計算 Cmdlet 的最佳節流限制。節流限制僅適用於目前 Cmdlet,不適用於工作階段或電腦。
別名 |
無 |
必要? |
false |
位置? |
named |
預設值 |
無 |
接受管線輸入? |
false |
接受萬用字元? |
false |
<CommonParameters>
此 Cmdlet 支援一般參數:-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer 與 -OutVariable。如需詳細資訊,請參閱 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。
輸入
輸入類型是您可以使用管線處理方式傳遞給 Cmdlet 的物件類型。
輸出
輸出類型是 Cmdlet 所發出的物件類型。
範例
Example 1: Remove all published applications
This command removes all of the published web applications.
PS C:\> Remove-WebApplicationProxyApplication
Example 2: Remove an application by using an ID
This command removes the application that has the specified ID.
PS C:\> Remove-WebApplicationProxyApplication -ID 616b2e81-bada-4abc-996a-b0c806eb6f45
Example 3: Remove an application by using a name
This command removes the application named ContosoApp.
PS C:\> Remove-WebApplicationProxyApplication -Name "ContosoApp"
Example 4: Remove applications that have names that contain a specified string
This command removes applications that have names that contain the string Contoso.
PS C:\> Remove-WebApplicationProxyApplication -Name "*Contoso*"
相關主題
Add-WebApplicationProxyApplication
Get-WebApplicationProxyApplication
Set-WebApplicationProxyApplication