Start setup automatically

This commit is contained in:
Manuel Thalmann 2024-09-08 17:48:10 +02:00
parent ec3f2ab8ff
commit 9536ec9f8d

View file

@ -1,2 +1,3 @@
$env:SETUP_DRIVE = (ConvertFrom-Csv ((wmic volume where "Label='$env:SETUP_LABEL'" get DriveLetter) | ForEach-Object { "$_".Trim(); })).DriveLetter; $env:SETUP_DRIVE = (ConvertFrom-Csv ((wmic volume where "Label='$env:SETUP_LABEL'" get DriveLetter) | ForEach-Object { "$_".Trim(); })).DriveLetter;
Set-Location (Join-Path $env:SETUP_DRIVE $env:LOCAL_PROJECT_PATH) Set-Location (Join-Path $env:SETUP_DRIVE $env:LOCAL_PROJECT_PATH)
& ./scripts/Windows/OS/Setup.ps1;