(args: ReadonlyArray<string>)
| 720 | |
| 721 | /** Run schtasks.exe, capturing (stdout, stderr, code). */ |
| 722 | const runSchtasks = (args: ReadonlyArray<string>): Effect.Effect<CommandResult, Error> => |
| 723 | runCommand("schtasks.exe", args); |
| 724 | |
| 725 | /** Write a UTF-16LE (BOM-prefixed) file — the encoding schtasks expects for XML. */ |
| 726 | const writeUtf16File = ( |
no test coverage detected