tis-orca icon

Orca

Paquet d’installation silencieuse pour Orca

10.1.26100.6901-5
System and network
System and network

  • package: tis-orca
  • name: Orca
  • version: 10.1.26100.6901-5
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Flavien SCHELFAUT
  • editor: Microsoft
  • licence: proprietary_free
  • target_os: windows
  • impacted_process: orca
  • architecture: all
  • signature_date:
  • size: 7.81 Mo
  • homepage : https://learn.microsoft.com/en-us/windows/win32/msi/orca-exe

package           : tis-orca
version           : 10.1.26100.6901-5
architecture      : all
section           : base
priority          : optional
name              : Orca
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Flavien SCHELFAUT
description       : Orca is a database table editor for creating and editing Windows Installer (MSI) packages and merge modules.
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.4
sources           : 
installed_size    : 
impacted_process  : orca
description_fr    : Orca est un éditeur de tables de base de données permettant de créer et d éditer des packages Windows Installer (MSI) et des modules de fusion
description_pl    : Orca to edytor tabel bazy danych do tworzenia i edycji pakietów Instalatora Windows (MSI) i modułów scalających.
description_de    : Orca ist ein Editor für Datenbanktabellen, mit dem Sie Windows Installer (MSI)-Pakete und Merge-Module erstellen und bearbeiten können.
description_es    : Orca es un editor de tablas de bases de datos para crear y editar paquetes y módulos merge de Windows Installer (MSI).
description_pt    : O Orca é um editor de tabelas de bases de dados para criar e editar pacotes do Windows Installer (MSI) e módulos de fusão.
description_it    : Orca è un editor di tabelle di database per la creazione e la modifica di pacchetti Windows Installer (MSI) e moduli di fusione.
description_nl    : Orca is een editor voor databasetabellen voor het maken en bewerken van Windows Installer (MSI) pakketten en samenvoegmodules.
description_ru    : Orca - это редактор таблиц базы данных для создания и редактирования пакетов Windows Installer (MSI) и модулей слияния.
audit_schedule    : 
editor            : Microsoft
keywords          : 
licence           : proprietary_free
homepage          : https://learn.microsoft.com/en-us/windows/win32/msi/orca-exe
package_uuid      : a6f0a28e-b907-469e-91b1-8453ae12ee66
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 1becf20c1d143c9197472cb9637dd9c511dc5b76ce762029335562c37762e027
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-10-29T08:00:28.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         : aXXnGENTLbjp2L4sSFm7+KOmcACIGUZH/n4liKiDcyCmjKKqPIUbCD7kUCgd0XAmu0pH1hIYipYYyZS1+cEom/G3zRTwQioSGRRcFAtOeTj7RL6oE+gGeuUexjpsEVwTBEpSvtBT1ZErH98WZbiLtHcqY01JK0GSYHuGI5CC8Eo5L9xXnDcAHS9W3EIZjNdqYcQbhZXRRhMTXhKRavt+AJjlbmTjqhk6Y+9TB3TZz423VNBon4Ik0qPo9qgDCv45wtZ83c5H+mmtWMJz7avekFk6gNSl2ZN5LyUpnkTbD+oWD+tmzz2/E+BaimZiS9vPBWwtMAKzfZSd5kHziIN7SA==

# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *

def install():

    sdk_installers_dir = makepath(basedir, "winsdk", "Installers")
    orca_bin_path = makepath(sdk_installers_dir, r'Orca-x86_en-us.msi')
  
    install_msi_if_needed(
        orca_bin_path,
        name="^Orca$",
        min_version=control.get_software_version()
    )


# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
from setupdevhelpers import *

def wait_process_finish(process_name, timeout=120):
    current_time = 0
    while find_processes(process_name):
        current_time += 1
        if current_time > timeout:
            return
        time.sleep(1)

