(args: ReadonlyArray<string>)
| 709 | |
| 710 | /** Run schtasks.exe, capturing (stdout, stderr, code). */ |
| 711 | const runSchtasks = (args: ReadonlyArray<string>): Effect.Effect<CommandResult, Error> => |
| 712 | runCommand("schtasks.exe", args); |
| 713 | |
| 714 | /** Write a UTF-16LE (BOM-prefixed) file — the encoding schtasks expects for XML. */ |
| 715 | const writeUtf16File = ( |
no test coverage detected