From 95f65458eb5337d7e682e860e91283ede129359a Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 2 Aug 2024 00:47:33 +0200 Subject: [PATCH] Make config module persist in WSL --- scripts/Windows/OS/Install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index e6212ab5..8b2239a2 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -18,6 +18,7 @@ $null = New-Module { Finishes the installation of a running Windows machine. #> function Start-WindowsInstallation { + $env:WSLENV = "CONFIG_MODULE/p"; $ErrorActionPreference = 'Inquire'; Start-InstallationLoop; }