Remove-CMWindowsFirewallPolicy

Remove-CMWindowsFirewallPolicy

Removes Windows Firewall policies for Endpoint Protection.

構文

Parameter Set: SearchByNameMandatory
Remove-CMWindowsFirewallPolicy -Name <String[]> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByIdMandatory
Remove-CMWindowsFirewallPolicy -Id <String[]> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByValueMandatory
Remove-CMWindowsFirewallPolicy -InputObject <IResultObject> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The Remove-CMWindowsFirewallPolicy cmdlet removes one or more Windows Firewall policies Microsoft System Center 2012 Endpoint Protection in Microsoft System Center 2012 Configuration Manager. When you remove a Windows Firewall policy, System Center 2012 Configuration Manager removes the policy from the computers on which you deployed the policy.

パラメーター

-Force

Performs the action without a confirmation message.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Id<String[]>

Specifies an array of IDs of Windows Firewall policies.

エイリアス

CIId

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-InputObject<IResultObject>

Specifies a CMWindowsFirewallPolicy object. To obtain a CMWindowsFirewallPolicy object, use the Get-CMWindowsFirewallPolicy cmdlet.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Name<String[]>

Specifies an array of Windows Firewall policy names.

エイリアス

LocalizedDisplayName

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Confirm

コマンドレットを実行する前に、ユーザーに確認を求めます。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-WhatIf

コマンドレットを実行するとどのような結果になるかを表示します。コマンドレットは実行されません。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

Example 1: Remove a Windows Firewall policy by using a name

This command removes the Windows Firewall policy that has the ID WFPContoso01.

PS C:\> Remove-CMWindowsFirewallPolicy -Name "WFPContoso01"

Example 2: Remove a Windows Firewall policy by using an object variable

The first command gets the CMWindowsFirewallPolicy object that has the ID 16777568 and stores it in the $WFPobj variable.

The second command removes the Windows Firewall policy stored in the $WFPobj variable.

PS C:\> $WFPobj=Get-CMWindowsFirewallPolicy -Id "16777568"
PS C:\> Remove-CMWindowsFirewallPolicy -InputObject $WFPobj

関連トピック

Get-CMWindowsFirewallPolicy

New-CMWindowsFirewallPolicy

Set-CMWindowsFirewallPolicy