tis-logi-options-plus icon

Logi Options+

Silent install package for Logi Options+

1.97.791262-1
Utilities
Utilities

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-logi-options-plus
  • name: Logi Options+
  • version: 1.97.791262-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT
  • editor: Logitech, Inc.
  • licence: Proprietary
  • locale: all
  • target_os: windows
  • impacted_process: logioptionsplus,logioptionsplus_agent,logioptionsplus_appbroker,logioptionsplus_updater,LogiSyncStub
  • architecture: x64,arm
  • signature_date:
  • size: 1.07 Go
  • homepage : https://www.logitech.com/software/logi-options-plus
  • depends:

package           : tis-logi-options-plus
version           : 1.97.791262-1
architecture      : x64,arm
section           : base
priority          : optional
name              : Logi Options+
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT
description       : Enhance your Logitech devices with Logi Options Plus software. Customize settings, create shortcuts, and increase productivity.
depends           : tis-vcredist2015-2022
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 
sources           : https://download01.logi.com/web/ftp/pub/techsupport/optionsplus/logioptionsplus_installer_offline.exe
installed_size    : 
impacted_process  : logioptionsplus,logioptionsplus_agent,logioptionsplus_appbroker,logioptionsplus_updater,LogiSyncStub
description_fr    : Améliorez vos appareils Logitech grâce au logiciel Logi Options Plus. Personnalisez les paramètres, créez des raccourcis et augmentez votre productivité.
description_pl    : Ulepsz swoje urządzenia Logitech o oprogramowanie Logi Options Plus. Dostosowuj ustawienia, twórz skróty i zwiększ produktywność.
description_de    : Verbessern Sie Ihre Logitech-Geräte mit der Logi Options Plus-Software. Passe Einstellungen an, erstelle Abkürzungen und steigere die Produktivität.
description_es    : Mejora tus dispositivos Logitech con el software Logi Options Plus. Personaliza la configuración, crea atajos y aumenta la productividad.
description_pt    : Melhore os seus dispositivos Logitech com o software Logi Options Plus. Personaliza definições, cria atalhos e aumenta a produtividade.
description_it    : Migliora i tuoi dispositivi Logitech con il software Logi Options Plus. Personalizza le impostazioni, crea scorciatoie e aumenta la produttività.
description_nl    : Verbeter je Logitech-apparaten met Logi Options Plus-software. Pas instellingen aan, maak snelkoppelingen en verhoog de productiviteit.
description_ru    : Улучшайте свои устройства Logitech с помощью программного обеспечения Logi Options Plus. Настраивайте настройки, создавайте ярлыки и повышайте продуктивность.
audit_schedule    : 
editor            : Logitech, Inc.
keywords          : utilities, logitech, logi
licence           : Proprietary
homepage          : https://www.logitech.com/software/logi-options-plus
package_uuid      : c5b5f3c0-8706-4183-b0be-77f6b50c7d80
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://support.logi.com/hc/fr/articles/1500005516462-Logi-Options-Release-Notes
min_os_version    : 10
max_os_version    : 
icon_sha256sum    : 67af9cb8b2210c7930f4c9074fe486e475618c78071e3e1d68c0c0ea29d16eb6
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-11-21T15:03:01.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : f2rvUAIRUG29XkYNdCqrCLVamigDoF1SBDNAHzBQJ1hg9ceWgM9182B6bIcCgtCrUxsWXYaCfDX9VfbvDVHA3bdQCi3/DVHA0jW/w+UovEyYbv2ibCMpFx2Xnl2IvnB4v3r2HKtE3hcv/SoV/ojgJ4EuvdXTGDLr2YM9Oc9C8pdk4uLy6BkULiJiqe8KHsJ3/02YdnZVbhonMPHjGyHIFlghPaS4HQmDGUsBbTrF9tX56uQq3KD31xGA3EZK+rRwXTegBqhc/5Ga2zKxbKZwk1cc4DjPGPPgarsIMYoJPJiS+AGes+RLGiRWCpxZDHJjNDVH7wtfARe3UI1RAsL+8g==

# -*- coding: utf-8 -*-
from setuphelpers import *

installer = r'logioptionsplus_latest.exe'

def install():
    install_exe_if_needed(installer,
    silentflags = '/quiet',
    name = 'Logi Options+',
    min_version = get_version_from_binary(installer, property_name='ProductVersion')
    )
    remove_desktop_shortcut(r'Logi Options+')

# -*- coding: utf-8 -*-
from setuphelpers import *

installer = r'logioptionsplus_%s.exe'

def update_package():
    appname = control.name
    url_dl = control.sources
    appver = control.version.split('-',1)[0]
    installer_dl = r'logioptionsplus_latest.exe'

    # Download installer
    installer_dl_version = get_version_from_binary(installer_dl)
    print(r'Current binary version : %s' % (installer_dl_version))

    wget(url_dl, installer_dl)
    installer_dl_version = get_version_from_binary(installer_dl)
    print(r'Latest %s version : %s' % (appname, installer_dl_version))

    if Version(installer_dl_version) > Version(appver):
        os.rename(installer_dl, installer % installer_dl_version)
        # Changing version of the package
        control.version = '%s-%s'%(installer_dl_version, control.version.split('-')[-1])
        control.save_control_to_wapt()
        print('Changing version to: %s in WAPT\\control' % control.version)
        remove_outdated_binaries(installer_dl_version)
    else:
        print("Already up to date")

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
d2e510b1ac207e8d7e6ecd887b025c15a54cfbcacd721e9de40187a12b945f0e : WAPT/control
67af9cb8b2210c7930f4c9074fe486e475618c78071e3e1d68c0c0ea29d16eb6 : WAPT/icon.png
7541d5bc6132cf091f3ccdf673f604b5a3cb9d42399a65d139bbf6e9a1881cb4 : logioptionsplus_latest.exe
380a6a4c4c312801b4f7e72782077cd153606eeacb1ef1f51f276b54a86c93bf : luti.json
adf7854c8745d98cc37c73abfcd136ebc2364e6a7a36cc6fd07243f3bbe8a990 : setup.py
7176817b00593a60f29a89552fe7738125cd2b4e53c72f335be94eee7bb9d96b : update_package.py