From 5b176ed1541059f4bc79b4c27181647b46d715ea Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 27 Sep 2023 12:33:35 +0200 Subject: [PATCH] Add missing script call --- profiles/Generic/Windows/Setup.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/Generic/Windows/Setup.ps1 b/profiles/Generic/Windows/Setup.ps1 index 67247081..69b0081a 100644 --- a/profiles/Generic/Windows/Setup.ps1 +++ b/profiles/Generic/Windows/Setup.ps1 @@ -1,3 +1,5 @@ #!/bin/pwsh $env:WIN_COMPUTER_NAME = "win11"; $env:SETUP_SCRIPT_NAME = [System.IO.Path]::GetRelativePath("$PSScriptRoot/../../..", "$PSScriptRoot/Install.ps1"); + +. "$PSScriptRoot/../../../scripts/Windows/OS/Setup.ps1";