tis-microsoft-purview-information-protection icon

Microsoft Purview Information Protection

Silent install package for Microsoft Purview Information Protection

3.0.58.0-1

  • package: tis-microsoft-purview-information-protection
  • name: Microsoft Purview Information Protection
  • version: 3.0.58.0-1
  • 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-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      : 6193538a-ed48-4f67-b15f-6840c010cbcb
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-12-18T20:09:26.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         : SQ0N9XVlSF2ZFaAbUrm3ZYgF+zc4T4ohJFPhm6uwWiErH/XG0Lblj9S21eSa/m9TEgl24HpuN7gIgnO4izm7uboY9nRbRlngUJo6K+ga44flCbxP2LzxOKgp3gARi8D2pXt2zIDY3mOemXF/jWo6mPeuk4gTB9Bt9DIIMb1puK5T/6PKc0em4DjNr5BHUfpOy9itDEh2ykbzuIMJGj5k2VY0rJsWbBifedtxJj3+0SWZrHQv72v3EWRQa+juWcjanI8tW4cKVkeVyH0giu2UoOsMdZOGQ4loqZxiweOGMD6hF4SGlLIBKZSnLwftJuLOrWixUMkV0KsuOx5bmT6WnA==

# -*- 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
9c9c89b9e16371aee42919b8284c7c8ce3835d59ed894f684f49584aeda918c6 : WAPT/control
91ca20d0991994b8e164b400333accca89eef16da555b2713576010d896b635f : WAPT/icon.png
5c9b3128513ca308cbb6eefb0bff0ac564bcff2caacee43e7e32baeb3ef3b845 : luti.json
c01886fa634a15aca3f0aff1e96a62025033c25c0eafc8e55147c0efe48b06c3 : setup.py
ad4201ecaf60e819d0718290d30458407b839ca28bc787b107c3e1c852ba112a : update_package.py