Skip to content

Commit defec55

Browse files
authored
Clarify Get-CMSoftwareUpdateGroup CI_ID Usage
EXAMPLE #2 Uses an example ID of "ST10000D" (in the common CM Object ID format of <site code>+<six alphanumeric digits>), except that the 'Id' parameter is an Int32 type (no letters allowed). It is, in fact, looking for the Config Item ID of the Software Update Group (which is an integer). Additionally, added language in both the example and the Id parameter description to make it clear the parameter wants the Config Item ID (CI_ID) and not another ID type, such as the CI Unique ID.
1 parent 963a530 commit defec55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sccm-ps/ConfigurationManager/Get-CMSoftwareUpdateGroup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ PS XYZ:\> Get-CMSoftwareUpdateGroup
4444

4545
This command gets all software update groups.
4646

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

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

5454
### Example 3: Get a software update group by using a name
5555
```
@@ -93,7 +93,7 @@ Accept wildcard characters: False
9393
```
9494
9595
### -Id
96-
Specifies an array of IDs of software update groups.
96+
Specifies an array of Config Item IDs (CI_ID) of software update groups.
9797
9898
```yaml
9999
Type: Int32[]

0 commit comments

Comments
 (0)