Get-CMThirdPartyUpdateCatalog
Get a third-party updates catalog.
Syntax
Get-CMThirdPartyUpdateCatalog
[-IsCustomCatalog <Boolean>]
[-IsSyncEnabled <Boolean>]
[[-Name] <String>]
[-PublisherName <String>]
[-SiteCode <String>]
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[<CommonParameters>]
Get-CMThirdPartyUpdateCatalog
[-Id] <String>
[-IsCustomCatalog <Boolean>]
[-IsSyncEnabled <Boolean>]
[-PublisherName <String>]
[-SiteCode <String>]
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[<CommonParameters>]
Description
Use this cmdlet to get a third-party updates catalog. For more information, see Enable third-party software updates.
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 a catalog by ID
This example gets a third-party update catalog by its ID.
Get-CMThirdPartyUpdateCatalog -Id $id
Example 2: Get a catalog by name
This example gets a third-party update catalog by its name.
Get-CMThirdPartyUpdateCatalog -Name $name
Example 3: Get all catalogs for a site
This example gets all third-party update catalogs for a site by the site code.
Get-CMThirdPartyUpdateCatalog -SiteCode $siteCode
Example 4: Get all custom catalogs
This example gets all custom third-party update catalogs.
Get-CMThirdPartyUpdateCatalog -IsCustomCatalog $true
Parameters
-DisableWildcardHandling
This parameter treats wildcard characters as literal character values. You can't combine it with ForceWildcardHandling.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
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 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Id
Specify the ID of the catalog. The format is a standard GUID.
Type: | String |
Aliases: | CatalogId |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-IsCustomCatalog
To filter the results for only custom catalogs, set this parameter to $true
.
Type: | Boolean |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-IsSyncEnabled
To filter the results for only catalogs that you enable for sync, set this parameter to $true
.
Type: | Boolean |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
Specify the name of the catalog.
Type: | String |
Aliases: | CatalogName |
Position: | 0 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | True |
-PublisherName
Specify the name of the catalog's publisher.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | True |
-SiteCode
Specify the site code to filter the results for a specific site.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
None
Outputs
IResultObject[]
IResultObject
Notes
This cmdlet returns the SMS_ISVCatalogs WMI class object.