Zotero
Silent install package for Zotero
10.0.3-14
Utilities
Utilities
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-zotero
- name: Zotero
- version: 10.0.3-14
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- editor: Corporation for Digital Scholarship
- licence: AGPL
- locale: all
- target_os: windows
- impacted_process: zotero
- architecture: x64
- signature_date:
- size: 109.36 Mo
- installed_size: 116.42 Mo
- homepage : https://www.zotero.org/
package : tis-zotero
version : 10.0.3-14
architecture : x64
section : base
priority : optional
name : Zotero
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Zotero is a free and open-source reference management software to manage bibliographic data and related research materials
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://www.zotero.org/download/
installed_size : 116416512
impacted_process : zotero
description_fr : Zotero est un logiciel de gestion de références gratuit, libre et open source, il permet de gérer des données bibliographiques et des documents de recherche
description_pl : Zotero jest wolnym i otwartym oprogramowaniem do zarządzania referencjami, służącym do zarządzania danymi bibliograficznymi i powiązanymi materiałami badawczymi
description_de : Zotero ist eine kostenlose und quelloffene Literaturverwaltungssoftware zur Verwaltung bibliographischer Daten und verwandter Forschungsmaterialien
description_es : Zotero es un software de gestión de referencias gratuito y de código abierto para gestionar los datos bibliográficos y los materiales de investigación relacionados
description_pt : Zotero é um software de gestão de referências gratuito e de código aberto para gerir dados bibliográficos e materiais de investigação relacionados
description_it : Zotero è un software di reference management gratuito e open-source per la gestione dei dati bibliografici e dei relativi materiali di ricerca
description_nl : Zotero is een gratis en open-source referentiebeheersoftware om bibliografische gegevens en verwant onderzoeksmateriaal te beheren
description_ru : Zotero - это бесплатное программное обеспечение с открытым исходным кодом для управления библиографическими данными и сопутствующими исследовательскими материалами
audit_schedule :
editor : Corporation for Digital Scholarship
keywords :
licence : AGPL
homepage : https://www.zotero.org/
package_uuid : e7608ef2-b0fc-4277-8fa3-15b24c68c1e2
valid_from :
valid_until :
forced_install_on :
changelog : https://www.zotero.org/support/changelog
min_os_version : 6.1
max_os_version :
icon_sha256sum : 499ad46227d2de56044d89085ff174a347b8ccca7b2e59823cdca9eaca6090f7
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-09-17T21:02:14.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 : Evkz+cdlXXtI7bhZZjyMQ18pavwBbkndfsEn1gLgxeSWuXJEYf6qjfgY2U06CwkFkRaPKhlG0KjWZcGqL8hp9XvjzU1chm16EAb5R90LZP5sb10dQWVIPAEsuepB9+eXUSr3ogsfiBhm4Uig0bdHZHM41wcapyztiBsqt46VOw/+r5NOmqiYZVFoO/YmD/1Klk3hbMDWP7Mkq9l4CPxZf7s2uTNMzlkFGrAiZqnS0/Dyv1ghaT56PL7Cm4st4Wh6Pb3KLQ8q/jX5n1piOh1qTw3eVCA4poK1ZzHlqn2hr4jtfY42CGMjpUOA8KaHzBTPFjcH3JHeBtU5/KrZwTsLHw==
# -*- coding: utf-8 -*-
from setuphelpers import *
'''{
"key":"Zotero 7.0.1 (x64 en-US)",
"name":"Zotero",
"version":"7.0.1",
"install_date":"",
"install_location":"C:\\Program Files\\Zotero",
"uninstall_string":"C:\\Program Files\\Zotero\\uninstall\\helper.exe",
"publisher":"Corporation for Digital Scholarship",
"system_component":0,
"win64":true
}'''
def install():
# Initializing variables
bin_name = glob.glob('Zotero-*_x64_setup.exe')[0]
version = bin_name.split('_')[0].rsplit('-')[-1]
# Constructing the registry key
reg_key = f"Zotero {version} (x64 en-US)"
# Installing the package
install_exe_if_needed(
bin_name,
silentflags='/s /allusers',
key= reg_key,
min_version=control.get_software_version()
)
# Disable Zotero auto update
profiles_path = makepath(user_appdata, "Zotero", "Zotero", "Profiles", "*")
for profile in glob.glob(profiles_path):
if not os.path.isdir(profile):
continue
user_js = os.path.join(profile, "user.js")
if os.path.exists(user_js):
print(f"SKIP (existe déjà): {user_js}")
continue
content = 'user_pref("app.update.auto", false);\n'
try:
with open(user_js, "w", encoding="utf-8") as f:
f.write(content)
print(f"CREATED: {user_js}")
except Exception as e:
print(f"ERROR: {user_js} -> {e}")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url_base = "https://www.zotero.org/download/client/dl?channel=release&platform=win-x64"
data = requests.head(url_base,allow_redirects=True, proxies=proxies).url
download_url = data
latest_bin = download_url.split('/')[-1]
version = download_url.split('/')[-2]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
4db814001f7abfbcf6e560d40084fee1a40faaac7b056ed0581ab039eae1b087 : WAPT/control
499ad46227d2de56044d89085ff174a347b8ccca7b2e59823cdca9eaca6090f7 : WAPT/icon.png
d87dd113f9d7864c822c45a9176342abcaaa672bb3e710bf4b0e2c75bfb0d09f : Zotero-10.0.3_x64_setup.exe
eed6b6149151a0991df05443e9c7f29ce55e7d7bbbe772692e540b08844e0ee7 : luti.json
046cdd023ba25813e34dc7e34cefb01014cefaec474c71d10af22a9729dbfb36 : setup.py
4f0d7577b26a2c56454de052ddef9fbdcb8b076ff2bd98a6299aa936c67702ea : update_package.py