def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()
    app_name = control.name

    sdk_dir = "winsdk"
    sdk_installers_dir = makepath(sdk_dir, "Installers")

    url = "https://developer.microsoft.com/en-us/windows/downloads/windows-sdk"

    for link in bs_find_all(url, "a", "href"):
        if "Installer" in link.text:
            download_url = link["href"]
            break

    download_url = requests.head(download_url).headers['Location']
    latest_bin = download_url.rsplit('/', 1)[-1]
    latest_bin_extension = latest_bin.rsplit('.', 1)[-1]

    wget(download_url, latest_bin)
    version = get_version_from_binary(latest_bin)

    # Downloading latest binaries
    print(f"Latest {app_name} version is: {version}")
    print(f"Download URL is: {download_url}")
    if not isfile(latest_bin):
        print(f"Downloading: {latest_bin}")
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print(f"Binary is present: {latest_bin}")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
        package_updated = True
    else:
        print(f"Software version up-to-date ({Version(version)})")

    remove_tree(sdk_dir, ignore_errors=True)

    run(f'{latest_bin} /features OptionId.MSIInstallTools /quiet /norestart /layout {sdk_dir}')
    wait_process_finish("winsdksetup.exe")

    # Remove useless dotNetFx installer(s) to reduce package size
    for dotnet_bin in glob.glob(f'{sdk_installers_dir}\dotNetFx*'):
            remove_file(dotnet_bin)

    for f in glob.glob(f'*.{latest_bin_extension}'):
        if f != latest_bin:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e9833c41523af5fd0e5fcf4a48f64bf148fd99b066e73803459e31bfc54c9874 : WAPT/control
1becf20c1d143c9197472cb9637dd9c511dc5b76ce762029335562c37762e027 : WAPT/icon.png
be33cee00778e8575f77f3cc83bd04ca378e2079ce582ff64389c769747db471 : luti.json
2bc1027998fcaa69d4ced50d38d9cdf8c410327e5d0eeab15b1bf6b53d68bd6a : setup.py
5b510582df5f7dcdd28063754ed2e54c0977fbd3c137dba53bd8ba391f768c7b : update_package.py
f83e507c854933c7f0a4c7ce6a2eccb9a59693df08a4b7ecd526fee4059d1670 : winsdk/Installers/4e2dea081242e821596b58b31bc22cca.cab
cbb763652a53c2de01746451892d76b018755e51768c211c0a41bd9e96226394 : winsdk/Installers/598442d9f84639d200d4f3af477da95c.cab
64296093c5290421de98a337dcbd88fdfc3a87bb995b223c1a18c905b1804dfc : winsdk/Installers/838060235bcd28bf40ef7532c50ee032.cab
858795bcae898852a59dba2f8973984d5ce1ba6531115ab5c4f687c162029450 : winsdk/Installers/8e4755178e6b5bcba8d3538c3630b7a5.cab
ae929ca16361217762ade57dae2c5416f03ad71162baa633e1ba0bde95478ec7 : winsdk/Installers/931721e121ef91707ddcb6cac354d95c.cab
d6c4040e895b983481d78809b6a689b8b25483d57f2600df56ce447c9ea024b2 : winsdk/Installers/Kits Configuration Installer-x86_en-us.msi
305e83b62d1db0a992635e3f2960e1763e8df33e85b292c70c583280e1cb8ddf : winsdk/Installers/MSI Development Tools-x86_en-us.msi
e9d98c7f85a26b74524f910b86477b4ddfec8e5bc2fa3ea26cc4533c3f8f9157 : winsdk/Installers/MsiVal2-x86_en-us.msi
89a334d6919fc61e189aabc0843abfc8dcc2a6255e4906efd622bf9673a6c5ad : winsdk/Installers/Orca-x86_en-us.msi
07432ed497afb52e4b8f6857f4b4073dcc0e36f6c230c6ca928315e59bbe0061 : winsdk/Installers/Windows SDK EULA-x86_en-us.msi
16ec1f08deed0b29ec3b8fab97e3017eb6c2d26c8a0976bc89b7674403264abf : winsdk/Installers/a35cd6c9233b6ba3da66eecaa9190436.cab
d6e1b23246a7e0d7c55d01d58e4b704c656e63ed1b2ae5c10ed3f024921c90c1 : winsdk/Installers/b80b7321357f7c9f281536f9440dfe68.cab
428308d74b20ac194e9e42a96a294c648a3af646695c35b4670fb97132d7d825 : winsdk/Installers/c2aabf6ea5c1d348ec22f3aeb92f8656.cab
46858548526cdfaf72699682cc3ffec25b849d3ccdb39050784dcb491ecb5dfc : winsdk/Installers/fe38b2fd0d440e3c6740b626f51a22fc.cab
024291229e32cb8f6296b5291d811fb68a0c0e81bada5139be589fea23a82ad0 : winsdk/UserExperienceManifest.xml
6a879a51866dad34a36957160600a65951294a8aa495bd608661599756290864 : winsdk/winsdksetup.exe
6a879a51866dad34a36957160600a65951294a8aa495bd608661599756290864 : winsdksetup.exe