()
| 164 | * Does NOT update the cache — caller decides whether to apply. |
| 165 | */ |
| 166 | export async function refreshMdmSettings(): Promise<{ |
| 167 | mdm: MdmResult |
| 168 | hkcu: MdmResult |
| 169 | }> { |
| 170 | const raw = await fireRawRead() |
| 171 | return consumeRawReadResult(raw) |
| 172 | } |
| 173 | |
| 174 | // --------------------------------------------------------------------------- |
| 175 | // Parsing — converts raw subprocess output to validated MdmResult |
no test coverage detected