Get JCSystemKB - TheJumpCloud/support GitHub Wiki
external help file: JumpCloud-help.xml Module Name: JumpCloud online version: https://github.com/TheJumpCloud/support/wiki/ schema: 2.0.0
Returns applied hotfixes/KBs on Windows devices
Get-JCSystemKB [<CommonParameters>]
Get-JCSystemKB [-SystemID <String[]>] [-KB <String[]>]
[<CommonParameters>]
The Get-JCSystemKB function returns all applied hotfixes/KBs on Windows Devices. The function can be used to filter based on a specific hotfix/KB, a specific system, or both. An object is returned that contains information on the hotfix/KB including the description of the KB and when it was installed
PS C:\> Get-JCSystemKB
This example returns all installed hotfixes/KBs on all of the Windows devices in the organization
PS C:\> Get-JCSystemKB -SystemID 59f2s305383coo7t369ef7r2
This example returns all installed hotfixes/KBs on one Windows device
PS C:\> Get-JCSystemKB -KB KB5000736
This example returns all devices that have the hotfix/KB installed
PS C:\> Get-JCSystemKB -KB KB5000736 -SystemID 59f2s305383coo7t369ef7r2
This example checks a specific system for a specific hotfix/KB
PS C:\> Get-JCSystem -hostname JC-Windows-01 | Get-JCSystemKB
This example uses pipeline input from Get-JCSystem to find all installed KBs for the system with the hostname JC-Windows-01
The KB(s) you wish to search for. Accepts comma separated strings. Ex: KB5006670, KB5005699, KB5000736, ...
Type: System.String[]
Parameter Sets: SearchFilter
Aliases: hotfix_id
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The System Id(s) of the system(s) you want to search for KBs. Accepts comma separated strings. Ex: 618972a694380d17e4145626, 63210fc54861961ac387f0ac, ...
Type: System.String[]
Parameter Sets: SearchFilter
Aliases: system_id, id, _id
Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
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.