Nextcloud
Paquet d'installation silencieuse pour Nextcloud
34.0.2.20260819-15
Storage
Storage
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-nextcloud
- name: Nextcloud
- version: 34.0.2.20260819-15
- categories: Storage
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Nextcloud GmbH
- licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
- locale: all
- target_os: windows
- impacted_process: nextcloud,nextcloudcmd
- architecture: x64,arm64
- signature_date:
- size: 139.63 Mo
- installed_size: 238.19 Mo
- homepage : https://nextcloud.com
package : tis-nextcloud
version : 34.0.2.20260819-15
architecture : x64,arm64
section : base
priority : optional
name : Nextcloud
categories : Storage
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Nextcloud is a suite of client-server software for creating and using file hosting services
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.1
sources : https://nextcloud.com/install/#install-clients
installed_size : 238194476
impacted_process : nextcloud,nextcloudcmd
description_fr : Nextcloud est une suite de logiciels client-serveur permettant de créer et d'utiliser des services d'hébergement de fichiers
description_pl : Nextcloud to pakiet oprogramowania klient-serwer do tworzenia i korzystania z usług hostingu plików
description_de : Nextcloud ist eine Suite von Client-Server-Software für die Erstellung und Nutzung von Filehosting-Diensten
description_es : Nextcloud es un paquete de software cliente-servidor para crear y utilizar servicios de alojamiento de archivos
description_pt : Nextcloud é um conjunto de software cliente-servidor para a criação e utilização de serviços de alojamento de ficheiros
description_it : Nextcloud è una suite di software client-server per la creazione e l'utilizzo di servizi di file hosting
description_nl : Nextcloud is een suite van client-server software voor het creëren en gebruiken van file hosting diensten
description_ru : Nextcloud - это набор клиент-серверного программного обеспечения для создания и использования услуг хостинга файлов
audit_schedule :
editor : Nextcloud GmbH
keywords : cloud
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage : https://nextcloud.com
package_uuid : 4b849dd2-5625-471e-8bf0-da166c87cbae
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/nextcloud/desktop/releases
min_os_version : 10.0
max_os_version :
icon_sha256sum : 1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-08-24T12:47:44.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 : e3sg2oZk1zROnu63ohRq5DQv+QUePIu4E0rxhulUpcLRZLcsWab/sAy0+MvmGu8qVEIcDBVGutweLpJRI0H8vYCeaNbST95YpS/KrB4JyW+66bogmDlfoucwp7c2bcooKes0V2vvQHSFgVmcx7sTvCHLbtya3EG6ki55sOhbnpJHIIRViwOKhtCyV5mwAUWbCPuwzhnTg+KZCpWGyomhLJYAJP0yeN3BeenSpT/GjpMKVAPC7z0OBX3It8IzeK7YfxBIcqZG0Bom182956qrWcPTuaa5zVrQn2BB3WG2xWo3dEhKCAR5/YosAwcxlwh/LLfveS1szYVtpG6xtlok3w==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Define local variables
config_dir = makepath(application_data, "Nextcloud")
config_file = makepath(application_data, "Nextcloud", "nextcloud.cfg")
# Install msi
bin_name = glob.glob("Nextcloud-*.msi")[0]
install_msi_if_needed(
bin_name,
min_version=control.get_software_version(),
name='Nextcloud'
)
# Disable the auto update check and auto update
print("Disabling update check and auto-update from registry")
registry_setstring(HKEY_LOCAL_MACHINE, r"SOFTWARE\Nextcloud\Nextcloud", "skipUpdateCheck", 1, type=REG_DWORD)
registry_setstring(HKEY_LOCAL_MACHINE, r"SOFTWARE\Nextcloud GmbH\Nextcloud", "skipUpdateCheck", 1, type=REG_DWORD)
print("Disabling update check from config file")
if not isdir(config_dir):
mkdirs(config_dir)
makepath(application_data, "Nextcloud", "nextcloud.cfg")
inifile_writestring(config_file,"Nextcloud","autoUpdateCheck","false")
inifile_writestring(config_file,"General","skipUpdateCheck","true")
else:
if isfile(config_file):
inifile_deleteoption(config_file,"Nextcloud","autoUpdateCheck")
inifile_writestring(config_file,"Nextcloud","autoUpdateCheck","false")
inifile_writestring(config_file,"General","skipUpdateCheck","true")
else:
makepath(application_data, "Nextcloud", "nextcloud.cfg")
inifile_writestring(config_file,"Nextcloud","autoUpdateCheck","false")
inifile_writestring(config_file,"General","skipUpdateCheck","true")
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
##def update_package():
## # Declaring local variables
## package_updated = False
## proxies = get_proxies()
## if not proxies:
## proxies = get_proxies_from_wapt_console()
## api_url = "https://api.github.com/repos/nextcloud-releases/desktop/releases/latest"
## download_dict = {
## "windows": "x64.msi",
## "linux": "x86_64.AppImage",
## "darwin": ".pkg",
## }
##
## # Getting latest version information from official sources
## print("API used is: %s" % api_url)
## json_load = json.loads(wgets(api_url, proxies=proxies))
## version = json_load["tag_name"].split("-")[-1].replace("v", "")
## download_url = download_dict[control.target_os].replace("version", version)
## latest_bin = download_url.split("/")[-1]
##
## # Downloading latest binaries
## print("Latest %s version is: %s" % (control.name, version))
## print("Download URL is: %s" % download_url)
##
## if not isfile(latest_bin):
## print("Downloading: %s" % latest_bin)
## wget(download_url, latest_bin, proxies=proxies)
## else:
## print("Binary is present: %s" % latest_bin)
##
## # Checking version from file
## version_from_file = get_version_from_binary(latest_bin)
## print("version from file :" + version_from_file )
## if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
## print("Changing version to the version number of the binary")
## version = version_from_file
## else:
## print("Binary file version corresponds to online version")
##
## # Changing version of the package
## if Version(version, 4) > Version(control.get_software_version(), 4):
## print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
## package_updated = True
## else:
## print("Software version up-to-date (%s)" % Version(version))
## control.set_software_version(version)
## control.save_control_to_wapt()
##
## # Deleting outdated binaries
## remove_outdated_binaries(version)
##
## # Validating update-package-sources
## return package_updated
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
api_url = "https://api.github.com/repos/nextcloud-releases/desktop/releases/latest"
download_dict = {
"windows": "x64.msi",
"linux": "x86_64.AppImage",
"darwin": ".pkg",
}
releases_dict = wgets(api_url, proxies=proxies, as_json=True)
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(download_dict[control.target_os]):
download_url = asset["browser_download_url"]
latest_bin = download_url.rsplit('/')[-1]
version = releases_dict["tag_name"][1:]
break
# Downloading latest binaries
print("Latest %s version is: %s" % (control.name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
print("version from file :" + version_from_file )
if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
print("Changing version to the version number of the binary")
version = version_from_file
else:
print("Binary file version corresponds to online version")
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
# Deleting binaries
for f in glob.glob("*.msi"):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
77e1d3067b8a236d3ac1068421c7af6e52c4bd593e45695332f05ef4045e4b6f : Nextcloud-34.0.2-x64.msi
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
bbb3fc71bf21de29b1108399c27749eef6a06d21fa725f3849c76cdf794e2563 : WAPT/control
1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d : WAPT/icon.png
22f3d8fa872f025a8a436ae83c69fd36b661f595a686f9fa9bc6c565d5bf98d8 : luti.json
3355bd6049ef48d08225c6a9d29b570c596544862f999cf116f0ff960e9ffcc0 : setup.py
19af2fe88f43ca031ccbbee00f3176199cd7319fbeca6dd7bc7ed2e64bdc65f0 : update_package.py