Make config module persist in WSL

This commit is contained in:
Manuel Thalmann 2024-08-02 00:47:33 +02:00
parent 6dfc060a4e
commit 8d6b1b8baf

View file

@ -17,6 +17,7 @@ $null = New-Module {
Finishes the installation of a running Windows machine. Finishes the installation of a running Windows machine.
#> #>
function Start-WindowsInstallation { function Start-WindowsInstallation {
$env:WSLENV = "CONFIG_MODULE/p";
$ErrorActionPreference = 'Inquire'; $ErrorActionPreference = 'Inquire';
Start-InstallationLoop; Start-InstallationLoop;
} }