Skip to content

Latest commit

 

History

History
216 lines (166 loc) · 4.98 KB

Get-CMDetectedMalware.md

File metadata and controls

216 lines (166 loc) · 4.98 KB

description: Gets detected malware. external help file: AdminUI.PS.dll-Help.xml Module Name: ConfigurationManager ms.date: 05/02/2019 schema: 2.0.0 title: Get-CMDetectedMalware

Get-CMDetectedMalware

SYNOPSIS

Gets detected malware.

SYNTAX

ByName (Default)

Get-CMDetectedMalware [-ThreatCategory <MalwareThreatCategory>] [-ThreatName <String>]
 [-DisableWildcardHandling] [-ForceWildcardHandling] [<CommonParameters>]

ByCollection

Get-CMDetectedMalware -Collection <IResultObject> [-ThreatCategory <MalwareThreatCategory>]
 [-ThreatName <String>] [-DisableWildcardHandling] [-ForceWildcardHandling] [<CommonParameters>]

ByCollectionId

Get-CMDetectedMalware -CollectionId <String> [-ThreatCategory <MalwareThreatCategory>] [-ThreatName <String>]
 [-DisableWildcardHandling] [-ForceWildcardHandling] [<CommonParameters>]

ByCollectionName

Get-CMDetectedMalware -CollectionName <String> [-ThreatCategory <MalwareThreatCategory>] [-ThreatName <String>]
 [-DisableWildcardHandling] [-ForceWildcardHandling] [<CommonParameters>]

ByThreatId

Get-CMDetectedMalware -ThreatId <String> [-DisableWildcardHandling] [-ForceWildcardHandling]
 [<CommonParameters>]

DESCRIPTION

The Get-CMDetectedMalware cmdlet gets detected 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: Get all detected malware

PS ABC:\> Get-CMDetectedMalware

This command gets all detected malware.

Example 2: Get all detected malware for a collection

PS ABC:\> Get-CMDetectedMalware -CollectionName "testCollection"

This command gets all detected malware for the collection named testCollection.

Example 3: Get all detected malware by threat name

PS ABC:\> Get-CMDetectedMalware -ThreatName "Virus:DOS/EICAR_Test_File"

This command gets all detected malware named Virus:DOS/EICAR_Test_File.

PARAMETERS

-Collection

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

Type: IResultObject
Parameter Sets: ByCollection
Aliases:

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

-CollectionId

Specifies the ID of a collection.

Type: String
Parameter Sets: ByCollectionId
Aliases:

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

-CollectionName

Specifies the name of a collection.

Type: String
Parameter Sets: ByCollectionName
Aliases:

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

-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

-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

-ThreatCategory

Specifies a malware threat category object. To obtain a malware threat category object, use the Get-CMMalwareThreatCategory cmdlet.

Type: MalwareThreatCategory
Parameter Sets: ByName, ByCollection, ByCollectionId, ByCollectionName
Aliases:

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

-ThreatId

Specifies the ID of a threat.

Type: String
Parameter Sets: ByThreatId
Aliases:

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

-ThreatName

Specifies the name of a threat.

Type: String
Parameter Sets: ByName, ByCollection, ByCollectionId, ByCollectionName
Aliases: Name

Required: False
Position: Named
Default value: None
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

IResultObject#SMS_TopThreatSummary

IResultObject[]#SMS_TopThreatSummary

NOTES

RELATED LINKS

Unblock-CMDetectedMalware