Get-PatchBaseline Command | Vmware PowerCLI Reference

Get-PatchBaseline

This cmdlet retrieves all patch baselines or those specified by the provided cmdlet parameters.

Syntax

Get-PatchBaseline
[ [-TargetType ] < BaselineTargetType > ]
[-BaselineContentType < BaselineContentType[] > ]
[-Extension ]
[-Id < Int32[] > ]
[-Name < String[] > ]
[-Patch < Patch > ]
[-ProgressAction < ActionPreference > ]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
optional TargetType BaselineTargetType 1
Specifies the target type of the patch baselines you want to retrieve. The valid value is Host. This parameter is deprecated and will be removed in a following release.
optional BaselineContentType BaselineContentType[] named
Specifies the content type of the patch baselines you want to retrieve. The valid values are Both, Dynamic, and Static.
optional Extension SwitchParameter named
Specifies that you want to retrieve only Extension patch baselines.
optional Id Int32[] named
Specifies the IDs of the patch baselines you want to retrieve. Note: When a list of values is specified for the Id parameter, the returned objects would have an ID that matches exactly one of the string values in that list.
optional Name String[] named
Specifies the names of the patch baselines you want to retrieve.
optional Patch Patch named
  • pipeline
Specifies a patch that belongs to the patch baseline you want to retrieve.
optional ProgressAction ActionPreference named

Output

Examples

Example 1

Get-VM -Name VMHost | Get-PatchBaseline

Retrieves all patch baselines assigned to the VMHost host.

Example 2

Get-PatchBaseline -Entity VMHost -Inherit -Recurse

Retrieves all patch baselines assigned to the VMHost host and its parent inventory object.

Example 3

$patch = Get-Patch -Id 1Get-PatchBaseline -Patch $patch

Retrieves the patch baselines that contain the patch with ID 1.

Example 4

Get-PatchBaseline -Id 1,2,3

Retrieves the patch baselines with IDs 1, 2, and 3.

Related Commands

Patch

This cmdlet initializes staging of patches.

This cmdlet retrieves the available patches.

This cmdlet downloads new patches into the Update Manager repository.

PatchBaseline

This cmdlet retrieves patch baselines.

This cmdlet creates a new patch baseline.

This cmdlet modifies the properties of a patch baseline.