Evernote
Paquet d’installation silencieuse pour Evernote
11.10.1-3
Utilities
Office
Utilities
Office
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-evernote
- name: Evernote
- version: 11.10.1-3
- categories: Utilities,Office
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ,Jimmy PELÉ
- licence: proprietary_free,wapt_public
- target_os: windows
- impacted_process: Evernote
- architecture: x64
- signature_date:
- size: 320.50 Mo
- installed_size: 896.18 Mo
- homepage : https://evernote.com/
package : tis-evernote
version : 11.10.1-3
architecture : x64
section : base
priority : optional
name : Evernote
categories : Utilities,Office
maintainer : WAPT Team,Tranquil IT,Amel FRADJ,Jimmy PELÉ
description : Evernote is a note-taking and task-management application
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version : 2.3
sources : https://evernote.com/download
installed_size : 896184865
impacted_process : Evernote
description_fr : Evernote est une application de prise de notes et de gestion des tâches
description_pl : Evernote to aplikacja do tworzenia notatek i zarządzania zadaniami
description_de : Evernote ist eine Anwendung für die Erstellung von Notizen und die Verwaltung von Aufgaben
description_es : Evernote es una aplicación para tomar notas y gestionar tareas
description_pt : O Evernote é uma aplicação de tomada de notas e de gestão de tarefas
description_it : Evernote è un'applicazione per prendere appunti e gestire le attività
description_nl : Evernote is een programma om notities te maken en taken te beheren
description_ru : Evernote - это приложение для ведения заметок и управления задачами
audit_schedule :
editor :
keywords :
licence : proprietary_free,wapt_public
homepage : https://evernote.com/
package_uuid : cbe346a4-2835-4b39-b0f2-4f50da40e3dc
valid_from :
valid_until :
forced_install_on :
changelog : https://evernote.com/release-notes
min_os_version : 10.0
max_os_version :
icon_sha256sum : 885020096344b64e08874a78af2f0f77bd717dfebe3f729f6e26f98b340781af
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-04-01T06:53:06.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 : TFp6QhzdwGrrGa3uBLUEFIQSbbJNQE6Kd3TQEi38aOMRt+0tpG/24792Xew6MMm3IQDwNsfBc8woh6QLQmTb+tOo5LzUueDsJ5Utqrzycx2GCcm2Dlx2aQLhB4a5rTlRVO4Bfji7QHQlucvhsZGYhdP1IlQwe73qzLE4hfO4F6dV9eCHtMbNqFfDGmLUmpEoCHEkc/VpAnKn8Ty9ZSL1YmF16YZ6tOsC5Lb1NVT0UJW5+vc6+h61aEq5X/gq2ADzwYq9R12ij42NAYXqow6ZCUN/ehnXSIfkV/gvZIA4KAxBYhxiMtvOaa2ZBJyy12p8mR65UhMgbOpBamY8wVFsag==
# -*- coding: utf-8 -*-
from setuphelpers import *
"""
{
"key": "e4251011-875e-51f3-a464-121adaff5aaa",
"name": "Evernote 10.84.3 (All Users)",
"version": "10.84.3",
"install_date": "",
"install_location": "C:\\Program Files (x86)\\Evernote",
"uninstall_string": '"C:\\Program Files (x86)\\Evernote\\Uninstall Evernote.exe" /AllUsers',
"publisher": "Evernote Corporation",
"system_component": 0,
"win64": true,
}
"""
def install():
while True:
try:
install_exe_if_needed(
"Evernote-latest.exe",
silentflags="/S /VERYSILENT /SUPPRESSMSGBOXES /NORESTART",
key = "e4251011-875e-51f3-a464-121adaff5aaa",
min_version=control.get_software_version()
)
break
except:
if not params.get("install_with_luti", False):
raise
else:
time.sleep(10)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_dict = {
"windows": "https://win.desktop.evernote.com/builds/Evernote-latest.exe",
}
download_url = download_dict[ensure_list(control.target_os)[0]]
latest_bin = download_url.split("/")[-1]
# Deleting binaries
remove_outdated_binaries("*")
# 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, verify_cert="win.desktop.evernote.com.crt")
else:
print("Binary is present: %s" % latest_bin)
# Checking version from file
if get_os_name() == "Windows" and "windows" in control.target_os.lower():
version = get_version_from_binary(latest_bin)
else:
version = control.get_software_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()
# Validating update-package-sources
return package_updated
# # Changing version of the package and validating update-package-sources
# return complete_control_version(control, version)
5243f43b61e7d6acbd1fe61906595116cda1b6afcd3ca37129ad076fd15a71c4 : Evernote-latest.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e0a20a7682ca0371cfe2ba1aa894ae68099037c0f956a0586fa2831c7d4e6e31 : WAPT/control
885020096344b64e08874a78af2f0f77bd717dfebe3f729f6e26f98b340781af : WAPT/icon.png
0580b2aeb1603b384cbb8456fd94d0a5dd975dbae2c340cc4a9e938162cab84d : evernote.com.crt
a6fd30a525e8afae494bc7315ff6636fd4e35749f75b20ef99b42fc934883764 : luti.json
420c5cdba8eb13850ecf815ba7d481a60b9f2a935d37ddcc2db6fea434fddfba : setup.py
a265fbca50cf87a8df79bafa54bc2135476c53600dc5bd4877113c0dcbd46597 : update_package.py
fe7c1f075ef97670e410d1c14fb31de0434f9ef7e1125d04807efbb4f0892d45 : win.desktop.evernote.com.crt