UpdateVivaldi.ps1
<#PSScriptInfo .VERSION 2.0.8 .GUID f15674db-9841-4822-b368-50354c387101 .AUTHOR Fabrice Sanga .COMPANYNAME sangafabrice .COPYRIGHT © 2022 SangaFabrice. All rights reserved. .TAGS vivaldi chromium update browser .LICENSEURI https://github.com/sangafabrice/reg-cli/blob/main/LICENSE.md .PROJECTURI https://github.com/sangafabrice/reg-cli/tree/vivaldi .ICONURI https://rawcdn.githack.com/sangafabrice/reg-cli/88e8345bfd93c03273280405759b79dae697a7f0/icon.png .EXTERNALMODULEDEPENDENCIES DownloadInfo,RegCli .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES Remove Select-NonEmptyObject from script. .PRIVATEDATA #> #Requires -Module @{ModuleName = 'DownloadInfo'; ModuleVersion = '5.0.4'} #Requires -Module @{ModuleName = 'RegCli'; ModuleVersion = '6.2.2'} [CmdletBinding()] Param ( [ValidateNotNullOrEmpty()] [ValidateScript({ Test-InstallLocation $_ $PSScriptRoot })] [string] $InstallLocation = "${Env:ProgramData}\Vivaldi", [ValidateNotNullOrEmpty()] [ValidateScript({ Test-InstallerLocation $_ })] [string] $SaveTo = $PSScriptRoot ) & { $BaseNameLocation = "$InstallLocation\vivaldi" $NameLocation = "$BaseNameLocation.exe" Try { $UpdateModule = Import-CommonScript chrome-installer | Import-Module -PassThru -Force -Verbose:$False @{ UpdateInfo = $( Write-Verbose 'Retrieve install or update information...' Try { Get-DownloadInfo -PropertyList @{ OSArch = Get-ExecutableType $NameLocation } -From Vivaldi } Catch { } ) NameLocation = $NameLocation SaveTo = $SaveTo SoftwareName = 'Vivaldi' InstallerDescription = 'Vivaldi Installer' VisualElementManifest = @{ BaseNameLocation = $BaseNameLocation HexColor = '#EF3939' } Verbose = $VerbosePreference -ine 'SilentlyContinue' } | ForEach-Object { Invoke-CommonScript @_ } } Catch { } Finally { $UpdateModule | Remove-Module -Verbose:$False } } <# .SYNOPSIS Updates Vivaldi browser software. .DESCRIPTION The script installs or updates Vivaldi browser on Windows. .NOTES Required: at least Powershell Core 7. .PARAMETER InstallLocation Path to the installation directory. It is restricted to file system paths. It does not necessary exists. It defaults to %ProgramData%\Vivaldi. .PARAMETER SaveTo Path to the directory of the downloaded installer. It is an existing file system path. It defaults to the script directory. .EXAMPLE Get-ChildItem C:\ProgramData\Vivaldi -ErrorAction SilentlyContinue PS > .\UpdateVivaldi.ps1 -InstallLocation C:\ProgramData\Vivaldi -SaveTo . PS > Get-ChildItem C:\ProgramData\Vivaldi | Select-Object Name Name ---- 5.4.2753.47 update_notifier.exe vivaldi.exe vivaldi.VisualElementsManifest.xml vivaldi_proxy.exe PS > Get-ChildItem | Select-Object Name Name ---- vivaldi_5.4.2753.47.exe UpdateVivaldi.ps1 Install Vivaldi browser to 'C:\ProgramData\Vivaldi' and save its setup installer to the current directory. #> |