Google Drive
Silent install package for Google Drive
117.0.0.0-5
Utilities
Storage
Utilities
Storage
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-google-drive
- name: Google Drive
- version: 117.0.0.0-5
- 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: x64
- signature_date:
- size: 217.44 Mo
- installed_size: 526.66 Mo
- homepage : https://www.google.com/drive/
package : tis-google-drive
version : 117.0.0.0-5
architecture : x64
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 : PREPROD
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 : a3cf3825-13b9-430b-9c6a-0a72c4278836
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : ccd4cb56a813f5a9047a2f13f051ebad7ca38b2ed78955e9bed4724b4664053b
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-11-19T15:44:24.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 : Tk1cfdsmJ3bj7PQs5nk+REbJ4ii9lc5QT7CGykoBvl+iqw+HIAmRiSg6c/wXE0Jq2cMtozIfToHCWmmcHTOupOJY/7GZuJlOmYqB3LY01qVzOXwLxsGTD6Uwbl8Ux0ZHVNrLuRKuIDCxyGBpvFcJkP2BGByXY2sQbduDmZndMr7sQv22F3mbba+ralB6bSzpS4sUT511QEUPYkFczN4hRoEHQKGc4MMBfTzq7Dn2sFQosDwRAnxUler1Zk/lqcpPstpTb0b2xpYZGTqlV90FHQAchvNbxyUIOlo4NLjR2JXItOx6WN8ohgUt7kQ8zfnsMQUBkzJTFOC4FstSOhQfkw==
# -*- 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_url = "https://dl.google.com/drive-file-stream/GoogleDriveSetup.exe"
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
bcc48de9e2ffcd4de1ae0e18c926100c81ef5f4b279de00595c1c0a16b99c95b : GoogleDriveSetup.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
fd2bb15032a43f165df2e0c0642502dc4890b050d87f8ae78dc37be14d1eaba9 : WAPT/changelog.txt
ee761a279e1d58b1aff744753876118932ec71a6111a50d1f1f7fba858652db0 : WAPT/control
ccd4cb56a813f5a9047a2f13f051ebad7ca38b2ed78955e9bed4724b4664053b : WAPT/icon.png
6584cbed78068947a51bbc264b72c0cbe4c4b88d355965d5074ebdc2c96a4cbc : luti.json
91c518d19241d102f6dcd97aada0a857079364089d53a1fbb232fac993a49135 : setup.py
9495160d5b84bf3f53e1f12b93d1611f7338ed4b3069e073e5629b1cc1def843 : update_package.py
80.0.1.0-5
===
Google Drive is only available in windows 64bits starting in september as per those article :
- https://support.google.com/drive/thread/229859020/support-ending-for-32-bit-ending-soon
- https://support.google.com/drive/answer/2375082?hl=en&sjid=10658140880950252444-SA&co=GENIE.Platform%3DDesktop&oco=1
===
77.0.3.0-4
===
Adding --desktop_shortcut --skip_launch_new silentflags
No longer first run on install
Package globabally improved