Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify Get-CMSoftwareUpdateGroup CI_ID Usage #280

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sccm-ps/ConfigurationManager/Get-CMSoftwareUpdateGroup.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ PS XYZ:\> Get-CMSoftwareUpdateGroup

This command gets all software update groups.

### Example 2: Get a software update group by using an ID
### Example 2: Get a software update group by using a Config Item ID (CI_ID)
```
PS XYZ:\> Get-CMSoftwareUpdateGroup -Id "ST10000D"
PS XYZ:\> Get-CMSoftwareUpdateGroup -Id "19060233"
```

This command gets a software update group that has the ID ST10000D.
This command gets a software update group with the Config Item ID "19060233".

### Example 3: Get a software update group by using a name
```
Expand Down Expand Up @@ -93,7 +93,7 @@ Accept wildcard characters: False
```

### -Id
Specifies an array of IDs of software update groups.
Specifies an array of Config Item IDs (CI_ID) of software update groups.

```yaml
Type: Int32[]
Expand Down