I can get-WmiObject but where is the set-WmiObject ?
If I do this:
PS D:\eldocs_4\csc\charles\ps\iisexamples> get-WmiObject
win32_computersystem | Get-Member | more
TypeName:
System.Management.ManagementObject#root\cimv2\Win32_ComputerSystem
Name MemberType Definition
---- ---------- ----------
.....<snip>
Caption Property System.String Caption {get;set;}
....
How do I set the caption?
$myob2 = get-WmiObject win32_computersystem
$myob2.Caption = "My New Value"
Then what can Ido to save it back to the system?
--
Romans 12:1-3



