Hi @ntdevlabs ! I've noticed the line [244](https://github.com/ntdevlabs/tiny11builder/blob/977c06ae1887e6f515278b4135ba99a8b4368c1a/tiny11maker.ps1#L244C1-L244C52) hardcode the path of the task's scratch folder to `C:\` ```powershell $tasksPath = "C:\scratchdir\Windows\System32\Tasks" ``` We need to change that to ```powershell $tasksPath = "$ScratchDisk\scratchdir\Windows\System32\Tasks" ```
Hi @ntdevlabs !
I've noticed the line 244 hardcode the path of the task's scratch folder to
C:\We need to change that to