tis-googleearth icon

Google Earth

Silent install package for Google Earth

7.3.6.10441-2

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-googleearth
  • name: Google Earth
  • version: 7.3.6.10441-2
  • categories: Internet,Utilities,Education
  • maintainer: WAPT Team,Tranquil IT
  • editor: Google
  • licence: Freeware
  • locale: all
  • target_os: windows
  • impacted_process: googleearth.exe
  • architecture: x86
  • signature_date:
  • size: 58.31 Mo
  • installed_size: 281.87 Mo
  • homepage : https://www.google.fr/intl/fr/earth/

package           : tis-googleearth
version           : 7.3.6.10441-2
architecture      : x86
section           : base
priority          : optional
name              : Google Earth
categories        : Internet,Utilities,Education
maintainer        : WAPT Team,Tranquil IT
description       : Google Earth is a software owned by Google, allowing a visualization of the Earth with an assembly of aerial or satellite photographs
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : 
installed_size    : 281874432
impacted_process  : googleearth.exe
description_fr    : Google Earth est un logiciel, propriété de la société Google, permettant une visualisation de la Terre avec un assemblage de photographies aériennes ou satellitaires
description_pl    : Google Earth to oprogramowanie należące do Google, umożliwiające wizualizację Ziemi za pomocą zestawu zdjęć lotniczych lub satelitarnych
description_de    : Google Earth ist eine Software von Google, die eine Visualisierung der Erde mit einer Zusammenstellung von Luft- oder Satellitenfotos ermöglicht
description_es    : Google Earth es un software propiedad de Google, que permite una visualización de la Tierra con un conjunto de fotografías aéreas o satelitales
description_pt    : Google Earth é um software propriedade do Google, que permite a visualização da Terra com a montagem de fotografias aéreas ou de satélite
description_it    : Google Earth è un software di proprietà di Google che permette di visualizzare la Terra con un assemblaggio di fotografie aeree o satellitari
description_nl    : Google Earth is software van Google waarmee de aarde kan worden gevisualiseerd aan de hand van lucht- of satellietfoto's
description_ru    : Google Earth - это программное обеспечение, принадлежащее компании Google, позволяющее визуализировать Землю с помощью набора аэро- или спутниковых фотографий
audit_schedule    : 
editor            : Google
keywords          : earth
licence           : Freeware
homepage          : https://www.google.fr/intl/fr/earth/
package_uuid      : 79c16087-c0f1-43f6-bdda-25311a94370e
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 77c7581b49eccac2e89f89eddf38d3ab25666d4c83653974b8bdb1466e0d5680
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-09-17T21:28:33.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         : LHzqM54ZhLK9HE7khF57Uju2HSox+9frQeLA1hLx08RkCBn3q7bfNL/95NNrDY40aw54Yk4T+hEEPcbw/2owUFWxSBbnRPYfa5pyn8AxaRIP8jewyMSGLUxs090zqqvQxo7f6HTxTwCGX9ArRnpoCF+Wt9RyTTBU2e/nnfdj0qsFOWfLFn4so8PH+5MaRbeltVosyMH1crhQ7gqcwJlMcMhI0rEeIPSGpPHWc1KK7UoIHTyFx9fNWg67iRfQ6MJMMh35RAx1p6XmtO44ZRQKsFeF2XptcZqkwbRRqmJLNnlLBFHnSy/nY3GoAVg7E7VtAWw8kZN4tne7RjdQ8PUxQQ==

# -*- coding: utf-8 -*-
from setuphelpers import *



def install():

    install_msi_if_needed("GoogleEarthSetup.msi", killbefore=["googleearth.exe"])
    remove_desktop_shortcut("Google Earth Pro")

# -*- coding: utf-8 -*-
from setuphelpers import *


def update_package():

    proxies = {}
    if isfile(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini")):
        proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
        if proxywapt:
            proxies = {"http": proxywapt, "https": proxywapt}

    wget("https://dl.google.com/dl/earth/client/advanced/current/googleearthprowin.exe", "GoogleEarthSetup.exe", proxies=proxies)
    run("GoogleEarthSetup.exe OMAHA=1")
    killalltasks("googleearth.exe")

    for uninstall in installed_softwares("Google Earth"):
        vers = uninstall["version"]
        print("Last Version : %s" % vers)

    # Search msi and copy msi file if version is good
    remove_file("GoogleEarthSetup.exe")
    remove_file("GoogleEarthSetup.msi")
    with disable_file_system_redirection():
        for msi in glob.glob(r"C:\Windows\Installer\*.msi"):
            if get_msi_properties(msi)["ProductName"] == "Google Earth Pro":
                if Version(get_msi_properties(msi)["ProductVersion"]) == Version(vers):
                    filecopyto(msi, "GoogleEarthSetup.msi")

    if not isfile("GoogleEarthSetup.msi"):
        error("GoogleEarthSetup.msi not found")

    # change version of package
    if iswin64():
        control.architecture = "x64"
    else:
        control.architecture = "x86"
    control.version = get_msi_properties("GoogleEarthSetup.msi")["ProductVersion"] + "-2"
    control.save_control_to_wapt()

dc2bec5359dfd0b336ad4b76ba665e499d4a68e8a04be0785c45aa3394c6aea8 : GoogleEarthSetup.msi
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
c5d9f31fffaad98ab206387da534fbed58924e97d48382b4a568c5a8894e8a8a : WAPT/control
77c7581b49eccac2e89f89eddf38d3ab25666d4c83653974b8bdb1466e0d5680 : WAPT/icon.png
391eb48f6a02ad945bb0b2b825cdaaf0463d045cfa5f3613083c1759e09d643e : luti.json
1d61ec6a532e727965f88f258dac4f35a0c6825f0c56b9a88189b4cc26f425db : setup.py
6273f1787328892d6eaf95f47196475f397d35351075ccc71528d2a399add104 : update_package.py