From 58b70633febf879715603c365869620bf397d9eb Mon Sep 17 00:00:00 2001 From: CodingWonders <101426328+CodingWonders@users.noreply.github.com> Date: Sat, 14 Feb 2026 18:10:31 +0100 Subject: [PATCH] Fix firststartup destination --- MicroWin/WizardPages.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MicroWin/WizardPages.cs b/MicroWin/WizardPages.cs index 79ca956..e9f11ff 100755 --- a/MicroWin/WizardPages.cs +++ b/MicroWin/WizardPages.cs @@ -340,7 +340,7 @@ await Task.Run(async () => { try { var data = client.GetByteArrayAsync("https://github.com/CodingWonders/MicroWin/raw/main/MicroWin/tools/FirstStartup.ps1").GetAwaiter().GetResult(); - File.WriteAllBytes(Path.Combine(AppState.ScratchPath, "Windows"), data); + File.WriteAllBytes(Path.Combine(AppState.ScratchPath, "Windows", "FirstStartup.ps1"), data); } catch { } }