DEV Community

SOCAR
SOCAR

Posted on • Updated on

Error during VMWare installation

I'm big fan of VMWare Workstation Player, which allows me to test different software configurations and run older operating systems with ease. However sometimes, during upgrade (or reinstall) of the software I hit following error:
Service 'VMware Authorization Service' (VMAuthdService) could not be installed.
Error while installing
Lets leave this error as it is, and fix the problem, so we can later click Retry and continue the install.

It seems, VMware Workstation Player setup guide have some issues when uninstalling previous version of the software, causing mentioned service to remain on the system. Usually it's defunct entry in visible in MMC service snap-in, which we can run by typying services.msc in START -> Run dialog.

Usually that screen will be populated with ERROR2: Cant read description or similar.

Error in services.msc

To fix this issue and continue with install we have to get rid of the service. To do that we will use sc tool:

  1. Run Command Prompt as Administrator
  2. type in sc delete VMAuthdService and press ENTER key
  3. You should see [SC] DeleteService SUCCESS
  4. Go back to VMware Workstation Player installation and click RETRY

Command to fix the problem

Documentation for sc.exe tool: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/sc-delete

Top comments (0)