This script will automatically install the latest version of Vivaldi browser.
Website: https://vivaldi.com/
Inspired and URL copied from: https://github.com/tylerlurie/PS-Installers
(Verified working).
Update 2025-03-21:
Click to reveal
Click to hide
Updated the cleanup part to be correct.
Here we go:
$tp = "C:\TempPath"
mkdir $tp
$Url = Invoke-WebRequest -UseBasicParsing -Uri "https://vivaldi.com/download" | Select-Object -ExpandProperty Links | Where-Object {$_.href -like "*x64.exe"} | Select-Object -ExpandProperty href | Select-Object -First 1
$Installer = "Vivaldi_Setup_x64.exe"
Invoke-WebRequest -Uri $Url -OutFile $tp\$Installer
Start-Process -FilePath $tp\$Installer -ArgumentList "--vivaldi-silent --do-not-launch-chrome --system-level" -Wait
Start-Sleep -Seconds 30
del $tp\$Installer