Where can I see the list of administrators in Windows 7?
Open the command prompt and type:
net user
It will display a list of all the users who are present.
To see if a user is a administrator, type
net user [username]
and look at the Local Group Memberships.
To get the list of local administrators from the command line:
net localgroup administrators
You don't need to have administrator rights to execute this command.