tis-claude-uwp icon

claude

Silent install package for claude

1.34493.0-0

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-claude-uwp
  • name: claude
  • version: 1.34493.0-0
  • maintainer: Tranquil IT, WAPT Team, Kevin Cherel
  • editor: anthropic
  • licence: ©
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 247.40 Mo
  • homepage : https://claude.com/download

package           : tis-claude-uwp
version           : 1.34493.0-0
architecture      : x64
section           : base
priority          : optional
name              : claude
categories        : 
maintainer        : Tranquil IT, WAPT Team, Kevin Cherel
description       : Claude Desktop (MSIX) is the MSIX-packaged version of Anthropic's Claude AI assistant for Windows, designed for enterprise deployment and centralized management.
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 2.5
sources           : https://support.claude.com/en/articles/12622703-deploy-claude-desktop-for-windows
installed_size    : 
impacted_process  : 
description_fr    : Claude Desktop (MSIX) est la version empaquetée au format MSIX de l'assistant IA Claude d'Anthropic pour Windows, conçue pour le déploiement en entreprise et la gestion centralisée.
description_pl    : Claude Desktop (MSIX) to wersja asystenta AI Claude firmy Anthropic dla systemu Windows spakowana w formacie MSIX, przeznaczona do wdrażania w środowisku przedsiębiorstwa i centralnego zarządzania.
description_de    : Claude Desktop (MSIX) ist die im MSIX-Format paketierte Version des KI-Assistenten Claude von Anthropic für Windows, entwickelt für die Bereitstellung in Unternehmen und die zentrale Verwaltung.
description_es    : Claude Desktop (MSIX) es la versión empaquetada en formato MSIX del asistente de IA Claude de Anthropic para Windows, diseñada para implementaciones empresariales y administración centralizada.
description_pt    : Claude Desktop (MSIX) é a versão empacotada no formato MSIX do assistente de IA Claude da Anthropic para Windows, projetada para implantação empresarial e gerenciamento centralizado.
description_it    : Claude Desktop (MSIX) è la versione in formato MSIX dell'assistente IA Claude di Anthropic per Windows, progettata per la distribuzione aziendale e la gestione centralizzata.
description_nl    : Claude Desktop (MSIX) is de in MSIX verpakte versie van Anthropic's Claude AI-assistent voor Windows, ontworpen voor bedrijfsimplementatie en gecentraliseerd beheer.
description_ru    : Claude Desktop (MSIX) — это версия ИИ-ассистента Claude от Anthropic для Windows, упакованная в формат MSIX и предназначенная для корпоративного развертывания и централизованного управления.
audit_schedule    : 
editor            : anthropic
keywords          : 
licence           : ©
homepage          : https://claude.com/download
package_uuid      : fe7fab5b-12d3-4466-aa3a-d9b9ecfd5116
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0.22000
max_os_version    : 
icon_sha256sum    : 3487c5f5d046d0a90b46396919c232709c623413e068cdaa9ea9fa132e710689
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-08-21T01:06:30.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         : Eg4epqzpy/Qk8M6e2ki73H6nrhZL9o2zjpXgY+za5SS8GQvaVaQS2BrfAxYvQt1Vx9zOi7N09vXrSfVWjfIU7Q5frcSCBoKNMRMWy5l/ul0BKKpv+iz9pJ0GL4r+7tyFiyosmECh+b2zuJydiQQtKy1liHp6JITYGE8g9LDP+yvtFZI9KIVB6nSEsyr/GtGJVgwLYz4SDqPN+IpHRniO1I8tWqFRTB4pTgKrWJ4uQ78G29p9ZvoR1Q/9z8bAdZ3tN3wTYtbdL8ioQeAWpfWQs9J+otgItN54UnXKoJt6uD5vWVoxcI4tcjZIQ5oXUiu8EI6ngElvG/kloX2Bj7hRCg==

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
# -*- coding: utf-8 -*-
from setuphelpers import *

