wingetautoupdate/Winget-AutoUpdate/functions/Invoke-PostUpdateActions.ps1

211 lines
9.3 KiB
PowerShell
Raw Normal View History

2022-05-22 22:26:00 +00:00
#Function to make actions post WAU update
function Invoke-PostUpdateActions {
2022-10-26 22:49:10 +00:00
2022-05-23 07:35:49 +00:00
#log
2023-02-15 01:56:48 +00:00
Write-Log "Running Post Update actions:" "yellow"
Write-Log "-> Checking prerequisites..." "yellow"
#Check if Visual C++ 2019 or 2022 installed
$Visual2019 = "Microsoft Visual C++ 2015-2019 Redistributable*"
$Visual2022 = "Microsoft Visual C++ 2015-2022 Redistributable*"
$path = Get-Item HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*, HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Where-Object { $_.GetValue("DisplayName") -like $Visual2019 -or $_.GetValue("DisplayName") -like $Visual2022 }
#If not installed, install
if (!($path)) {
try {
if ((Get-CimInStance Win32_OperatingSystem).OSArchitecture -like "*64*") {
$OSArch = "x64"
}
else {
$OSArch = "x86"
}
Write-Log "-> Downloading VC_redist.$OSArch.exe..."
$SourceURL = "https://aka.ms/vs/17/release/VC_redist.$OSArch.exe"
$Installer = $($WAUConfig.InstallLocation) + "\VC_redist.$OSArch.exe"
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest $SourceURL -OutFile (New-Item -Path $Installer -Force)
Write-Log "-> Installing VC_redist.$OSArch.exe..."
Start-Process -FilePath $Installer -Args "/quiet /norestart" -Wait
Remove-Item $Installer -ErrorAction Ignore
Write-Log "-> MS Visual C++ 2015-2022 installed successfully" "green"
}
catch {
Write-Log "-> MS Visual C++ 2015-2022 installation failed." "red"
}
}
else {
Write-Log "-> Prerequisites checked. OK" "green"
}
Write-Log "-> Checking if Winget is installed" "yellow"
#Check Package Install
$TestWinGet = Get-AppxProvisionedPackage -Online | Where-Object { $_.DisplayName -eq "Microsoft.DesktopAppInstaller" }
#Current: v1.4.10173 = 1.19.10173.0 = 2023.118.406.0
If ([Version]$TestWinGet.Version -ge "2023.118.406.0") {
Write-Log "-> WinGet is Installed" "green"
}
Else {
#Download WinGet MSIXBundle
Write-Log "-> Not installed. Downloading WinGet..."
$WinGetURL = "https://github.com/microsoft/winget-cli/releases/download/v1.4.10173/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle"
$WebClient = New-Object System.Net.WebClient
$WebClient.DownloadFile($WinGetURL, $($WAUConfig.InstallLocation) + "\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle")
#Install WinGet MSIXBundle
try {
Write-Log "-> Installing Winget MSIXBundle for App Installer..."
Add-AppxProvisionedPackage -Online -PackagePath $($WAUConfig.InstallLocation) + "\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" -SkipLicense | Out-Null
Write-Log "-> Installed Winget MSIXBundle for App Installer" "green"
}
catch {
Write-Log "-> Failed to intall Winget MSIXBundle for App Installer..." "red"
}
#Remove WinGet MSIXBundle
Remove-Item -Path $($WAUConfig.InstallLocation) + "\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" -Force -ErrorAction Continue
}
#Reset Winget Sources
2022-12-22 03:29:03 +00:00
$ResolveWingetPath = Resolve-Path "$env:programfiles\WindowsApps\Microsoft.DesktopAppInstaller_*_*__8wekyb3d8bbwe\winget.exe" | Sort-Object { [version]($_.Path -replace '^[^\d]+_((\d+\.)*\d+)_.*', '$1') }
2022-06-10 08:26:41 +00:00
if ($ResolveWingetPath) {
#If multiple version, pick last one
$WingetPath = $ResolveWingetPath[-1].Path
& $WingetPath source reset --force
2022-10-18 15:44:44 +00:00
#log
Write-Log "-> Winget sources reseted." "green"
}
2022-10-26 22:49:10 +00:00
2022-05-22 22:26:00 +00:00
#Create WAU Regkey if not present
$regPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Winget-AutoUpdate"
if (!(test-path $regPath)) {
New-Item $regPath -Force
New-ItemProperty $regPath -Name DisplayName -Value "Winget-AutoUpdate (WAU)" -Force
2022-05-23 17:02:47 +00:00
New-ItemProperty $regPath -Name DisplayIcon -Value "C:\Windows\System32\shell32.dll,-16739" -Force
2022-05-22 22:26:00 +00:00
New-ItemProperty $regPath -Name NoModify -Value 1 -Force
New-ItemProperty $regPath -Name NoRepair -Value 1 -Force
New-ItemProperty $regPath -Name Publisher -Value "Romanitho" -Force
New-ItemProperty $regPath -Name URLInfoAbout -Value "https://github.com/Romanitho/Winget-AutoUpdate" -Force
New-ItemProperty $regPath -Name InstallLocation -Value $WorkingDir -Force
2022-05-25 09:56:39 +00:00
New-ItemProperty $regPath -Name UninstallString -Value "powershell.exe -noprofile -executionpolicy bypass -file `"$WorkingDir\WAU-Uninstall.ps1`"" -Force
New-ItemProperty $regPath -Name QuietUninstallString -Value "powershell.exe -noprofile -executionpolicy bypass -file `"$WorkingDir\WAU-Uninstall.ps1`"" -Force
2022-05-22 22:26:00 +00:00
New-ItemProperty $regPath -Name WAU_UpdatePrerelease -Value 0 -PropertyType DWord -Force
2022-05-23 07:19:24 +00:00
#log
2022-05-23 07:35:49 +00:00
Write-Log "-> $regPath created." "green"
2022-05-22 22:26:00 +00:00
}
#Fix Notif where WAU_NotificationLevel is not set
$regNotif = Get-ItemProperty $regPath -Name WAU_NotificationLevel -ErrorAction SilentlyContinue
2022-06-15 11:23:32 +00:00
if (!$regNotif) {
New-ItemProperty $regPath -Name WAU_NotificationLevel -Value Full -Force
#log
Write-Log "-> Notification level setting was missing. Fixed with 'Full' option."
}
2022-10-26 22:49:10 +00:00
2023-01-13 02:33:00 +00:00
#Set WAU_MaxLogFiles/WAU_MaxLogSize if not set
$MaxLogFiles = Get-ItemProperty $regPath -Name WAU_MaxLogFiles -ErrorAction SilentlyContinue
if (!$MaxLogFiles) {
New-ItemProperty $regPath -Name WAU_MaxLogFiles -Value 3 -PropertyType DWord -Force | Out-Null
New-ItemProperty $regPath -Name WAU_MaxLogSize -Value 1048576 -PropertyType DWord -Force | Out-Null
#log
Write-Log "-> MaxLogFiles/MaxLogSize setting was missing. Fixed with 3/1048576 (in bytes, default is 1048576 = 1 MB)."
}
2023-02-07 05:04:13 +00:00
#Set WAU_ListPath if not set
$ListPath = Get-ItemProperty $regPath -Name WAU_ListPath -ErrorAction SilentlyContinue
if (!$ListPath) {
New-ItemProperty $regPath -Name WAU_ListPath -Force | Out-Null
#log
Write-Log "-> ListPath setting was missing. Fixed with empty string."
}
#Set WAU_ModsPath if not set
$ModsPath = Get-ItemProperty $regPath -Name WAU_ModsPath -ErrorAction SilentlyContinue
if (!$ModsPath) {
New-ItemProperty $regPath -Name WAU_ModsPath -Force | Out-Null
#log
Write-Log "-> ModsPath setting was missing. Fixed with empty string."
}
2023-02-06 06:47:06 +00:00
#Security check
Write-Log "-> Checking Mods Directory:" "yellow"
$Protected = Invoke-ModsProtect "$($WAUConfig.InstallLocation)\mods"
2023-02-07 19:06:54 +00:00
if ($Protected -eq $True) {
2023-02-06 06:47:06 +00:00
Write-Log "-> The mods directory is now secured!" "green"
2023-02-04 23:10:32 +00:00
}
2023-02-07 19:06:54 +00:00
elseif ($Protected -eq $False) {
2023-02-06 06:47:06 +00:00
Write-Log "-> The mods directory was already secured!" "green"
2023-02-04 23:10:32 +00:00
}
2023-02-07 19:06:54 +00:00
else {
Write-Log "-> Error: The mods directory couldn't be verified as secured!" "red"
}
2023-02-04 00:08:38 +00:00
2022-05-22 22:26:00 +00:00
#Convert about.xml if exists (previous WAU versions) to reg
$WAUAboutPath = "$WorkingDir\config\about.xml"
if (test-path $WAUAboutPath) {
[xml]$About = Get-Content $WAUAboutPath -Encoding UTF8 -ErrorAction SilentlyContinue
New-ItemProperty $regPath -Name DisplayVersion -Value $About.app.version -Force
New-ItemProperty $regPath -Name VersionMajor -Value ([version]$About.app.version).Major -Force
New-ItemProperty $regPath -Name VersionMinor -Value ([version]$About.app.version).Minor -Force
#Remove file once converted
Remove-Item $WAUAboutPath -Force -Confirm:$false
2022-05-23 07:19:24 +00:00
#log
2022-05-23 07:35:49 +00:00
Write-Log "-> $WAUAboutPath converted." "green"
2022-05-22 22:26:00 +00:00
}
#Convert config.xml if exists (previous WAU versions) to reg
$WAUConfigPath = "$WorkingDir\config\config.xml"
if (test-path $WAUConfigPath) {
[xml]$Config = Get-Content $WAUConfigPath -Encoding UTF8 -ErrorAction SilentlyContinue
2022-06-10 08:26:41 +00:00
if ($Config.app.WAUautoupdate -eq "False") { New-ItemProperty $regPath -Name WAU_DisableAutoUpdate -Value 1 -Force }
if ($Config.app.NotificationLevel) { New-ItemProperty $regPath -Name WAU_NotificationLevel -Value $Config.app.NotificationLevel -Force }
if ($Config.app.UseWAUWhiteList -eq "True") { New-ItemProperty $regPath -Name WAU_UseWhiteList -Value 1 -PropertyType DWord -Force }
if ($Config.app.WAUprerelease -eq "True") { New-ItemProperty $regPath -Name WAU_UpdatePrerelease -Value 1 -PropertyType DWord -Force }
2022-05-22 22:26:00 +00:00
#Remove file once converted
Remove-Item $WAUConfigPath -Force -Confirm:$false
2022-05-23 07:19:24 +00:00
#log
2022-05-23 07:35:49 +00:00
Write-Log "-> $WAUConfigPath converted." "green"
2022-05-22 22:26:00 +00:00
}
#Remove old functions
$FileNames = @(
"$WorkingDir\functions\Get-WAUConfig.ps1",
"$WorkingDir\functions\Get-WAUCurrentVersion.ps1",
"$WorkingDir\functions\Get-WAUUpdateStatus.ps1"
)
2022-06-10 08:26:41 +00:00
foreach ($FileName in $FileNames) {
2022-05-22 22:26:00 +00:00
if (Test-Path $FileName) {
Remove-Item $FileName -Force -Confirm:$false
2022-10-26 22:49:10 +00:00
2022-05-23 07:19:24 +00:00
#log
2022-05-23 07:35:49 +00:00
Write-Log "-> $FileName removed." "green"
2022-05-22 22:26:00 +00:00
}
}
#Reset WAU_UpdatePostActions Value
$WAUConfig | New-ItemProperty -Name WAU_PostUpdateActions -Value 0 -Force
2022-05-22 22:35:33 +00:00
#Get updated WAU Config
$Script:WAUConfig = Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Winget-AutoUpdate"
2022-05-23 07:35:49 +00:00
#log
Write-Log "Post Update actions finished" "green"
2022-10-26 22:49:10 +00:00
}