3 lines
218 B
PowerShell
3 lines
218 B
PowerShell
$connectionWMI = Invoke-WmiMethod -Class OOB_Service -Namespace "ROOT\Intel_ME:OOB_Service" -ComputerName "localhost" -Name "GetLocalAdminCredentials"
|
|
$user = $connectionWMI.Username
|
|
$password = $connectionWMI.Password |