appx_package_name = "Claude"
appx_dir = makepath(programfiles, "WindowsAppsInstallers")

def install():
    # Declare local variables
    bin_path = glob.glob(f"Claude*.msix")[0]
    add_appx_cmd = f'Add-AppxProvisionedPackage -Online -PackagePath "{bin_path}" -SkipLicense'

    # Installing the UWP application
    appxprovisionedpackage = run_powershell(
        f'Get-AppXProvisionedPackage -Online | '
        f'Where-Object DisplayName -Like "*{appx_package_name}*" | '
        f'Select-Object -First 1 DisplayName, Version, PackageName',
        output_format="json"
    )
    pkg_version = "0"
    if appxprovisionedpackage:
        pkg_version = appxprovisionedpackage.get("Version", "0")
    print(f"Detected installed version: {pkg_version}")
    print(f"Target version: {control.get_software_version()}")

    if Version(pkg_version, 4) < Version(control.get_software_version(), 4):
        print(f"Installing: {bin_path.split(os.sep)[-1]} ({control.get_software_version()})")
        killalltasks(ensure_list(control.impacted_process))
        run_powershell(add_appx_cmd, output_format="text")
    else:
        print(f"{appx_package_name} is already installed and up-to-date ({pkg_version}).")

def uninstall():
    print(f"Removing AppX: {appx_package_name}")
    remove_appx(appx_package_name)
    #remove_appx("com.canva.CanvaDesktop")

def remove_appx(package, default_user=True):
    if running_as_admin() or running_as_system():
        if default_user:
            run_powershell(
                f'Get-AppXProvisionedPackage -Online | Where-Object DisplayName -Like "{package}" | Remove-AppxProvisionedPackage -Online -AllUsers',
                output_format="text",
            )
        run_powershell(
            r'Get-AppxPackage -Name "%s" -AllUsers | Where-Object {{ -not ($_.NonRemovable) }} | Remove-AppxPackage -AllUsers' % package,
            output_format="text",
        )
    else:
        run_powershell(r'Get-AppxPackage -Name "%s" | Where-Object {{ -not ($_.NonRemovable) }} | Remove-AppxPackage' % package, output_format="text")

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import requests
import glob

def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()
    #url = "https://claude.ai/api/desktop/win32/x64/setup/latest"
    msix_url = "https://claude.ai/api/desktop/win32/x64/msix/latest"
    user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0"

    # Getting latest version information from official sources
    print("URL used is: %s" % msix_url)
    latest_version_infos = requests.get(msix_url,proxies=proxies,headers={"User-Agent": user_agent},).json()

    download_url = latest_version_infos["url"]
    latest_bin = download_url.split("/")[-1]
    version = latest_version_infos["version"]

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, user_agent=user_agent, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Changing version of the package
    control.set_software_version(version)
    control.save_control_to_wapt()
    print("Changing package version to: %s in WAPT\\control" % control.version)

    # Deleting outdated binaries
    for binary in glob.glob("ClaudeSetup-*.exe"):
        if binary != latest_bin:
            print("Deleting outdated binary: %s" % binary)
            remove_file(binary)

26cddd0edd0407c233abc4d809050abf19f245d302a1bd99fb44d9176193b59d : Claude-5fa47405f655b8be5b4148d42dc73acf34eb5d5f.msix
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
c367a6a675deefbaa0e99e4b0dbab9c92438bfd75ce947a9b321822f2e65ad75 : WAPT/control
3487c5f5d046d0a90b46396919c232709c623413e068cdaa9ea9fa132e710689 : WAPT/icon.png
415182b1f82019684c0140ffe845d6d1d7c09e0f52a47b80c808d3fd50863c2b : luti.json
220ee0b832349d938de5da5ca427c2989e7b89c0d3b19b032fd0ac89dc6cc3bc : setup.py
d8b3ce6c1da29da9a4a30ba4fa6b25878992466daaf2a7f6913de14c19feef78 : update_package.py