SketchUp Desktop
Silent install package for SketchUp Desktop
26.0.429-0
Media
Media
- package: tis-sketchup-desktop
- name: SketchUp Desktop
- version: 26.0.429-0
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Gwenaël ADAM
- licence: Proprietary
- target_os: windows
- architecture: x64
- signature_date:
- size: 1.08 Go
- homepage : https://sketchup.trimble.com
package : tis-sketchup-desktop
version : 26.0.429-0
architecture : x64
section : base
priority : optional
name : SketchUp Desktop
categories : Media
maintainer : WAPT Team,Tranquil IT,Gwenaël ADAM
description : SketchUp is an architecture-oriented 3D modeling, animation, and mapping software.
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : SketchUp est un logiciel de modélisation 3D, d'animation et de cartographie orienté vers l'architecture.
description_pl : SketchUp to oprogramowanie do modelowania, animacji i mapowania 3D zorientowane na architekturze.
description_de : SketchUp ist eine architekturorientierte 3D-Modellierungs-, Animations- und Mapping-Software.
description_es : SketchUp es un software de modelado 3D, animación y mapeo orientado a la arquitectura.
description_pt : O SketchUp é um software de modelação 3D, animação e mapeamento orientado para arquitetura.
description_it : SketchUp è un software orientato all'architettura per modellazione, animazione e mappatura.
description_nl : SketchUp is een architectuurgerichte 3D-modellering, animatie en mappingsoftware.
description_ru : SketchUp — это архитектурно-ориентированное программное обеспечение для 3D-моделирования, анимации и картирования.
audit_schedule :
editor :
keywords :
licence : Proprietary
homepage : https://sketchup.trimble.com
package_uuid : da3b5b3c-00f5-408e-9124-2c97452a6dbb
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum :
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-12-03T14:01:11.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 : fqjZgwZmBDykA1U0gJ8+bW1pdA95eI8MY/UiRMrgp//koTcNjBwzwxd6nnAQrCB2NaDkg60qQyBqDzNX4ZvyIU4zWmsIPjsk4QLf8Vknr5pWhUfqlxDdtMYtzBkCYoK3EirtiRh1s6b/tD46N2VZg0mFl6trzCwI/ucIUi1fBUV9kD9cu4n7m9sVunn1qKhK3dNm8uIJ6NeubvvgQBHPBn/7TE8mFIpvnsx9Nsa5iX8tNVZvKJYHsq1J2REnS9k4Cu/4zw9Tn2dYr5vAwOWOjvLIIgJT+odq6gqst4jI/4ROSlGzfb93uqjL7uHUpSt7A6kJuruCjo40nFwhZfMtFw==
# -*- coding: utf-8 -*-
from setuphelpers import *
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
package_version = control.get_software_version()
bin_name = glob.glob("*SketchUp*.exe")[0]
app_uninstallkey = "{bf48c79b-90c4-5ce8-8235-2a1dec3593bf}"
# Installing the software
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name,
silentflags="/silent",
key=app_uninstallkey,
min_version=package_version,
)
# Avoiding the usage by WAPT of the app built-in Uninstallstring
uninstallkey.remove(app_uninstallkey)
def uninstall():
# Declaring local variables
app_uninstallkey = "{bf48c79b-90c4-5ce8-8235-2a1dec3593bf}"
# Uninstalling the software
for uninstall in installed_softwares(uninstallkey=app_uninstallkey):
print("Removing: %s (%s)" % (uninstall["name"], uninstall["version"]))
killalltasks(control.get_impacted_process_list())
app_uninstall_cmd = uninstall_cmd(uninstall["key"])
app_uninstall_cmd[2] = "/silent"
run(app_uninstall_cmd)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import re
import requests
bin_contains = "SketchUp"
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
# download_url = "https://download.sketchup.com/SketchUpFull-2026-0-429-164.exe"
# Getting latest version from official sources
base_url = "https://sketchup.trimble.com/en/download/all"
find_all = bs_find_all(base_url, 'a', 'href')
for find in find_all:
if find["href"].endswith(".exe"):
latest_bin = find["href"].split("/")[-1]
download_url = find["href"]
versionsplit = latest_bin.split("-")
version = versionsplit[1].split("0")[-1] + "." + versionsplit[2] + "." + versionsplit[3]
break
print(f"Latest bin is {latest_bin}")
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
# Checking version from file
version_from_file = get_product_props(latest_bin)["ProductVersion"]
if Version(version) != Version(version_from_file) and version_from_file != "":
version = version_from_file
else:
print("Binary file version corresponds to online version")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating or not update-package-sources
return result
ba83abfae4ddb1a4f77ae5a1c496ebed7e1713e1a62d481405c0dae719db43b9 : SketchUp-2026-0-429-164.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
aae4ab7ca3c217f9ee2789960e7ebdd8ae5bd69cbce79deae4beee1b9053b04a : WAPT/control
cc472f769a68b91d441c2256a5c946bac56539f04f9a3ababdfb8c0c9f975ecc : luti.json
c3c033dca6c81ddd787fcbe97b7fa2c577247556af78c6e6da2bd977d76a3750 : setup.py
f4e69692ae60c4f8881c5d593281b69fcfb1fd53cd3b8733714dbb9b32379976 : update_package.py