Unable to enable Remote Control on Mac
Open 💬 2 comments Opened Aug 12, 2026 by kawehthomas-commits
💡 Likely answer: A maintainer (github-actions[bot], contributor)
responded on this thread — see the highlighted reply below.
What version of the Codex App are you using (From “About Codex” dialog)?
26.803.41515 (Build 6321)
What subscription do you have?
ChatGPT Plus
What platform is your computer?
Darwin 25.5.0 arm64 arm (macOS 26.5.2)
What issue are you seeing?
Remote Control cannot be enabled in the Codex desktop app. The setup fails before displaying a QR code, and the UI shows: “Unable to enable Remote Control. Please try again.”
The desktop diagnostic log showed:
connection-failed: ignoring invalid experimental feature enablement keys: apps_mcp_path_override
What steps can reproduce the bug?
- Open Codex Settings.
- Go to Connections > Control this Mac.
- Select Allow/Enable Remote Control.
- Observe that setup fails before a QR code appears.
Troubleshooting already completed:
- Completely quit Codex with Command-Q.
- Reopened the application.
- Tried enabling Remote Control again.
- The same error still occurs.
What is the expected behavior?
Remote Control should be enabled and a QR code should appear so the ChatGPT mobile app can connect to this Mac.
Additional information
Feedback ID: 019fe967-cac6-72c0-b5ff-73a1013097b5
I could not find apps_mcp_path_override in my user configuration files, so this may be an internal desktop feature configuration or compatibility issue.
2 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
Same Problem:
Summary
Remote Control cannot be enabled in Codex/ChatGPT Desktop on macOS.
Clicking Settings → Connections → Control this Mac → Allow results in:
The app itself and the downloaded
Codex Computer Use.apphelper both passcodesign --verify, but macOStrustdexplicitly reports that thecom.apple.security.application-groupsentitlement is being ignored because of an invalid application signature or incorrect provisioning profile.Inspection of the signed entitlements and embedded provisioning profiles shows a mismatch involving the CUA application group.
Environment
arm6426.820.71523com.openai.codex2DC432GLL2~/.codex/computer-use/Codex Computer Use.appcom.openai.sky.CUAServiceSteps to reproduce
Main application is native ARM64
Output:
Output:
Output:
Therefore this issue is reproducible with the native Apple Silicon build and is not caused by running the Intel build through Rosetta.
Main app signature is valid
Output ends with:
Signature information:
Output:
Main app signed entitlements
Running:
shows, among other entitlements:
The main application therefore requests the CUA application group:
Main app provisioning profile does not contain application-groups
Inspecting:
shows these profile entitlements:
There is no:
entry in the main application's embedded provisioning profile, despite the signed application requesting:
Codex Computer Use helper
The helper is installed at:
Its signed entitlements include:
CUA helper signature is valid
Output:
CUA helper provisioning profile
The helper contains:
Decoding it shows:
The helper's signed application-group entitlement is therefore:
while its provisioning profile explicitly contains:
macOS trustd explicitly rejects the application-group entitlement
Immediately after attempting to enable Remote Control, macOS logs:
This happens even though
codesign --verify --deep --strictsucceeds for both the main app and the Computer Use helper.CUAService initialization failure
The ChatGPT process initially reaches the CUA service:
but later fails with:
The Remote Control UI then remains disabled.
Expected behavior
Clicking:
Settings → Connections → Control this Mac → Allow
should successfully initialize the Computer Use service and enable Remote Control.
Actual behavior
Remote Control cannot be enabled.
The UI reports:
trustdrejects the application-group entitlement, and CUA initialization eventually fails withNSOSStatusErrorDomain Code=-1712.Suspected cause
This appears to be a signing/provisioning/capability mismatch in the distributed macOS build rather than a corrupted local installation.
In particular:
ChatGPT.appsigned entitlements request:but its embedded provisioning profile contains no
com.apple.security.application-groupsentitlement.Codex Computer Use.apprequests:while its embedded provisioning profile explicitly lists:
trustdexplicitly reports that the application-group entitlement is being ignored due to an invalid application signature or incorrect provisioning profile.codesign --verifyvalidation.This suggests the distributed binaries are cryptographically signed correctly, but the requested protected application-group capability is not being accepted by macOS under the embedded provisioning configuration.
Additional note
An Intel/x86_64 build had initially been installed on this Apple Silicon Mac. That installation produced an earlier CUA bootstrap failure (
Code=-600).It was completely replaced with the current native ARM64 build.
The native ARM64 build now successfully reaches:
but still fails to enable Remote Control, eventually producing
Code=-1712and thetrustdapplication-group warning described above.Therefore the current issue is reproducible using the native ARM64 build independently of Rosetta.