tis-laps

6.2.0.0-13
Local Administrator Password Solution (LAPS) for clients (CSE)
2265 downloads
Download
See build result See VirusTotal scan
tis-laps icon
  • package : tis-laps
  • name : LAPS
  • version : 6.2.0.0-13
  • categories : Security
  • maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT
  • editor : Microsoft
  • licence :
  • locale : all
  • target_os : windows
  • impacted_process :
  • architecture : x64
  • signature_date : 2025-08-13 12:27
  • size : 1.13 Mo
  • installed_size : 24.00 Mo
  • homepage : https://www.microsoft.com/download/details.aspx?id=46899
package           : tis-laps
version           : 6.2.0.0-13
architecture      : x64
section           : base
priority          : optional
name              : LAPS
categories        : Security
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT
description       : Local Administrator Password Solution (LAPS) for clients (CSE)
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.microsoft.com/download/details.aspx?id=46899
installed_size    : 24000000
impacted_process  : 
description_fr    : Solution de mot de passe pour administrateur local (LAPS) pour les clients (CSE)
description_pl    : Local Administrator Password Solution (LAPS) dla klientów (CSE)
description_de    : Lokale Administrator-Passwort-Lösung (LAPS) für Clients (CSE)
description_es    : Solución de contraseña de administrador local (LAPS) para clientes (CSE)
description_pt    : Solução de Senha de Administrador Local (LAPS) para clientes (CSE)
description_it    : Soluzione per la password dell’amministratore locale (LAPS) per i client (CSE)
description_nl    : Oplossing voor wachtwoorden voor lokale beheerders (LAPS) voor cliënten (CSE)
description_ru    : Решение для паролей локального администратора (LAPS) для клиентов (CSE)
audit_schedule    : 
editor            : Microsoft
keywords          : 
licence           : 
homepage          : https://www.microsoft.com/download/details.aspx?id=46899
package_uuid      : 98578527-0b2d-4e9e-81e8-714eda27ec45
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 5.2.3790
max_os_version    : 
icon_sha256sum    : 19679fbbaf7e1b6630e722c5a99e9b7d270aa39ebacbe6ef568257fab346db09
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-08-13T12:27:02.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         : ETPas24n4RfIaUGeBSen+WQUu05sP/pxp5lfv2nXwyYH84+hyuk5F8nHKUkmna2dNhiFsaW3SallziwAod5KdAQI/6B8z2F+Y9PYVKdleYxZPKpiAXIzcZ8+ZrlNLgM8YPz77rTJ6QOgFMJ48P3ef74vcIL7QcxIxFJjj09yNpOlwNJb7gVUDB/Rxok8EFxSz1VQf1DNTUZfm4FomytTo9CUF+WIGcDvaAZovY0U9ndlEuPO+z55N8655wfgaCvaEPuSyXLNOzMfDuyMaW1nStIq/EPdGy1bx3f/wDiFkQiShrLVO+XKV8e1fZSIfvMz+E8rKHpL4FWyjYgGgMvFlg==
# -*- coding: utf-8 -*-
from setuphelpers import *

# 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
    if windows_version() < WindowsVersions.Windows11:
        bin_name = glob.glob("LAPS*.msi")[0]

        # Installing the software
        print("Installing: %s" % bin_name)
        install_msi_if_needed(
            bin_name,
            properties="ALLUSERS=1",
        )
# -*- coding: utf-8 -*-
from setuphelpers import *


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    url_dl = "https://download.microsoft.com/download/C/7/A/C7AAD914-A8A6-4904-88A1-29E657445D03/LAPS.x64.msi"

    latest_bin = url_dl.split("/")[-1]

    # Downloading latest binaries
    if isfile(latest_bin):
        remove_desktop_shortcut(latest_bin)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

    # Checking version from file
    version = get_version_from_binary(latest_bin)

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating or not update-package-sources
    return result
0001dd763cc74d37e3979e016ffcd0512d91494a0b3b7270c7a3bb4e1915f6d1 : LAPS.x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
93eb2059060af477102578c3c38ba90aba9f197f4059d9733ebc64b5c0aedf64 : WAPT/changelog.txt
6fdfd3ee11212c681f555736a4cc18cba1a6b635d81f4da791dddb73839c4b5e : WAPT/control
19679fbbaf7e1b6630e722c5a99e9b7d270aa39ebacbe6ef568257fab346db09 : WAPT/icon.png
5ada6774bba5fae90f587f3b2a3f756eb9a65a488bb1f35dfd60f83143136ce4 : luti.json
4cc219e8659c0aed64598ce93e55df80213ed5ec7ba74d28c61e27139b462975 : setup.py
abb44d5882062f8b0b94b58992beb696c9f9ecd6a5dbc07b64c17aa442f64726 : update_package.py
6.2.0.0
===
improve code
Split update-package