Lets look at the Admin Password Status.
AdminPasswordStatus
Data type: uint16
Access type: Read-only
System hardware security settings for administrator password status.
Value |
Meaning |
1 |
Disabled |
2 |
Enabled |
3 |
Not Implemented |
4 |
Unknown |
SELECT Case GS.AdminPasswordStatus0
when 1 then ‘Disabled’
when 2 then ‘Enabled’
when 3 then ‘Not Implemented’
when 4 then ‘Unknown’
else ‘Not Defined’ end AS ‘Admin Password Status’,
Count(‘Admin Password Status’) AS ‘Count’
FROM v_GS_COMPUTER_SYSTEM GS
GROUP BY GS.AdminPasswordStatus0
Order by ‘Admin Password Status’
Recent Comments