-
Notifications
You must be signed in to change notification settings - Fork 2
Get MdeBaselineConfiguration
Jan-Henrik Damaschke edited this page Nov 23, 2022
·
1 revision
Retrieves a list of all the possible security baselines assessment configurations and settings for all the available benchmarks.
Get-MdeBaselineConfiguration [[-filter] <String>] [<CommonParameters>]
If no parameters are specified, returns all Defender for Endpoint baseline configurations.
$machines = Get-MdeBaselineConfiguration
$machines = Get-MdeBaselineConfiguration -filter "`$filter=id+eq+'123'"
Optional. Specifies the filter for baseline configurations. A filter is supported for "id", "name", "operatingSystem", "operatingSystemVersion", "status", "settingsNumber", "passedDevices" and "totalDevices".
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
PSCustomObject. The Get-MdeBaselineConfiguration function returns a list of or a single PSCustomObject containing the parsed baseline configuration objects.
Author: Jan-Henrik Damaschke