$ProgressPreference = "SilentlyContinue"
$Link = "https://download01.logi.com/web/ftp/pub/techsupport/options/options_installer.exe"
$Path = "C:\Users\Public\Downloads"
$File = "options_installer.exe"
if (Test-Path $Path\$File) {
Remove-Item $Path\$File
}
Invoke-WebRequest -Uri $Link -OutFile $Path\$File -UseBasicParsing
Start $Path\$File /quiet