| Previous | Next |
| NS_E_WMP_INVALID_KEY | NS_E_WMP_DRM_NEEDS_AUTHORIZATION |
NS_E_WMP_CD_ANOTHER_USER
How to investigate NS_E_WMP_CD_ANOTHER_USER
The code 0xC00D11CF narrows the event to acquiring the optical drive while another user session owns the CD operation. Treat this result as a checkpoint in cd/dvd recording and imapi state and retain its first lower-level error.
What the Player is doing
At the checkpoint, windows Media Player builds a burn playlist, refreshes its calculated status and delegates physical recording or erase work to the optical-disc stack; The recorder, inserted medium, burn format, staging files and write engine each have a separate lifecycle. The page-specific boundary is acquiring the optical drive while another user session owns the CD operation.
A recorder that enumerates can still be busy, incompatible with the inserted medium or unable to sustain the selected write operation. A realistic trigger is that Fast User Switching leaves a burn or rip task active in another session.
Capture before changing state
| Evidence | Why it matters for cd another user |
|---|---|
| Producing object and operation | recorder unique ID and exclusive-access owner, inserted media profile/state, burn format, playlist item, source locality, duration/byte estimate, staging directory free space, write speed, current IMAPI action and underlying HRESULT |
| Decisive observation | session/user identity, recorder owner, active task and exclusive-access state |
| Generation identity | Record the same disc, device, job or Player operation generation that returned this result; a reconnect or media change creates a different test. |
| Underlying result | Keep the first device, filesystem, COM, codec, DirectShow, IMAPI or BITS result seen before the Player mapped it to this result. |
| Controlled comparison | Repeat the producing call after changing only this condition: let the owning session finish or explicitly release the device before starting a new operation. |
Interpretation guide
| Observation | Interpretation |
|---|---|
| The recorded values match the boundary | The result is consistent with acquiring the optical drive while another user session owns the CD operation; correct that state before changing unrelated codecs, drivers or playlists. |
| A lower layer failed before this result | Preserve that earlier HRESULT or device result because it may be only the Player-level mapping. |
| The same call passes after one isolated change | The comparison supports the cd another user diagnosis rather than a broad installation failure. |
| The code changes after retesting it | The boundary was passed; diagnose the new HRESULT as the next independent stage. |
It scopes the failure to acquiring the optical drive while another user session owns the CD operation.
Five-step isolation test
- Capture
0xC00D11CF, it, the exact Player/API operation and the first timestamp at which it appears. - Save session/user identity, recorder owner, active task and exclusive-access state; do this before ejecting media, reconnecting a device, canceling a job or rebuilding the Player object.
- correlate the result with recorder unique ID and exclusive-access owner, inserted media profile/state, burn format, playlist item, source locality, duration/byte estimate, staging directory free space, write speed, current IMAPI action and underlying HRESULT.
- Reproduce once with the original source and destination, then apply only this change: let the owning session finish or explicitly release the device before starting a new operation.
- Create a fresh operation generation and verify that the original call advances beyond the cd another user boundary.
Different boundaries in the same family
| Related result | Different diagnostic boundary |
|---|---|
NS_E_WMP_CD_STASH_NO_SPACE | allocating local staging space for files and converted audio before burning |
NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE | binding a recording operation to a device that does not support the required recorder profile |
NS_E_WMP_BURN_DISC_OVERFLOW | estimating total disc usage when one or more item durations are uncertain |
Correction criteria
The test is successful when you let the owning session finish or explicitly release the device before starting a new operation, recreate the owning operation, and the original call no longer returns it.
When verifying it, do not repeatedly start a new burn against a drive that still owns or finalizes the previous session; Capture the media state and recorder owner before ejecting or replacing the disc.
Documentation
- About CD Burning.
- IWMPCdromBurn interface.
- Image Mastering API interfaces and media states.
- Checking recorder and media support.
- IDiscRecorder2::AcquireExclusiveAccess.
Looking for a different code? Search another status or error code.
