tis-microsoft-purview-information-protection icon

Microsoft Purview Information Protection

Paquet d’installation silencieuse pour Microsoft Purview Information Protection

3.0.58.0-2

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

package           : tis-microsoft-purview-information-protection
version           : 3.0.58.0-2
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      : 9ef0888e-74db-401d-bcca-ff02b4130c79
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    : 2024-09-30T10:44:40.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         : CnP8ZxJZntq+8zKVHE9zAkhZZjBOB6p3Izgiw1olEjjT1n7JFKI9D7MlbEU3Fb3Lv4xFwVmmG1kKcfMRzBIRZ0TGX8iQ4UQshe6lVhbgwj6mmINVNYd2E83138EFMc6FrvJTGwPkyTYOSxqBYbhfA09mSNEDnysxnkoMYxx2wptsb+wRDTSsrFh3nxWBPYCvbD+PCqPaAKGvBJcnXwLo6/Pqy/nxWjQqA5bbcCr/RMFxvHOBxwUdgmwHrbeQ3jowqtUgEuBqOboy7SNJJ+F9mWCQ2WRFJg2jXlFyHoLayMm2Nfhx5Fj1vG08xZVfEJ5ONnsCfeaCokrEyJsaW0otAQ==

# -*- 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()    
        

b1947b7767b3cc1219c665dce975951e390ad6953f912a01ae0f218f1e1042f3 : PurviewInfoProtection.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5ee62d1abd9381cf4f1d69a01ba79e6b8194dbdfc9aaefd1f99cda0b14449604 : WAPT/control
91ca20d0991994b8e164b400333accca89eef16da555b2713576010d896b635f : WAPT/icon.png
f5031b2136c0caf0640a625724831630a7eba18b7ddf0cf8737597413682ff03 : luti.json
c01886fa634a15aca3f0aff1e96a62025033c25c0eafc8e55147c0efe48b06c3 : setup.py
ad4201ecaf60e819d0718290d30458407b839ca28bc787b107c3e1c852ba112a : update_package.py