tis-microsoft-purview-information-protection icon

Microsoft Purview Information Protection

Paquet d’installation silencieuse pour Microsoft Purview Information Protection

3.1.105.0-1

  • package: tis-microsoft-purview-information-protection
  • name: Microsoft Purview Information Protection
  • version: 3.1.105.0-1
  • categories: Security
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: opensource_free,wapt_public
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 148.66 Mo

package           : tis-microsoft-purview-information-protection
version           : 3.1.105.0-1
architecture      : x64
section           : base
priority          : optional
name              : Microsoft Purview Information Protection
categories        : Security
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : Microsoft Purview is a comprehensive portfolio of products covering data governance, data security, risk and compliance solutions
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Microsoft Purview est un portefeuille complet de produits couvrant la gouvernance des données, la sécurité des données, les solutions de risque et de conformité
description_pl    : Microsoft Purview to kompleksowe portfolio produktów obejmujących rozwiązania z zakresu zarządzania danymi, bezpieczeństwa danych, ryzyka i zgodności
description_de    : Microsoft Purview ist ein umfassendes Produktportfolio, das Data Governance, Datensicherheit, Risiko- und Compliance-Lösungen abdeckt
description_es    : Microsoft Purview es una completa cartera de productos que abarca soluciones de gobierno de datos, seguridad de datos, riesgos y cumplimiento normativo
description_pt    : O Microsoft Purview é uma carteira abrangente de produtos que cobrem soluções de governação de dados, segurança de dados, risco e conformidade
description_it    : Microsoft Purview è un portafoglio completo di prodotti che comprende soluzioni per la governance dei dati, la sicurezza dei dati, il rischio e la conformità
description_nl    : Microsoft Purview is een uitgebreid portfolio van producten voor data governance, databeveiliging, risico- en compliance-oplossingen
description_ru    : Microsoft Purview - это комплексный портфель продуктов, охватывающий решения для управления данными, обеспечения безопасности данных, рисков и соответствия нормативным требованиям
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_public
homepage          : 
package_uuid      : 1a4b4ec6-015e-4a89-98e0-9c2c0bd36644
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 91ca20d0991994b8e164b400333accca89eef16da555b2713576010d896b635f
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-01-18T21:06:27.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         : TM0LJgVMf4TxfrTtEzUFpb/UMzHWgFPlsD394you+EdRXEBsPktH49en0PUrt5th1OPKNLv/Xmv0EVbeIGPInnGjshDyuFM0FAojY51yx2wsvY61SG400Z+LP/N5nr8mYJjOI3G6ILM+pE1jJ4Rw6D3Z89r7uHhmXtHBKE0B4XYS+DflJdK7i515tuVKjlLbLVPPyTgWxXRp9FQQf94Mxhjk52qD1ck90urMJU9dkES++vc+X50tHJoJBog/M+i71qUOKZXwK98M1JzPa16p5kO8RZnR3IoCO59e5QSQnsAa5sxsYulyMnIzZ8vMos/sZ15Lg23F26FuABxD9mtFyw==

# -*- 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
    
    install_msi_if_needed('PurviewInfoProtection.msi')



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



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/4/9/1/491251F7-46BA-46EC-B2B5-099155DD3C27/PurviewInfoProtection.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)


    # Deleting outdated binaries
    for f in glob.glob('*.msi'):
        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()    
        

2f96e8c4e50131dab8508782935e4eaddb6891ece8bd2f68ab25baf7b063beb5 : PurviewInfoProtection.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
69844aea66847a8b4cede9b757b8d47bf495d083008675132f823a5d23c86407 : WAPT/control
91ca20d0991994b8e164b400333accca89eef16da555b2713576010d896b635f : WAPT/icon.png
e7448a2a11d6b6bb9793973abfa89ec8c373aa9d45229ae24c0e5fe076a8db5d : luti.json
c01886fa634a15aca3f0aff1e96a62025033c25c0eafc8e55147c0efe48b06c3 : setup.py
ad4201ecaf60e819d0718290d30458407b839ca28bc787b107c3e1c852ba112a : update_package.py