I am trying to lock the local admin account on a remote computer that i'm connected to using a CIM session:
$CIMSession = New-CimSession -ComputerName ComputerOne -ErrorAction Stop
$adminCheck = Get-CimInstance -Query "SELECT * FROM Win32_UserAccount WHERE Name='AdminAccount'" -CimSession $CIMSession
When I enumerate all the available CIM class methods available for that object, only one shows up:
PS C:\windows\system32> $adminCheck.CimClass.CimClassMethods
Name ReturnType Parameters Qualifiers
---- ---------- ---------- ----------
Rename UInt32 {Name} {Implemented, MappingStrings}
...figures this is due to some methods not showing completely, perhaps? So I tried setting it using Invoke-CimMethod
.
$adminCheck | Invoke-CimMethod -MethodName Put -Arguments Lockout,$true
- This doesn't work which I believe is syntactically incorrect, as it errors out as well.
Tried: $adminCheck.LockOut = $true
, out of just trying stuff and to no surprise it doesn't work either. Which would make sense since the instance is just referenced on my computer.
So, in my last attempt I tried:
$adminCheck | Set-CimInstance -Property @{Lockout=$true}
# and
$adminCheck | Set-CimInstance -Property @{Lockout=$true} -CimSession $CIMSession
which didn't work, as well.
Question: Is there no method, to save the newly modified value for that CIM instance property?
I am basing this off of the older Get-WMIObject
cmdlet which will allow you to set the property by saving it using the .put()
method.
Get-WmiObject -Class Win32_UserAccount -ComputerName ComputerOne -Filter "Name='AdminAccount'" |
ForEach-Object -Process {
$_.Lockout = $true;
$_.put()
}
just looking to switch over completely to the newer CIM cmdlets