Fix the resolving of the entry point

This commit is contained in:
Manuel Thalmann 2023-06-22 17:45:27 +02:00
parent 68b0dc687f
commit 2b420545ec

View file

@ -1,10 +1,13 @@
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Prerequisites.ps1";
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Context.ps1";
$entryPoint = "$($MyInvocation.MyCommand.Path)";
$null = New-Module {
Write-Host "Starting Restoration of Windows";
. "$PSScriptRoot/../../../scripts/Windows/OS/Install.ps1";
[Context]$context = [Context]::new();
$context.EntryPoint = "$($MyInvocation.MyCommand.Path)";
Write-Host "Setting entry point to $entryPoint";
$context.EntryPoint = "$entryPoint";
Invoke-WindowsInstallation $context;
}