5 lines
223 B
PowerShell
5 lines
223 B
PowerShell
#!/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";
|