Error: Additional Administrator accounts cannot run Docker Desktop

Problem:

After creating a new administrator account (e.g., user1), the user was unable to run Docker Desktop. Even after attempting to launch the application with the "Run as Administrator" option, there was no indication that the application was running.

Solution:

Add User to Docker Group

If you're using Docker Desktop, ensure that your new user is added to the Docker user group:

  1. Open PowerShell as Administrator:

    • Right-click on the Start menu and select Windows PowerShell (Admin).
  2. Add User to Docker Group:
    Replace yourusername with your new admin username:

    powershell

    Copy

     net localgroup docker-users yourusername /add
    
  3. Log Out and Log Back In:
    You may need to log out and back in for the changes to take effect.