Tutorial: Fixing VMware 17.6 Installation Error on Non-English Windows Systems
Problem Description
When attempting to install VMware 17.6 on non-English versions of Windows, you might encounter an error message stating:
An error occurred while applying security settings. Authenticated Users is not a valid user or group. This could be a problem with the package, or a problem connecting to a domain controller on the network. Check your network connection and click Retry, or Cancel to end the install.
This issue arises because the VMware installer references user groups by their English names, which differ in localized versions of Windows. To resolve this, you need to manually add the necessary user groups using their Security Identifiers (SIDs) via the Command Prompt with administrative privileges.
Step-by-Step Tutorial
1. Open Command Prompt as Administrator
Method 1: Using the Start Menu
- Click on the Start button (Windows logo) at the bottom-left corner of your screen.
- Type
cmd
in the search bar. - Right-click on Command Prompt from the search results.
- Select Run as administrator.
- If prompted by User Account Control, click Yes.
Method 2: Using the Run Box
- Press
Windows + R
on your keyboard to open the Run dialog box. - Type
cmd
and then pressCtrl + Shift + Enter
. - If prompted by User Account Control, click Yes.
Method 3: Using the Power User Menu
- Press
Windows + X
on your keyboard or right-click the Start button. - Select Command Prompt (Admin) or Windows PowerShell (Admin).
- If prompted by User Account Control, click Yes.
Method 4: Using Task Manager
- Press
Ctrl + Shift + Esc
to open Task Manager. - Click on File in the top-left corner and select Run new task.
- Type
cmd
in the box. - Check the box that says Create this task with administrative privileges.
- Click OK.
2. Enter the Commands
Once you have the Command Prompt open with administrative privileges, enter the following commands one by one:
- Add Authenticated Users Group
net localgroup /add "Authenticated Users"
- Add Users Group
net localgroup /add "Users"
- Add Administrators Group
net localgroup /add "Administrators"
3. Rerun the VMware Installer
After entering these commands, you do not need to restart your computer. Simply rerun the VMware installer, and it should proceed without the error.
I hope this helps! If you have any more questions or run into any issues, feel free to ask.