admin menu missing

3 months ago
now  i installed first time noopcommerce 4.60 in laptop but i did not see any admin or admistration section to enter as a admin , can anyone please help , please
3 months ago
Are you logged in as admin?

What happens when you browse to admin page directly?
https://yourstoreurl/Admin

If you have access to a SQL tool like SSMS , or host's SQL UI, this SQL will show email of all Administrators
  select c.Email
  from Customer c
  join Customer_CustomerRole_Mapping crm on crm.Customer_Id = c.Id
  join CustomerRole cr on cr.Id = crm.CustomerRole_Id
  where cr.SystemName = 'Administrators'
3 months ago
tnx for response, it working