Implement root install loop using a switch
This commit is contained in:
parent
b8086193bd
commit
eb6ad4780e
|
@ -36,446 +36,452 @@ $null = New-Module {
|
||||||
#>
|
#>
|
||||||
function Start-InstallationLoop {
|
function Start-InstallationLoop {
|
||||||
while (-not (Get-IsFinished)) {
|
while (-not (Get-IsFinished)) {
|
||||||
if ($null -eq (Get-Stage)) {
|
switch (Get-Stage) {
|
||||||
Set-Stage ([SetupStage]::Initialize);
|
($null) {
|
||||||
} elseif ((Get-Stage) -eq ([SetupStage]::Initialize)) {
|
Set-Stage ([SetupStage]::Initialize);
|
||||||
if (-not ((Test-Command "choco") -and (Test-Command "refreshenv"))) {
|
break;
|
||||||
Invoke-Hook "Install-Chocolatey" -Fallback {
|
|
||||||
# Install chocolatey
|
|
||||||
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072;
|
|
||||||
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'));
|
|
||||||
Import-Module $env:ChocolateyInstall/helpers/chocolateyProfile.psm1;
|
|
||||||
refreshenv;
|
|
||||||
};
|
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
([SetupStage]::Initialize) {
|
||||||
|
if (-not ((Test-Command "choco") -and (Test-Command "refreshenv"))) {
|
||||||
|
Invoke-Hook "Install-Chocolatey" -Fallback {
|
||||||
|
# Install chocolatey
|
||||||
|
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072;
|
||||||
|
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'));
|
||||||
|
Import-Module $env:ChocolateyInstall/helpers/chocolateyProfile.psm1;
|
||||||
|
refreshenv;
|
||||||
|
};
|
||||||
|
|
||||||
if (-not (Test-Command "gsudo")) {
|
continue;
|
||||||
Install-ChocoPackage gsudo;
|
|
||||||
refreshenv;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not (Test-Command "git")) {
|
|
||||||
Install-ChocoPackage git;
|
|
||||||
refreshenv;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not (Test-ChocoPackage "powershell-core")) {
|
|
||||||
Invoke-Hook "Install-PowerShellCore" -Fallback {
|
|
||||||
choco install -y powershell-core --install-arguments='"ADD_FILE_CONTEXT_MENU_RUNPOWERSHELL=1 ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1 REGISTER_MANIFEST=1 USER_MU=1 ENABLE_MU=1"';
|
|
||||||
};
|
|
||||||
|
|
||||||
Restart-Intermediate;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($env:PWSH_PATH -and (Test-Path $env:PWSH_PATH)) {
|
|
||||||
attrib "-R" "$env:PWSH_PATH\*" /S /D;
|
|
||||||
Remove-Item -Recurse -Force $env:PWSH_PATH;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not (Test-Winget)) {
|
|
||||||
. "$PSScriptRoot/../Software/winget/Manage.ps1";
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not (& { $null = wsl --status; $?; })) {
|
|
||||||
wsl --install --no-launch;
|
|
||||||
Restart-Intermediate;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not (& { $null = wsl -l; $?; })) {
|
|
||||||
ubuntu install --root;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not (wsl --shell-type login type -t nix)) {
|
|
||||||
wsl -- sh `<`(curl -L https://nixos.org/nix/install`) --daemon --yes;
|
|
||||||
wsl --shutdown;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not (Test-PSPackage Selenium.WebDriver)) {
|
|
||||||
Write-Host "Installing browser automation tools…";
|
|
||||||
Install-Module -AcceptLicense -Force NuGet;
|
|
||||||
Import-Module NuGet;
|
|
||||||
$null = Install-Package -Force Selenium.WebDriver -RequiredVersion 4.10.0 -SkipDependencies;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
Install-ChocoPackage selenium-gecko-driver firefox;
|
|
||||||
|
|
||||||
Invoke-Hook "Install-PSModules" -Fallback {
|
|
||||||
Install-Module -AcceptLicense -Force PSWindowsUpdate;
|
|
||||||
Install-Module -AcceptLicense -Force PSScriptAnalyzer;
|
|
||||||
. "$PSScriptRoot/../Software/PinnedItem/Manage.ps1";
|
|
||||||
};
|
|
||||||
|
|
||||||
Set-Stage ([SetupStage]::Configure);
|
|
||||||
} else {
|
|
||||||
$null = Import-Module PSWindowsUpdate;
|
|
||||||
|
|
||||||
Invoke-Hook "Invoke-WindowsUpdate" -Fallback {
|
|
||||||
Update-WindowsInstallation;
|
|
||||||
};
|
|
||||||
|
|
||||||
if ((Get-WURebootStatus -Silent)) {
|
|
||||||
Restart-Intermediate;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Deploys an action for each software.
|
|
||||||
|
|
||||||
.PARAMETER Action
|
|
||||||
The action to execute by default.
|
|
||||||
#>
|
|
||||||
function Deploy-SoftwareAction {
|
|
||||||
param(
|
|
||||||
[InstallerAction] $Action
|
|
||||||
)
|
|
||||||
|
|
||||||
[bool] $install = $null;
|
|
||||||
$arguments = [hashtable]@{ };
|
|
||||||
|
|
||||||
if ($Action) {
|
|
||||||
$install = ($Action -eq ([InstallerAction]::Install));
|
|
||||||
$null = $arguments.Add("action", $Action);
|
|
||||||
} else {
|
|
||||||
$install = $true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Drivers
|
if (-not (Test-Command "gsudo")) {
|
||||||
$null = New-Module {
|
Install-ChocoPackage gsudo;
|
||||||
$driverPath = "$PSScriptRoot/../Drivers";
|
refreshenv;
|
||||||
$mbPath = "$driverPath/ROG Zenith Extreme Alpha";
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($component in (Get-Config "valhalla.hardware.components")) {
|
if (-not (Test-Command "git")) {
|
||||||
|
Install-ChocoPackage git;
|
||||||
|
refreshenv;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
switch ($component) {
|
if (-not (Test-ChocoPackage "powershell-core")) {
|
||||||
("ROG Zenith Extreme Alpha") {
|
Invoke-Hook "Install-PowerShellCore" -Fallback {
|
||||||
. "$mbPath/MarvellEthernet/Manage.ps1" @arguments;
|
choco install -y powershell-core --install-arguments='"ADD_FILE_CONTEXT_MENU_RUNPOWERSHELL=1 ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1 REGISTER_MANIFEST=1 USER_MU=1 ENABLE_MU=1"';
|
||||||
. "$mbPath/IntelWiFi/Manage.ps1" @arguments;
|
};
|
||||||
. "$mbPath/IntelBluetooth/Manage.ps1" @arguments;
|
|
||||||
. "$mbPath/AMDChipsetX399/Manage.ps1" @arguments;
|
|
||||||
. "$driverPath/AMDChipsetX399/Manage.ps1" @arguments;
|
|
||||||
}
|
|
||||||
("Predator Z301C") {
|
|
||||||
. "$driverPath/Predator Z301C/Manage.ps1" @arguments;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($install) {
|
Restart-Intermediate;
|
||||||
if (Get-Config "valhalla.hardware.amdCPU") {
|
return;
|
||||||
Install-ChocoPackage amd-ryzen-master;
|
}
|
||||||
# ToDo: backup Ryzen energy saving plan
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Get-Config "valhalla.hardware.nvidiaGPU") {
|
if ($env:PWSH_PATH -and (Test-Path $env:PWSH_PATH)) {
|
||||||
Install-ChocoPackage geforce-game-ready-driver;
|
attrib "-R" "$env:PWSH_PATH\*" /S /D;
|
||||||
Remove-DesktopIcon "*Geforce*";
|
Remove-Item -Recurse -Force $env:PWSH_PATH;
|
||||||
}
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (Get-Config "valhalla.hardware.corsairDevice") {
|
if (-not (Test-Winget)) {
|
||||||
Install-ChocoPackage icue;
|
. "$PSScriptRoot/../Software/winget/Manage.ps1";
|
||||||
}
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (Get-Config "valhalla.hardware.elgatoWave") {
|
if (-not (& { $null = wsl --status; $?; })) {
|
||||||
if (-not (Test-ChocoPackage wavelink)) {
|
wsl --install --no-launch;
|
||||||
Install-ChocoPackage wavelink -ArgumentList '--install-arguments="/norestart"';
|
Restart-Intermediate;
|
||||||
Remove-DesktopIcon "*Wave Link*";
|
return;
|
||||||
Restart-Intermediate;
|
}
|
||||||
exit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Get-Config "valhalla.hardware.eyeX") {
|
if (-not (& { $null = wsl -l; $?; })) {
|
||||||
. "$driverPath/Tobii EyeX/Manage.ps1" @arguments;
|
ubuntu install --root;
|
||||||
}
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (-not (wsl --shell-type login type -t nix)) {
|
||||||
|
wsl -- sh `<`(curl -L https://nixos.org/nix/install`) --daemon --yes;
|
||||||
|
wsl --shutdown;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (-not (Test-PSPackage Selenium.WebDriver)) {
|
||||||
|
Write-Host "Installing browser automation tools…";
|
||||||
|
Install-Module -AcceptLicense -Force NuGet;
|
||||||
|
Import-Module NuGet;
|
||||||
|
$null = Install-Package -Force Selenium.WebDriver -RequiredVersion 4.10.0 -SkipDependencies;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Install-ChocoPackage selenium-gecko-driver firefox;
|
||||||
|
|
||||||
|
Invoke-Hook "Install-PSModules" -Fallback {
|
||||||
|
Install-Module -AcceptLicense -Force PSWindowsUpdate;
|
||||||
|
Install-Module -AcceptLicense -Force PSScriptAnalyzer;
|
||||||
|
. "$PSScriptRoot/../Software/PinnedItem/Manage.ps1";
|
||||||
};
|
};
|
||||||
|
|
||||||
$null = New-Module {
|
Set-Stage ([SetupStage]::Configure);
|
||||||
# Windows Config
|
break;
|
||||||
$softwarePath = "$PSScriptRoot/../Software";
|
}
|
||||||
$commonSoftware = "$PSScriptRoot/../../Common/Software";
|
default {
|
||||||
. "$softwarePath/Windows/Manage.ps1" @arguments;
|
$null = Import-Module PSWindowsUpdate;
|
||||||
|
|
||||||
if (Get-Config "valhalla.hardware.logitechG") {
|
Invoke-Hook "Invoke-WindowsUpdate" -Fallback {
|
||||||
. "$softwarePath/LGHub/Manage.ps1" @arguments;
|
Update-WindowsInstallation;
|
||||||
|
};
|
||||||
|
|
||||||
|
if ((Get-WURebootStatus -Silent)) {
|
||||||
|
Restart-Intermediate;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Deploys an action for each software.
|
||||||
|
|
||||||
|
.PARAMETER Action
|
||||||
|
The action to execute by default.
|
||||||
|
#>
|
||||||
|
function Deploy-SoftwareAction {
|
||||||
|
param(
|
||||||
|
[InstallerAction] $Action
|
||||||
|
)
|
||||||
|
|
||||||
|
[bool] $install = $null;
|
||||||
|
$arguments = [hashtable]@{ };
|
||||||
|
|
||||||
|
if ($Action) {
|
||||||
|
$install = ($Action -eq ([InstallerAction]::Install));
|
||||||
|
$null = $arguments.Add("action", $Action);
|
||||||
|
} else {
|
||||||
|
$install = $true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Test-Collection "essential") {
|
# Drivers
|
||||||
# Essentials
|
$null = New-Module {
|
||||||
. "$softwarePath/OpenSSH/Manage.ps1" @arguments;
|
$driverPath = "$PSScriptRoot/../Drivers";
|
||||||
. "$softwarePath/PowerShell/Manage.ps1" @arguments;
|
$mbPath = "$driverPath/ROG Zenith Extreme Alpha";
|
||||||
. "$softwarePath/chocolatey/Manage.ps1" @arguments;
|
|
||||||
. "$softwarePath/zoxide/Manage.ps1" @arguments;
|
|
||||||
. "$commonSoftware/posh-git/Manage.ps1" @arguments;
|
|
||||||
. "$commonSoftware/Terminal-Icons/Manage.ps1" @arguments;
|
|
||||||
. "$commonSoftware/Oh My Posh/Manage.ps1" @arguments;
|
|
||||||
|
|
||||||
if ($install) {
|
foreach ($component in (Get-Config "valhalla.hardware.components")) {
|
||||||
Install-ChocoPackage `
|
|
||||||
procexp `
|
|
||||||
procmon `
|
|
||||||
;
|
|
||||||
|
|
||||||
Install-WingetPackage `
|
switch ($component) {
|
||||||
KDE.KDEConnect `
|
("ROG Zenith Extreme Alpha") {
|
||||||
;
|
. "$mbPath/MarvellEthernet/Manage.ps1" @arguments;
|
||||||
|
. "$mbPath/IntelWiFi/Manage.ps1" @arguments;
|
||||||
|
. "$mbPath/IntelBluetooth/Manage.ps1" @arguments;
|
||||||
|
. "$mbPath/AMDChipsetX399/Manage.ps1" @arguments;
|
||||||
|
. "$driverPath/AMDChipsetX399/Manage.ps1" @arguments;
|
||||||
|
}
|
||||||
|
("Predator Z301C") {
|
||||||
|
. "$driverPath/Predator Z301C/Manage.ps1" @arguments;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (Test-Collection "common") {
|
|
||||||
# Common Software
|
|
||||||
. "$softwarePath/WinSCP/Manage.ps1" @arguments;
|
|
||||||
. "$softwarePath/Thunderbird/Manage.ps1" @arguments;
|
|
||||||
. "$softwarePath/PuTTY/Manage.ps1" @arguments;
|
|
||||||
|
|
||||||
if ($install) {
|
if ($install) {
|
||||||
Install-ChocoPackage `
|
if (Get-Config "valhalla.hardware.amdCPU") {
|
||||||
7zip `
|
Install-ChocoPackage amd-ryzen-master;
|
||||||
chocolateygui `
|
# ToDo: backup Ryzen energy saving plan
|
||||||
DefaultProgramsEditor `
|
}
|
||||||
bitwarden `
|
|
||||||
keepass `
|
|
||||||
;
|
|
||||||
|
|
||||||
Install-WingetPackage `
|
if (Get-Config "valhalla.hardware.nvidiaGPU") {
|
||||||
SomePythonThings.WingetUIStore `
|
Install-ChocoPackage geforce-game-ready-driver;
|
||||||
;
|
Remove-DesktopIcon "*Geforce*";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Get-Config "valhalla.hardware.corsairDevice") {
|
||||||
|
Install-ChocoPackage icue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Get-Config "valhalla.hardware.elgatoWave") {
|
||||||
|
if (-not (Test-ChocoPackage wavelink)) {
|
||||||
|
Install-ChocoPackage wavelink -ArgumentList '--install-arguments="/norestart"';
|
||||||
|
Remove-DesktopIcon "*Wave Link*";
|
||||||
|
Restart-Intermediate;
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (Test-Collection "desktopExperience") {
|
if (Get-Config "valhalla.hardware.eyeX") {
|
||||||
if ($install) {
|
. "$driverPath/Tobii EyeX/Manage.ps1" @arguments;
|
||||||
# Fonts
|
}
|
||||||
Install-ChocoPackage nerd-fonts-CascadiaCode;
|
};
|
||||||
|
|
||||||
|
$null = New-Module {
|
||||||
|
# Windows Config
|
||||||
|
$softwarePath = "$PSScriptRoot/../Software";
|
||||||
|
$commonSoftware = "$PSScriptRoot/../../Common/Software";
|
||||||
|
. "$softwarePath/Windows/Manage.ps1" @arguments;
|
||||||
|
|
||||||
|
if (Get-Config "valhalla.hardware.logitechG") {
|
||||||
|
. "$softwarePath/LGHub/Manage.ps1" @arguments;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Test-Collection "essential") {
|
||||||
|
# Essentials
|
||||||
|
. "$softwarePath/OpenSSH/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/PowerShell/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/chocolatey/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/zoxide/Manage.ps1" @arguments;
|
||||||
|
. "$commonSoftware/posh-git/Manage.ps1" @arguments;
|
||||||
|
. "$commonSoftware/Terminal-Icons/Manage.ps1" @arguments;
|
||||||
|
. "$commonSoftware/Oh My Posh/Manage.ps1" @arguments;
|
||||||
|
|
||||||
|
if ($install) {
|
||||||
|
Install-ChocoPackage `
|
||||||
|
procexp `
|
||||||
|
procmon `
|
||||||
|
;
|
||||||
|
|
||||||
|
Install-WingetPackage `
|
||||||
|
KDE.KDEConnect `
|
||||||
|
;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Test-Collection "common") {
|
||||||
|
# Common Software
|
||||||
|
. "$softwarePath/WinSCP/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/Thunderbird/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/PuTTY/Manage.ps1" @arguments;
|
||||||
|
|
||||||
|
if ($install) {
|
||||||
|
Install-ChocoPackage `
|
||||||
|
7zip `
|
||||||
|
chocolateygui `
|
||||||
|
DefaultProgramsEditor `
|
||||||
|
bitwarden `
|
||||||
|
keepass `
|
||||||
|
;
|
||||||
|
|
||||||
|
Install-WingetPackage `
|
||||||
|
SomePythonThings.WingetUIStore `
|
||||||
|
;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Test-Collection "desktopExperience") {
|
||||||
|
if ($install) {
|
||||||
|
# Fonts
|
||||||
|
Install-ChocoPackage nerd-fonts-CascadiaCode;
|
||||||
|
|
||||||
|
# Internet Access
|
||||||
|
Install-WingetPackage Brave.Brave kamranahmedse.pennywise;
|
||||||
|
Remove-DesktopIcon "*Brave*";
|
||||||
|
Remove-TaskbarItem "*Brave*";
|
||||||
|
Remove-DesktopIcon "Pennywise*";
|
||||||
|
|
||||||
|
# Tools
|
||||||
|
Install-SetupPackage -Source "https://github.com/mRemoteNG/mRemoteNG/releases/download/2023.03.03-v1.77.3-nb/mRemoteNG-Installer-1.77.3.nb-1784.msi" -ArgumentList "/Quiet";
|
||||||
|
Remove-DesktopIcon "mRemoteNG*";
|
||||||
|
|
||||||
|
Install-ChocoPackage `
|
||||||
|
gimp `
|
||||||
|
gpu-z `
|
||||||
|
windirstat `
|
||||||
|
winmerge `
|
||||||
|
handbrake `
|
||||||
|
hwmonitor `
|
||||||
|
qbittorrent `
|
||||||
|
imgburn `
|
||||||
|
inkscape `
|
||||||
|
krita `
|
||||||
|
MetaX `
|
||||||
|
obs-studio `
|
||||||
|
;
|
||||||
|
|
||||||
|
Remove-DesktopIcon "GPU-Z*";
|
||||||
|
Remove-DesktopIcon "WinDirStat*";
|
||||||
|
Remove-DesktopIcon "*HWMonitor*";
|
||||||
|
Remove-DesktopIcon "ImgBurn*";
|
||||||
|
Remove-DesktopIcon "InkScape*";
|
||||||
|
Remove-DesktopIcon "Krita*";
|
||||||
|
Remove-DesktopIcon "MetaX*";
|
||||||
|
Remove-DesktopIcon "OBS Studio*";
|
||||||
|
|
||||||
|
Install-WingetPackage `
|
||||||
|
AntSoftware.AntRenamer `
|
||||||
|
AppWork.JDownloader;
|
||||||
|
|
||||||
|
Remove-DesktopIcon "JDownloader*";
|
||||||
|
}
|
||||||
|
|
||||||
|
# ToDo: Consider hiding behind own config?
|
||||||
|
. "$softwarePath/Ubiquiti UniFi Controller/Manage.ps1" @arguments;
|
||||||
|
|
||||||
# Internet Access
|
# Internet Access
|
||||||
Install-WingetPackage Brave.Brave kamranahmedse.pennywise;
|
. "$softwarePath/Firefox/Manage.ps1" @arguments;
|
||||||
Remove-DesktopIcon "*Brave*";
|
. "$softwarePath/MSEdgeRedirect/Manage.ps1" @arguments;
|
||||||
Remove-TaskbarItem "*Brave*";
|
|
||||||
Remove-DesktopIcon "Pennywise*";
|
|
||||||
|
|
||||||
# Tools
|
if (Test-Collection "fileSync") {
|
||||||
Install-SetupPackage -Source "https://github.com/mRemoteNG/mRemoteNG/releases/download/2023.03.03-v1.77.3-nb/mRemoteNG-Installer-1.77.3.nb-1784.msi" -ArgumentList "/Quiet";
|
. "$softwarePath/Nextcloud/Manage.ps1" @arguments;
|
||||||
Remove-DesktopIcon "mRemoteNG*";
|
}
|
||||||
|
|
||||||
Install-ChocoPackage `
|
|
||||||
gimp `
|
|
||||||
gpu-z `
|
|
||||||
windirstat `
|
|
||||||
winmerge `
|
|
||||||
handbrake `
|
|
||||||
hwmonitor `
|
|
||||||
qbittorrent `
|
|
||||||
imgburn `
|
|
||||||
inkscape `
|
|
||||||
krita `
|
|
||||||
MetaX `
|
|
||||||
obs-studio `
|
|
||||||
;
|
|
||||||
|
|
||||||
Remove-DesktopIcon "GPU-Z*";
|
|
||||||
Remove-DesktopIcon "WinDirStat*";
|
|
||||||
Remove-DesktopIcon "*HWMonitor*";
|
|
||||||
Remove-DesktopIcon "ImgBurn*";
|
|
||||||
Remove-DesktopIcon "InkScape*";
|
|
||||||
Remove-DesktopIcon "Krita*";
|
|
||||||
Remove-DesktopIcon "MetaX*";
|
|
||||||
Remove-DesktopIcon "OBS Studio*";
|
|
||||||
|
|
||||||
Install-WingetPackage `
|
|
||||||
AntSoftware.AntRenamer `
|
|
||||||
AppWork.JDownloader;
|
|
||||||
|
|
||||||
Remove-DesktopIcon "JDownloader*";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# ToDo: Consider hiding behind own config?
|
if (Test-Collection "socialMedia") {
|
||||||
. "$softwarePath/Ubiquiti UniFi Controller/Manage.ps1" @arguments;
|
if ($install) {
|
||||||
|
Install-ChocoPackage `
|
||||||
|
signal `
|
||||||
|
threema-desktop `
|
||||||
|
element-desktop `
|
||||||
|
teamspeak `
|
||||||
|
;
|
||||||
|
|
||||||
# Internet Access
|
Remove-DesktopIcon "*Element*";
|
||||||
. "$softwarePath/Firefox/Manage.ps1" @arguments;
|
Remove-DesktopIcon "*TeamSpeak*";
|
||||||
. "$softwarePath/MSEdgeRedirect/Manage.ps1" @arguments;
|
|
||||||
|
|
||||||
if (Test-Collection "fileSync") {
|
Install-WingetPackage Discord.Discord;
|
||||||
. "$softwarePath/Nextcloud/Manage.ps1" @arguments;
|
Remove-DesktopIcon "*Discord*";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (Test-Collection "socialMedia") {
|
|
||||||
if ($install) {
|
|
||||||
Install-ChocoPackage `
|
|
||||||
signal `
|
|
||||||
threema-desktop `
|
|
||||||
element-desktop `
|
|
||||||
teamspeak `
|
|
||||||
;
|
|
||||||
|
|
||||||
Remove-DesktopIcon "*Element*";
|
|
||||||
Remove-DesktopIcon "*TeamSpeak*";
|
|
||||||
|
|
||||||
Install-WingetPackage Discord.Discord;
|
|
||||||
Remove-DesktopIcon "*Discord*";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Test-Collection "media") {
|
|
||||||
if ($install) {
|
|
||||||
Install-ChocoPackage `
|
|
||||||
k-litecodecpackmega `
|
|
||||||
jellyfin-media-player `
|
|
||||||
vlc `
|
|
||||||
;
|
|
||||||
|
|
||||||
Remove-DesktopIcon "VLC*";
|
|
||||||
Install-WingetPackage Ytmdesktop.Ytmdesktop;
|
|
||||||
Remove-DesktopIcon "Youtube Music*";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Test-Collection "coding") {
|
|
||||||
if ($install) {
|
|
||||||
Install-ChocoPackage vscode -ArgumentList "--params","/NoDesktopIcon";
|
|
||||||
Install-ChocoPackage vscodium -ArgumentList "--params","/NoDesktopIcon /AssociateWithFiles";
|
|
||||||
|
|
||||||
Install-ChocoPackage `
|
|
||||||
gh `
|
|
||||||
github-desktop `
|
|
||||||
ida-free `
|
|
||||||
HxD `
|
|
||||||
docker-desktop `
|
|
||||||
imhex `
|
|
||||||
dotpeek `
|
|
||||||
;
|
|
||||||
|
|
||||||
Remove-DesktopIcon "IDA *";
|
|
||||||
Remove-DesktopIcon "GitHub*";
|
|
||||||
Remove-DesktopIcon "Docker*";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
. "$softwarePath/VisualStudio/Manage.ps1" @arguments;
|
if (Test-Collection "media") {
|
||||||
|
if ($install) {
|
||||||
|
Install-ChocoPackage `
|
||||||
|
k-litecodecpackmega `
|
||||||
|
jellyfin-media-player `
|
||||||
|
vlc `
|
||||||
|
;
|
||||||
|
|
||||||
# Node.js
|
Remove-DesktopIcon "VLC*";
|
||||||
. "$softwarePath/NVS/Manage.ps1" @arguments;
|
Install-WingetPackage Ytmdesktop.Ytmdesktop;
|
||||||
}
|
Remove-DesktopIcon "Youtube Music*";
|
||||||
|
}
|
||||||
if (Test-Collection "gaming") {
|
|
||||||
# Gaming
|
|
||||||
if ($install) {
|
|
||||||
Install-ChocoPackage `
|
|
||||||
goggalaxy `
|
|
||||||
epicgameslauncher `
|
|
||||||
steam `
|
|
||||||
rayman-controlpanel `
|
|
||||||
ppsspp `
|
|
||||||
;
|
|
||||||
|
|
||||||
Remove-DesktopIcon "*Epic Games*";
|
|
||||||
Remove-DesktopIcon "*Steam*";
|
|
||||||
Remove-DesktopIcon "*PPSSPP *-Bit*";
|
|
||||||
|
|
||||||
Install-ChocoPackage ubisoft-connect -ArgumentList "--ignore-checksums";
|
|
||||||
Remove-DesktopIcon "*Ubisoft Connect*";
|
|
||||||
|
|
||||||
Install-WingetPackage ElectronicArts.EADesktop;
|
|
||||||
Remove-DesktopIcon "EA.*";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
. "$softwarePath/TrackMania Nations Forever/Manage.ps1" @arguments;
|
if (Test-Collection "coding") {
|
||||||
. "$softwarePath/TrackMania United Forever/Manage.ps1" @arguments;
|
if ($install) {
|
||||||
. "$softwarePath/ManiaPlanet/Manage.ps1" @arguments;
|
Install-ChocoPackage vscode -ArgumentList "--params","/NoDesktopIcon";
|
||||||
. "$softwarePath/osu!/Manage.ps1" @arguments;
|
Install-ChocoPackage vscodium -ArgumentList "--params","/NoDesktopIcon /AssociateWithFiles";
|
||||||
. "$softwarePath/osu!lazer/Manage.ps1" @arguments;
|
|
||||||
. "$softwarePath/RetroArch/Manage.ps1" @arguments;
|
|
||||||
. "$softwarePath/reWASD/Manage.ps1" @arguments;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (Get-Stage) {
|
Install-ChocoPackage `
|
||||||
([SetupStage]::Configure) {
|
gh `
|
||||||
if (Get-Config "valhalla.windows.dualboot.enable") {
|
github-desktop `
|
||||||
# Fix synchronization between Linux and Windows clocks.
|
ida-free `
|
||||||
Set-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" -Name "RealTimeIsUniversal" -Value 1 -Type "DWord";
|
HxD `
|
||||||
|
docker-desktop `
|
||||||
|
imhex `
|
||||||
|
dotpeek `
|
||||||
|
;
|
||||||
|
|
||||||
# Force time resynchronization
|
Remove-DesktopIcon "IDA *";
|
||||||
$service = Get-Service W32Time;
|
Remove-DesktopIcon "GitHub*";
|
||||||
$stopped = ($service.Status -eq "Stopped");
|
Remove-DesktopIcon "Docker*";
|
||||||
Start-Service $service;
|
|
||||||
w32tm /resync /force;
|
|
||||||
|
|
||||||
if ($stopped) {
|
|
||||||
Stop-Service $service;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Set-Stage ([SetupStage]::Install);
|
|
||||||
}
|
|
||||||
([SetupStage]::Install) {
|
|
||||||
Write-Host "Entering install phase";
|
|
||||||
Deploy-SoftwareAction;
|
|
||||||
Set-Stage ([SetupStage]::CreateUser);
|
|
||||||
}
|
|
||||||
([SetupStage]::CreateUser) {
|
|
||||||
Start-ValhallaUserSetup;
|
|
||||||
Set-Stage ([SetupStage]::ConfigureUser);
|
|
||||||
}
|
|
||||||
([SetupStage]::ConfigureUser) {
|
|
||||||
$userOption = "CurrentUser";
|
|
||||||
|
|
||||||
function Get-CurrentUser {
|
|
||||||
(Get-SetupOption $userOption) ?? 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
function Set-CurrentUser {
|
|
||||||
param([int] $Value)
|
|
||||||
Set-SetupOption $userOption $Value;
|
|
||||||
}
|
|
||||||
|
|
||||||
[string[]] $users = Get-Users;
|
|
||||||
$currentUser = Get-CurrentUser;
|
|
||||||
Set-BootMessage;
|
|
||||||
|
|
||||||
if ($currentUser -lt $users.Count) {
|
|
||||||
$user = Get-LocalUser $users[$currentUser];
|
|
||||||
|
|
||||||
Add-LocalGroupMember `
|
|
||||||
-SID ([SecurityIdentifier]::new([WellKnownSidType]::BuiltinAdministratorsSid, $null))`
|
|
||||||
$user `
|
|
||||||
-ErrorAction SilentlyContinue;
|
|
||||||
|
|
||||||
if ($env:UserName -ne "$user") {
|
|
||||||
Disable-LocalUser $env:UserName;
|
|
||||||
Enable-LocalUser $user;
|
|
||||||
|
|
||||||
if (Get-UserConfig -UserName "$user" -Name "microsoftAccount") {
|
|
||||||
Disable-Autologin;
|
|
||||||
Set-BootMessage -Caption "Login" -Message "Please login using your account.";
|
|
||||||
} else {
|
|
||||||
Set-AutologinUser "$user";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Restart-Intermediate
|
. "$softwarePath/VisualStudio/Manage.ps1" @arguments;
|
||||||
return;
|
|
||||||
|
# Node.js
|
||||||
|
. "$softwarePath/NVS/Manage.ps1" @arguments;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (-not (Get-UserConfig -UserName "$user" "microsoftAccount")) {
|
if (Test-Collection "gaming") {
|
||||||
net user "$user" /logonpasswordchg:yes;
|
# Gaming
|
||||||
|
if ($install) {
|
||||||
|
Install-ChocoPackage `
|
||||||
|
goggalaxy `
|
||||||
|
epicgameslauncher `
|
||||||
|
steam `
|
||||||
|
rayman-controlpanel `
|
||||||
|
ppsspp `
|
||||||
|
;
|
||||||
|
|
||||||
|
Remove-DesktopIcon "*Epic Games*";
|
||||||
|
Remove-DesktopIcon "*Steam*";
|
||||||
|
Remove-DesktopIcon "*PPSSPP *-Bit*";
|
||||||
|
|
||||||
|
Install-ChocoPackage ubisoft-connect -ArgumentList "--ignore-checksums";
|
||||||
|
Remove-DesktopIcon "*Ubisoft Connect*";
|
||||||
|
|
||||||
|
Install-WingetPackage ElectronicArts.EADesktop;
|
||||||
|
Remove-DesktopIcon "EA.*";
|
||||||
|
}
|
||||||
|
|
||||||
|
. "$softwarePath/TrackMania Nations Forever/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/TrackMania United Forever/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/ManiaPlanet/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/osu!/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/osu!lazer/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/RetroArch/Manage.ps1" @arguments;
|
||||||
|
. "$softwarePath/reWASD/Manage.ps1" @arguments;
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (Get-Stage) {
|
||||||
|
([SetupStage]::Configure) {
|
||||||
|
if (Get-Config "valhalla.windows.dualboot.enable") {
|
||||||
|
# Fix synchronization between Linux and Windows clocks.
|
||||||
|
Set-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" -Name "RealTimeIsUniversal" -Value 1 -Type "DWord";
|
||||||
|
|
||||||
|
# Force time resynchronization
|
||||||
|
$service = Get-Service W32Time;
|
||||||
|
$stopped = ($service.Status -eq "Stopped");
|
||||||
|
Start-Service $service;
|
||||||
|
w32tm /resync /force;
|
||||||
|
|
||||||
|
if ($stopped) {
|
||||||
|
Stop-Service $service;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Set-Stage ([SetupStage]::Install);
|
||||||
}
|
}
|
||||||
|
([SetupStage]::Install) {
|
||||||
|
Write-Host "Entering install phase";
|
||||||
|
Deploy-SoftwareAction;
|
||||||
|
Set-Stage ([SetupStage]::CreateUser);
|
||||||
|
}
|
||||||
|
([SetupStage]::CreateUser) {
|
||||||
|
Start-ValhallaUserSetup;
|
||||||
|
Set-Stage ([SetupStage]::ConfigureUser);
|
||||||
|
}
|
||||||
|
([SetupStage]::ConfigureUser) {
|
||||||
|
$userOption = "CurrentUser";
|
||||||
|
|
||||||
Set-IsFinished $true;
|
function Get-CurrentUser {
|
||||||
|
(Get-SetupOption $userOption) ?? 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function Set-CurrentUser {
|
||||||
|
param([int] $Value)
|
||||||
|
Set-SetupOption $userOption $Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
[string[]] $users = Get-Users;
|
||||||
|
$currentUser = Get-CurrentUser;
|
||||||
|
Set-BootMessage;
|
||||||
|
|
||||||
|
if ($currentUser -lt $users.Count) {
|
||||||
|
$user = Get-LocalUser $users[$currentUser];
|
||||||
|
|
||||||
|
Add-LocalGroupMember `
|
||||||
|
-SID ([SecurityIdentifier]::new([WellKnownSidType]::BuiltinAdministratorsSid, $null))`
|
||||||
|
$user `
|
||||||
|
-ErrorAction SilentlyContinue;
|
||||||
|
|
||||||
|
if ($env:UserName -ne "$user") {
|
||||||
|
Disable-LocalUser $env:UserName;
|
||||||
|
Enable-LocalUser $user;
|
||||||
|
|
||||||
|
if (Get-UserConfig -UserName "$user" -Name "microsoftAccount") {
|
||||||
|
Disable-Autologin;
|
||||||
|
Set-BootMessage -Caption "Login" -Message "Please login using your account.";
|
||||||
|
} else {
|
||||||
|
Set-AutologinUser "$user";
|
||||||
|
}
|
||||||
|
|
||||||
|
Restart-Intermediate
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (-not (Get-UserConfig -UserName "$user" "microsoftAccount")) {
|
||||||
|
net user "$user" /logonpasswordchg:yes;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Set-IsFinished $true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue