ERROR_ALIAS_EXISTS - 1379 (0x563)
The specified local group already exists.
Updated: Feb 21, 2026
Technical Background
The ERROR_ALIAS_EXISTS error code is a specific Windows API error that indicates an attempt to create or modify a local group with a name that already exists on the system. This error typically arises in scenarios involving user and group management, particularly when using Group Policy or other administrative tools.
Error Details
- Error Name: ERROR_ALIAS_EXISTS
- Numeric Code: 1379 (0x563)
- Short Description: The specified local group already exists.
This error is indicative of a capability issue, meaning that the operation being attempted cannot be completed because the required conditions are not met. Specifically, it suggests that an attempt has been made to create or modify a local group with a name that is already in use on the system.
Common Causes
- Duplicate Group Name: An attempt was made to create or modify a local group with a name that already exists on the system.
- Group Policy Configuration: A Group Policy setting may have been applied that conflicts with an existing local group name.
- Administrative Tools Usage: Use of administrative tools such as
net localgroupor similar commands without proper validation of group names.
Real-World Context
This error can occur in various scenarios, including but not limited to:
- Attempting to create a new local group with the same name as an existing one using Group Policy settings.
- Using command-line tools like
net localgroupto manage local groups without ensuring that the desired group name is unique. - Implementing custom scripts or applications that interact with local user and group management APIs, where the script attempts to create a group with a duplicate name.
Is This Error Critical?
The criticality of this error depends on the context in which it occurs. While it does not indicate an immediate system failure, it can prevent certain administrative tasks from being completed successfully. It is important for administrators and developers to handle such errors appropriately to ensure smooth operation of their systems.
How to Diagnose
To diagnose ERROR_ALIAS_EXISTS, follow these steps:
- Review Operation Context: Ensure that the group name being used does not already exist on the system.
- Validate Parameters: Verify that all parameters passed to the API or command are correct and do not conflict with existing names.
- Confirm Object Types: Confirm that the operation is intended for a local group, as this error specifically relates to such operations.
How to Resolve
To resolve ERROR_ALIAS_EXISTS, consider these actions:
- Correct Parameter Usage: Ensure that the group name used in any API calls or command-line tools is unique and does not conflict with existing names.
- Adjust Operation Context: If using Group Policy, ensure that the settings do not conflict with existing local groups. Adjust the policy settings as necessary to avoid conflicts.
- Restore Data: In cases where a script or application has attempted to create a group with an existing name, correct the script to use a unique name and retry the operation.
Developer Notes
When developing applications that interact with local user and group management APIs, it is crucial to handle ERROR_ALIAS_EXISTS appropriately. Ensure that all operations are validated against existing names before execution to prevent this error from occurring.
Related Errors
- ERROR_GROUP_EXISTS: Indicates an attempt to create a global or universal group when one already exists with the same name.
- ERROR_MEMBER_IN_ALIAS: Suggests that a member is being added to an alias, which may not be appropriate for local groups.
- ERROR_ALIAS_NAME_NOT_FOUND: Occurs when attempting to modify or delete an alias that does not exist.
FAQ
Q: Can this error occur in non-administrative scenarios?
A: No, ERROR_ALIAS_EXISTS is specific to administrative tasks involving local group management. It will not occur in typical user operations.
Q: Is there a way to bypass this error and force the creation of a new group with an existing name?
A: Bypassing this error by forcing the creation of a new group with an existing name is generally not recommended as it can lead to conflicts and inconsistencies. It is better to ensure that all names are unique.
Q: Can this error be logged or monitored for troubleshooting purposes?
A: Yes, this error can be logged in system event logs under the Application log section. Monitoring these logs can help identify instances where ERROR_ALIAS_EXISTS has occurred and assist in diagnosing related issues.
Summary
The ERROR_ALIAS_EXISTS error code is a specific indication that an attempt to create or modify a local group with a name that already exists on the system cannot be completed successfully. Administrators and developers should ensure that all operations involving local groups are validated against existing names to prevent this error from occurring.