Skip to content

Latest commit

 

History

History
226 lines (168 loc) · 5.54 KB

Export-CMAntimalwarePolicy.md

File metadata and controls

226 lines (168 loc) · 5.54 KB

description: Exports an antimalware policy for Endpoint Protection. external help file: AdminUI.PS.dll-Help.xml Module Name: ConfigurationManager ms.date: 05/01/2019 schema: 2.0.0 title: Export-CMAntimalwarePolicy

Export-CMAntimalwarePolicy

SYNOPSIS

Exports an antimalware policy for Endpoint Protection.

SYNTAX

ExportByNameMandatory (Default)

Export-CMAntimalwarePolicy [-Force] -Name <String> -Path <String> [-DisableWildcardHandling]
 [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]

ExportByIdMandatory

Export-CMAntimalwarePolicy [-Force] -Id <String> -Path <String> [-DisableWildcardHandling]
 [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]

ExportByValueMandatory

Export-CMAntimalwarePolicy [-Force] -InputObject <IResultObject> -Path <String> [-DisableWildcardHandling]
 [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

The Export-CMAntiMalwarePolicy cmdlet exports an antimalware policy for System Center 2016 Endpoint Protection. Policies include information about the scan schedule, the types of files and folders to scan, and the actions to take when a scan detects malware.

Note

Run Configuration Manager cmdlets from the Configuration Manager site drive, for example PS XYZ:\>. For more information, see getting started.

EXAMPLES

Example 1: Export an antimalware policy by using an ID

PS XYZ:\>Export-CMAntiMalwarePolicy -Id "16777568" -Path "C:\Exports\Policy\AMPolicy05.xml"

This command exports an antimalware policy that has the ID 16777568 to the file that is named AMPollicy05.xml in the folder named C:\Exports\Policy.

Example 2: Export an antimalware policy by using a variable

PS XYZ:\> $AMPol01 = Get-CMAntiMalwarePolicy -Id "16777217"
PS XYZ:\> Export-CMAntiMalwarePolicy -InputObject $AMPol01 -Path "C:\Exports\Policy\AMPolicy05.xml"

The first command gets the antimalware policy object that has the ID 16777568, and then stores it in the $AMPol01 variable.

The second command exports the policy in $AMPol01 to the file that is named AMPolicy05.xml in the folder named C:\Exports\Policy.

PARAMETERS

-DisableWildcardHandling

This parameter treats wildcard characters as literal character values. You can't combine it with ForceWildcardHandling.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Force

Run the command without asking for confirmation.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ForceWildcardHandling

This parameter processes wildcard characters and may lead to unexpected behavior (not recommended). You can't combine it with DisableWildcardHandling.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Id

Specifies the policy that this cmdlet exports by using an ID.

Type: String
Parameter Sets: ExportByIdMandatory
Aliases: SettingsId

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-InputObject

Specifies the policy that this cmdlet exports by using an antimalware policy object. To obtain an antimalware policy object, use the Get-CMAntiMalwarePolicy cmdlet.

Type: IResultObject
Parameter Sets: ExportByValueMandatory
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-Name

Specifies the policy that this cmdlet exports by using a name.

Type: String
Parameter Sets: ExportByNameMandatory
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Path

Type: String
Parameter Sets: (All)
Aliases: FileName, FilePath, ExportFilePath

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet doesn't run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.ConfigurationManagement.ManagementProvider.IResultObject

OUTPUTS

System.Object

NOTES

RELATED LINKS

Get-CMAntiMalwarePolicy

Import-CMAntimalwarePolicy

Merge-CMAntimalwarePolicy

New-CMAntimalwarePolicy

Remove-CMAntiMalwarePolicy

Set-CMAntiMalwarePolicy