@@ -57,7 +57,7 @@ $disk = Get-CimInstance -ClassName Win32_LogicalDisk -KeyOnly
5757Get-CimAssociatedInstance -InputObject $disk[1]
5858```
5959
60- This set of commands retrieves the instances of the class named Win32_LogicalDisk and stores the
60+ This set of commands retrieves the instances of the class named ** Win32_LogicalDisk** and stores the
6161information in a variable named ` $disk ` using the ` Get-CimInstance ` cmdlet. The first logical disk
6262instance in the variable is then used as the input object for the ` Get-CimAssociatedInstance ` cmdlet
6363to get all the associated CIM instances of the specified CIM instance.
@@ -200,7 +200,7 @@ Accept wildcard characters: False
200200
201201# ## -Namespace
202202
203- Specifies the namespace for the CIM operation. The default namespace is root/cimv2 .
203+ Specifies the namespace for the CIM operation. The default namespace is ** root/CIMV2** .
204204
205205> [!NOTE]
206206> You can use tab completion to browse the list of namespaces, because PowerShell gets a list of
@@ -254,11 +254,11 @@ A URI consists of a prefix and a path to a resource. For example:
254254By default, if you don't specify this parameter, the DMTF standard resource URI
255255` http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/` is used and the class name is appended to it.
256256
257- **ResourceURI ** can only be used with CIM sessions created using the WSMan protocol, or when
257+ **ResourceUri ** can only be used with CIM sessions created using the WSMan protocol, or when
258258specifying the **ComputerName** parameter, which creates a CIM session using WSMan. If you specify
259259this parameter without specifying the **ComputerName** parameter, or if you specify a CIM session
260260created using DCOM protocol, you get an error, because the DCOM protocol doesn't support the
261- **ResourceURI ** parameter.
261+ **ResourceUri ** parameter.
262262
263263If both the **ResourceUri** parameter and the **Filter** parameter are specified, the **Filter**
264264parameter is ignored.
@@ -284,7 +284,7 @@ name.
284284By default, the value of this parameter is null, and all associated CIM instances are returned.
285285
286286You can filter the association results to match a specific class name. Filtering happens on the
287- server. If this parameter isn't specified, `Get-CIMAssociatedInstance ` returns all existing
287+ server. If this parameter isn't specified, `Get-CimAssociatedInstance ` returns all existing
288288associations. For example, if class A is associated with classes B, C and D, then this parameter can
289289be used to restrict the output to a specific type (B, C or D).
290290
0 commit comments