<!-- homu-ignore:start --> *[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/issues/114854)* <!-- homu-ignore:end --> **Feature Gate:** `#![feature(windows_process_extensions_raw_attribute)]` This is a tracking issue for adding support to attach raw attributes for process creation on Windows using the `raw_attribute()` method. ### Public API ```rust pub trait CommandExt { unsafe fn raw_attribute<T: Copy + Send + Sync + 'static>( &mut self, attribute: usize, value: T, ) -> &mut process::Command; } ``` ### Steps / History - [x] https://github.com/rust-lang/rust/pull/114848 - [x] https://github.com/rust-lang/rust/pull/123604 - [ ] Stabilization PR ### Unresolved Questions - Fix passing of raw pointers - Creating safe interface for setting attributes