Root cause fix: runner.go passed config as unevaluated PS expression via -File mode - scripts received a literal string instead of parsed object. Changed to -ConfigPath; scripts load JSON themselves via shared common.ps1 (Write-Log, Get-Feature, Load-Config). GUI now regenerates runtime config before run so user selections actually reach the scripts. Merged 04-default-profile + 05-personalization into single script (one hive load/unload, no Explorer restart, no hive contention). Deleted Deploy-Windows.ps1 (xetup.exe is sole entry point), 06-scheduled-tasks.ps1 (tasks caused more harm than good), 07-desktop-info.ps1 (replaced by BackInfo long ago). Step ordering: activation moved early, pcIdentity before WU (exit 9 on rename only when rename actually happened). Edge policies split into mandatory (telemetry, first-run) vs recommended (UI preferences user can override). Atera install uses Start-Process -Wait instead of fragile sleep. Updated config.json, tests, DefaultConfig to match current state. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
78 lines
3 KiB
PowerShell
78 lines
3 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Installs all available Windows Updates via PSWindowsUpdate module.
|
|
|
|
.DESCRIPTION
|
|
Installs all currently available updates without rebooting.
|
|
Exits with code 9 when updates were installed (reboot required for
|
|
further rounds) or code 0 when the system is already fully up to date.
|
|
|
|
The xetup.exe state machine handles the reboot cycle:
|
|
- exit 9 -> xetup saves state, sets autologon + X9-Resume task, reboots
|
|
- on each subsequent logon X9-Resume launches xetup --resume
|
|
- xetup re-runs this step until it exits 0 (no more updates)
|
|
- then disables autologon, removes X9-Resume, shows the summary screen
|
|
|
|
.ITEMS
|
|
nainstalovat-pswindowsupdate-modul: Installs NuGet provider and PSWindowsUpdate module from PSGallery.
|
|
spustit-kolo-windows-update: One update pass without reboot. Exits 9 when updates were applied (more rounds needed). Exits 0 when system is fully up to date.
|
|
#>
|
|
param(
|
|
[string]$ConfigPath,
|
|
[string]$LogFile
|
|
)
|
|
|
|
. "$PSScriptRoot\common.ps1"
|
|
$Config = Load-Config $ConfigPath
|
|
|
|
Write-Log "=== Step 12 - Windows Update ===" -Level STEP
|
|
|
|
# -----------------------------------------------------------------------
|
|
# 1. NuGet provider + PSWindowsUpdate module
|
|
# -----------------------------------------------------------------------
|
|
Write-Log "Setting up PSWindowsUpdate module..." -Level INFO
|
|
try {
|
|
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force -Scope AllUsers | Out-Null
|
|
$existing = Get-Module -ListAvailable -Name PSWindowsUpdate | Select-Object -First 1
|
|
if ($existing) {
|
|
Write-Log " PSWindowsUpdate $($existing.Version) already installed" -Level INFO
|
|
} else {
|
|
Install-Module -Name PSWindowsUpdate -Force -Scope AllUsers -AllowClobber | Out-Null
|
|
Write-Log " PSWindowsUpdate installed" -Level OK
|
|
}
|
|
Import-Module PSWindowsUpdate -Force
|
|
} catch {
|
|
Write-Log " Module setup failed: $_" -Level ERROR
|
|
exit 1
|
|
}
|
|
|
|
# -----------------------------------------------------------------------
|
|
# 2. Check and install available updates
|
|
# -----------------------------------------------------------------------
|
|
Write-Log "Checking for available Windows Updates..." -Level INFO
|
|
try {
|
|
$available = Get-WindowsUpdate -AcceptAll -IgnoreReboot -ErrorAction Stop
|
|
} catch {
|
|
Write-Log " Failed to check for updates: $_" -Level ERROR
|
|
exit 1
|
|
}
|
|
|
|
if (-not $available -or $available.Count -eq 0) {
|
|
Write-Log " System is fully up to date" -Level OK
|
|
Write-Log "Step 12 complete" -Level OK
|
|
exit 0
|
|
}
|
|
|
|
Write-Log " Found $($available.Count) update(s) - installing..." -Level INFO
|
|
try {
|
|
$result = Install-WindowsUpdate -AcceptAll -IgnoreReboot -Verbose 2>&1
|
|
$result | Where-Object { "$_" -match '\S' } | ForEach-Object { Write-Log " $_" -Level INFO }
|
|
Write-Log " Update pass complete - reboot required for next round" -Level OK
|
|
} catch {
|
|
Write-Log " Update install failed: $_" -Level ERROR
|
|
exit 1
|
|
}
|
|
|
|
# Signal xetup that a reboot is needed before running this step again
|
|
Write-Log "Step 12 - reboot required (exit 9)" -Level OK
|
|
exit 9
|