From ebacd28817564480b47351a37ab3db4413e5f871 Mon Sep 17 00:00:00 2001 From: Dylan Hurd Date: Tue, 13 Jan 2026 13:47:29 -0800 Subject: [PATCH] fix(windows-sandbox-rs) bump SETUP_VERSION (#9134) ## Summary Bumps the windows setup version, to re-trigger windows sandbox setup for users in the experimental sandbox. We've seen some drift in the ACL controls, amongst a few other changes. Hopefully this should fix #9062. ## Testing - [x] Tested locally --- codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs b/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs index c46e43349..30907de7c 100644 --- a/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs +++ b/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs @@ -26,7 +26,7 @@ use windows_sys::Win32::Security::CheckTokenMembership; use windows_sys::Win32::Security::FreeSid; use windows_sys::Win32::Security::SECURITY_NT_AUTHORITY; -pub const SETUP_VERSION: u32 = 2; +pub const SETUP_VERSION: u32 = 3; pub const OFFLINE_USERNAME: &str = "CodexSandboxOffline"; pub const ONLINE_USERNAME: &str = "CodexSandboxOnline"; const SECURITY_BUILTIN_DOMAIN_RID: u32 = 0x0000_0020;