
- package: tis-google-drive
- name: Google Drive
- version: 79.0.2.0-4
- categories: Utilities,Storage
- maintainer: WAPT Team,Tranquil IT,Pierre Cosson,Jimmy PELÉ
- editor: Google
- licence: proprietary_free,wapt_public
- locale: all
- target_os: windows
- impacted_process: GoogleDriveFS
- architecture: all
- signature_date:
- size: 328.98 Mo
- installed_size: 526.66 Mo
- homepage : https://www.google.com/drive/
package : tis-google-drive
version : 79.0.2.0-4
architecture : all
section : base
priority : optional
name : Google Drive
categories : Utilities,Storage
maintainer : WAPT Team,Tranquil IT,Pierre Cosson,Jimmy PELÉ
description : Google Drive is a cloud-based file storage and sharing service launched by Google
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : https://dl.google.com/drive-file-stream/GoogleDriveSetup.exe
installed_size : 526655215
impacted_process : GoogleDriveFS
description_fr : Google Drive est un service de stockage et de partage de fichiers basé sur le cloud et lancé par Google
description_pl : Dysk Google to oparta na chmurze usługa przechowywania i udostępniania plików uruchomiona przez Google
description_de : Google Drive ist ein cloudbasierter Dienst zur Speicherung und Freigabe von Dateien, der von Google eingeführt wurde
description_es : Google Drive es un servicio de almacenamiento y compartición de archivos en la nube lanzado por Google
description_pt : O Google Drive é um serviço de armazenamento e partilha de ficheiros baseado na nuvem lançado pela Google
description_it : Google Drive è un servizio di archiviazione e condivisione di file basato sul cloud lanciato da Google
description_nl : Google Drive is een cloudgebaseerde dienst voor het opslaan en delen van bestanden, gelanceerd door Google
description_ru : Google Drive - это облачный сервис хранения и обмена файлами, запущенный компанией Google
audit_schedule :
editor : Google
keywords : google,drive,cloud,based,file,files,storage,sharing,service
licence : proprietary_free,wapt_public
homepage : https://www.google.com/drive/
package_uuid : b546f8e2-aba2-4eb4-bf02-341a786d58cd
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : ccd4cb56a813f5a9047a2f13f051ebad7ca38b2ed78955e9bed4724b4664053b
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : RDzsMf+2NOSQAAQ2rMAOAHpE1RSw1bAvW2Ho7FcV9aCIAZfp/LzXg136WEYcRgdj3fuFceNFW3K1MqyacLQpVMMH8PD5TfVT0FsQm/0C61ejn+6Q8pr49dbqhlzboCJOjMhDDyOOUWsmyAMcm8bFs11e6LUmgx7vQLoQliJ9a26EQCCSd6BW2HK7YAK1Nm/5RQGqlc8n7KnYhY8Bn4NCwrhw3HryMVLpYFdpPhuI2w/N5pxXVANRQKeHtWeio3jbS/71yCFC9Vp7BlXZIqzl3aJxUNua7w5bDiIQUcnb5iPezmmLbPzYJua+IMOjnwq2UJL9OQPc9LWxLXEESBbWBA==
signature_date : 2023-08-14T18:00:20.754089
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
# -*- coding: utf-8 -*-
from setuphelpers import *
app_uninstallkey = "{6BBAE539-2232-434A-A4E5-9A33560C6283}"
def install():
bin_name = "GoogleDriveSetup.exe"
install_exe_if_needed(
bin_name,
silentflags="--silent --desktop_shortcut --skip_launch_new --gsuite_shortcuts=false",
key=app_uninstallkey,
min_version=control.get_software_version(),
)
# Disabling Google Auto-Update
registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Policies\Google\Update", "UpdateDefault", 0)
registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Policies\Google\Update", "DisableAutoUpdateChecksCheckboxValue", 1)
registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Policies\Google\Update", "AutoUpdateCheckPeriodMinutes", 0)
# Adding QuietUninstallString
quiet_uninstall_string = f'"{installed_softwares(uninstallkey=app_uninstallkey)[0]["uninstall_string"]}" --silent --force_stop'
register_uninstall(app_uninstallkey, quiet_uninstall_string=quiet_uninstall_string)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
download_dict = {
"windows-all": "https://dl.google.com/drive-file-stream/GoogleDriveSetup.exe",
}
download_url = download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]]
latest_bin = download_url.split("/")[-1]
# Deleting binaries
for f in glob.glob("*.exe") + glob.glob("*.msi"):
print("Removing: %s" % f)
remove_file(f)
# 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)
else:
print("Binary is present: %s" % latest_bin)
# Changing version of the package
version = get_version_from_binary(latest_bin)
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 or not update-package-sources
return package_updated
91c518d19241d102f6dcd97aada0a857079364089d53a1fbb232fac993a49135 : setup.py
d80fd75c8247ec8006615e47c298afb32e49c7ddb37a548158f458b75b4b229a : update_package.py
ccd4cb56a813f5a9047a2f13f051ebad7ca38b2ed78955e9bed4724b4664053b : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
6b9d3443dee5d95feba2a4e5017377aa5ec6418dd82b982d409824c381bbc5ca : WAPT/changelog.txt
0e6f2a83dcfeba998ddc85825c3ba75036914bce60cce45277f8bd77f53eece3 : luti.json
75cfd9d5873e8beee31d2ebe8097542dd12c2b1863f253b01ac49e6d8dc87a73 : GoogleDriveSetup.exe
a074bb1ec82d5e7d104e0637bf6d76de9972bbcc5c5b64a4ce900370c3892c94 : WAPT/control
77.0.3.0-4
===
Adding --desktop_shortcut --skip_launch_new silentflags
No longer first run on install
Package globabally improved