
Microsoft PC Manager
Paquet d’installation silencieuse pour Microsoft PC Manager
3.2.2.0-2
- package: tis-pcmanager-cn
- name: Microsoft PC Manager
- version: 3.2.2.0-2
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- licence: proprietary_free,wapt_public
- target_os: windows
- impacted_process: MSPCManager,MSPCManagerService
- architecture: x64
- signature_date:
- size: 15.39 Mo
- installed_size: 39.79 Mo
- depends:
- conflicts :
package : tis-pcmanager-cn
version : 3.2.2.0-2
architecture : x64
section : base
priority : optional
name : Microsoft PC Manager
categories : System and network
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Silent uninstall do not work - Microsoft PC Manager (微软PC管家 or 微软电脑管家) is a PC management utility from Microsoft that was originally developed for the Chinese market as Windows Master in early versions
depends : tis-webview2
conflicts : tis-pcmanager
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.1
sources : https://pcmanager-en.microsoft.com/
installed_size : 39785603
impacted_process : MSPCManager,MSPCManagerService
description_fr : La désinstallation silencieuse ne fonctionne pas - Microsoft PC Manager (微软PC管家 ou 微软电脑管家) est un utilitaire de gestion de PC de Microsoft qui a été développé à l'origine pour le marché chinois sous le nom de Windows Master dans les premières versions
description_pl : Cicha deinstalacja nie działa - Microsoft PC Manager (微软PC管家 lub 微软电脑管家) to narzędzie do zarządzania komputerami PC firmy Microsoft, które zostało pierwotnie opracowane na rynek chiński jako Windows Master we wczesnych wersjach
description_de : Stille Deinstallation funktioniert nicht - Microsoft PC Manager (微软PC管家 oder 微软电脑管家) ist ein PC-Verwaltungsprogramm von Microsoft, das ursprünglich für den chinesischen Markt als Windows Master in frühen Versionen entwickelt wurde
description_es : La desinstalación silenciosa no funciona - Microsoft PC Manager (微软PC管家 o 微软电脑管家) es una utilidad de gestión de PC de Microsoft que se desarrolló originalmente para el mercado chino como Windows Master en las primeras versiones
description_pt : Desinstalação silenciosa não funciona - Microsoft PC Manager (微软PC管家 ou 微软电脑管家) é um utilitário de gerenciamento de PC da Microsoft que foi originalmente desenvolvido para o mercado chinês como Windows Master nas primeiras versões
description_it : La disinstallazione silenziosa non funziona - Microsoft PC Manager (微软PC管家 o 微软电脑管家) è un'utilità di gestione del PC di Microsoft, originariamente sviluppata per il mercato cinese come Windows Master nelle prime versioni
description_nl : Stil verwijderen werkt niet - Microsoft PC Manager (微软PC管家 of 微软电脑管家) is een hulpprogramma voor pc-beheer van Microsoft dat oorspronkelijk werd ontwikkeld voor de Chinese markt als Windows Master in vroege versies
description_ru : Silent uninstall do not work - Microsoft PC Manager (微软PC管家 или 微软电脑管家) - это утилита управления ПК от Microsoft, которая первоначально была разработана для китайского рынка как Windows Master в ранних версиях
audit_schedule :
editor :
keywords :
licence : proprietary_free,wapt_public
homepage :
package_uuid : 81f2883d-9040-49c9-a4c1-5f659e12540b
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : c87bc6e9d2ad703496f685916003f41099423d44ecef630fb5456b709c22c56f
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : qG9k9PhoOI+80xaC69F4qPLY1tgHuFk5ncpGMRwsuRD1FO0rcUCbSOY1BRK6Ytn6iti0f03571/K2WNVFxEsjTJgNON6AcdF5ufS5prkw7MrchESBMzxcDFZ1TqclexwJKI/2fIDxgDTxy/vkJeo8P/PxiaF3YGXreWvyNi0DZRhDaF1FmSe73RpE/6Mk+wMDq0HdeU3sGjrBTcbAFfgNymV3FiCLURhVfmiN681uxszpybIioX1g+9AKVFMMd2lBUFpY+ioB4nYL+7EzZTIYPtohCUzxa8rOpBKasQzhOaxfuaXenRgJg/yy+b3q1+Vy+JsV8Brwj3MJpmkiQTtyg==
signature_date : 2023-06-24T21:09:34.659000
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
# -*- coding: utf-8 -*-
from setuphelpers import *
app_uninstallkey = "MSPCManager"
def install():
bin_name = glob.glob("MSPCManager*.exe")[0]
install_exe_if_needed(
bin_name,
"/S",
app_uninstallkey,
control.get_software_version(),
)
# Adding QuietUninstallString
quiet_uninstall_string = installed_softwares(uninstallkey=app_uninstallkey)[0]["uninstall_string"] + " /S"
register_uninstall(app_uninstallkey, quiet_uninstall_string=quiet_uninstall_string)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
download_dict = {
"windows-x64": "https://pcmanager.officeplus.cn/mvp/10000/41907/MSPCManagerOffline_20230613.41907.exe?sv=2021-10-04&se=2023-12-10T08:28:08Z&sr=c&sp=rwdl&sig=bq4zvxIVJus1tCgmzvsuDucVW/MWOGVWdDIPpr4TxP4=",
}
download_url = download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]]
latest_bin = download_url.split("?")[0].split("/")[-1]
# Deleting binaries
for f in glob.glob("*.exe") + glob.glob("*.msi"):
print("Removing: %s" % f)
remove_file(f)
# 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)
else:
print("Binary is present: %s" % latest_bin)
# Changing version of the package
version = get_version_from_binary(latest_bin)
if Version(version, 4) > Version(control.get_software_version(), 4):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.set_software_version(version)
control.save_control_to_wapt()
# Validating or not update-package-sources
return package_updated
733cf413c61526ef186c5908286e55e80fcd62d755bde779d584c0a127ecbf02 : setup.py
b07f1415b0a4705a1ab86b21c258dea0e64515f5f5cc21e9701479df5258e44f : update_package.py
988fa0a99482f1be41a395a3ccbd36e04e158054271bf58366c97c03503abb14 : MSPCManagerOffline_20230613.41907.exe
c87bc6e9d2ad703496f685916003f41099423d44ecef630fb5456b709c22c56f : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
42472abbcda8f2eace0b90c1ce1053b214da20e13128724283ac70febf4bfe82 : luti.json
41f7c70009d127c364273c451fcb57ef1c597afbb1916fca56683f563372d587 : WAPT/control