Re: Check WMI issue
Posted: Wed Jul 15, 2015 4:03 pm
Looks like the field "State" is Running but it could be looking for the "Status" field which is shown as "UNKNOWN".
This means some additional permissions issues I gather...
Also one question about further obfuscating the password so it is saved in hash and not plain text in resource.cfg? Is that possible?
Code: Select all
'Started' => 'True',
'Status' => 'UNKNOWN',
'DisplayName' => 'DPS',
'State' => 'Running',
'Name' => 'DPS',
'StartMode' => 'Unknown'
Code: Select all
'Started' => 'True',
'Status' => 'OK',
'DisplayName' => 'DHCP Client',
'State' => 'Running',
'Name' => 'Dhcp',
'StartMode' => 'Auto'Also one question about further obfuscating the password so it is saved in hash and not plain text in resource.cfg? Is that possible?