@@ -100,14 +100,14 @@ Set-CimInstance -InputObject $x -Property @{VariableValue="somevalue"} -PassThru
100100This example retrieves the CIM instance objects filtered by the Query parameter in to a variable
101101` $x ` using ` Get-CimInstance ` , and then passes the contents of the variable to the ` Set-CimInstance `
102102cmdlet. ` Set-CimInstance ` then modifies the ** VariableValue** property to ** somevalue** . Because the
103- ** Passthru ** parameter is used, This example returns a modified CIM instance object.
103+ ** PassThru ** parameter is used, This example returns a modified CIM instance object.
104104
105105### Example 4: Set the CIM instance property
106106
107107This example retrieves the CIM instance object that is specified in the ** Query** parameter into a
108108variable ` $x ` using the ` Get-CimInstance ` cmdlet, and changes the ** VariableValue** property value
109109of the object to change. The CIM instance object is then saved using the ` Set-CimInstance ` cmdlet.
110- Because the ** Passthru ** parameter is used, This example returns a modified CIM instance object.
110+ Because the ** PassThru ** parameter is used, This example returns a modified CIM instance object.
111111
112112``` powershell
113113$x = Get-CimInstance -Query 'Select * from Win32_Environment where name="testvar"'
@@ -138,7 +138,7 @@ Set-CimInstance -Query 'Select * from Win32_Environment where name LIKE "testvar
138138This example creates a CIM instance with the specified properties using the ` New-CimInstance `
139139cmdlet, and retrieves its contents in to a variable ` $x ` . The variable is then passed to the
140140` Set-CimInstance ` cmdlet, which modifies the value of ** VariableValue** property to ** somevalue** .
141- Because the ** Passthru ** parameter is used, This example returns a modified CIM instance object.
141+ Because the ** PassThru ** parameter is used, This example returns a modified CIM instance object.
142142
143143``` powershell
144144$x = New-CimInstance -ClassName Win32_Environment -Property @{Name="testvar";UserName="domain\user"} -Key Name,UserName -ClientOnly
@@ -409,7 +409,7 @@ By default, this cmdlet returns no output.
409409
410410### Microsoft.Management.Infrastructure.CimInstance
411411
412- When you use the **Passthru ** parameter, this cmdlet returns the modified CIM instance object.
412+ When you use the **PassThru ** parameter, this cmdlet returns the modified CIM instance object.
413413
414414## NOTES
415415
0 commit comments