tis-microsoft-server-speech-platform-runtime icon

Microsoft Server Speech Platform Runtime

Silent install package for Microsoft Server Speech Platform Runtime

11.0.7400.345-1

  • package: tis-microsoft-server-speech-platform-runtime
  • name: Microsoft Server Speech Platform Runtime
  • version: 11.0.7400.345-1
  • maintainer: Administrator
  • target_os: windows
  • architecture: x86
  • signature_date:
  • size: 2.35 Mo

package           : tis-microsoft-server-speech-platform-runtime
version           : 11.0.7400.345-1
architecture      : x86
section           : base
priority          : optional
name              : Microsoft Server Speech Platform Runtime
categories        : 
maintainer        : Administrator
description       : Microsoft Speech Platform Runtime contient une API gérée (.NET) et native (COM) pour le développement d'applications vocales basées sur un serveur.
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
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      : 29b7beed-8996-47cc-bc2c-ef47cb19e670
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 08c574868a3ef83065f564631561a5474267757a75600ace9bf8ea8f893ff11e
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-10-29T09:05:13.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         : xhiVyYI/wa0WvviBRSnpIB8ofBTC4RxdaCvXxG1Trka8AX4ojV9BIysFkA707VsRbZbV95R2t7rjgxDsDSyA79YLgDcIiYGuyfIsMHIz/MhDJw3YydJJMpdDWnAW0zyDkg0+P7CkOv7ViXD3sHRHUmxsjy5tnEMAK58bYwcufFEYxt9oK8B6+YQlwxEEwl+PktoSm/QL21YAlV+AUoSGEu63qZdBQHlTNFvKcmWrNv+g+ExBSzUtsd3ffQatbvwVGrHKGoZmsngWftgt1tu2a/eQaDv4a3sIpxVVUjD4l7kyjKx5eh/41gq0wFLDRQV+cA+NPrs4Rf6v7JKST2TmrA==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# 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

    # Installing the software
    print("Installing: SpeechPlatformRuntime.msi")
    install_msi_if_needed('SpeechPlatformRuntime.msi')



# -*- 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 *
import glob
import waptlicences


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

    download_url = "https://download.microsoft.com/download/A/6/4/A64012D6-D56F-4E58-85E3-531E56ABC0E6/x86_SpeechPlatformRuntime/SpeechPlatformRuntime.msi"
    latest_bin = download_url.split("/")[-1]
   

    # 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)
        package_updated = True
    else:
        print("Binary is present: %s" % latest_bin)

    
    # Check signature bin
    expected_issuer = 'Microsoft Corporation'
    sign_name = waptlicences.check_msi_signature(latest_bin)[0]
    if sign_name != expected_issuer:
        error('Bad issuer %s != %s ' % (sign_name,expected_issuer))


    # Deleting outdated binaries
    for f in glob.glob('*.exe'):
        if f != latest_bin:
            remove_file(f)

           
    version = get_version_from_binary(latest_bin)
    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()    
        

9b42eec0db1dc3cb92fcdd795ea0771edac1cf58118d12a810810268adb954b4 : SpeechPlatformRuntime.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
c3fa1c7bff2acdc0ba91ac23b3727badc5e4d96469b41e62a6cfd5026372664f : WAPT/control
08c574868a3ef83065f564631561a5474267757a75600ace9bf8ea8f893ff11e : WAPT/icon.png
9b76c889c73716ecd02497b208fd06f87b1aa9ed4c1b7deae9a452b3ea0066bd : luti.json
c00e03267210240dad946f38dffb4c7c6acd7bad4f9c363328b23d882a8c2e89 : setup.py
0be7496a326fa72183eb09bff15a7c62f33729a405ac53f9d42840dde321551c : update_package.py