ERROR_NOT_JOINED - 136 (0x88)

The system tried to delete the JOIN of a drive that is not joined.

Updated: Feb 21, 2026

Technical Meaning

The ERROR_NOT_JOINED error code indicates that the system attempted to perform an operation related to a drive's JOIN state, but the drive was not currently joined. This error is specific to operations involving drive management and JOIN-related tasks.

Error Details

  • Error Name: ERROR_NOT_JOINED
  • Numeric Code: 136 (0x88)
  • Hex Code: 0x88
  • Short Description: The system attempted to delete a JOIN of a drive that is not currently joined.

Usage Context

This error typically occurs when an application or the operating system attempts to modify the JOIN state of a drive, such as unjoining a drive, but finds that the drive is already unjoined. This can happen in scenarios where scripts or administrative tools attempt to manage drive states without proper checks for current status.

Developer Interpretation

Developers should interpret this error code as an indication that the operation was attempted on a drive that does not have the expected JOIN state. The application should handle such errors gracefully, possibly by checking the current JOIN state before performing operations or providing appropriate feedback to the user.

Related Errors

  • ERROR_ALREADY_JOINED: Indicates that the system tried to join a drive that is already joined.
  • ERROR_INVALID_PARAMETER: Occurs when an invalid parameter was passed during an operation involving JOIN states.

FAQ

Q: What does ERROR_NOT_JOINED mean?

A: It means the system attempted to delete a JOIN of a drive that is not currently joined.

Q: How can I handle this error in my application?

A: Ensure that you check the current JOIN state before attempting operations. Provide appropriate feedback or retry mechanisms as necessary.

Summary

The ERROR_NOT_JOINED error code is specific to drive management and indicates an attempt to modify a drive's JOIN state when it is not currently joined. Developers should handle this error by checking the current state of the drive and providing user-friendly responses or corrective actions.