Maison > php教程 > PHP开发 > Introduction au module PowerShell de Windows Installer similaire au gestionnaire de packages RPM

Introduction au module PowerShell de Windows Installer similaire au gestionnaire de packages RPM

高洛峰
Libérer: 2017-01-07 14:05:56
original
2461 Les gens l'ont consulté

1. Introduction au module PowerShell de Windows Installer

Le module PowerShell de Windows Installer est un projet open source stocké sur le site Web du projet open source de Microsoft, CodePlex.

Project Description
Exposes Windows Installer functionality to PowerShell, providing means to query installed product and patch information and to query views on packages.
PowerShell is a powerful command shell that pipes objects - not just text. Because of this ability, you can string practically unrelated commands together in many different ways to work on different types of objects, all built on .NET. You can use all the properties and methods of those objects passed through the pipeline instead of being limited by the text sent to you as with traditional command shells.
This Windows Installer module for PowerShell provides cmdlets ("command-lets") - similar to functions - to query package states, patches registered and applied to products, and more. You can use it to query Windows Installer products and patches installed on your system.
get-msiproductinfo | where { $_.Name -like '*Visual Studio*' }
You can even use it to determine which products installed a particular file on your system.
get-msicomponentinfo `
    | where { $_.Path -like 'C:\Program Files\*\Common7\IDE\devenv.exe'} `
    | get-msiproductinfo
And with new cmdlets in 2.2.0 you can also install, repair, and uninstall products and patches complete with progress information, and warnings and errors direct to the pipeline.
install-msiproduct .\example.msi -destination (join-path $env:ProgramFiles Example)
You can find more Examples and usage in the Documentation.
Copier après la connexion

2. Principales fonctions du module Windows Installer PowerShell :

1. Interrogez les produits et les correctifs qui ont été installés sur le système
2. 🎜>3. Installation, réparation et désinstallation des produits et des correctifs
4. Vérifier les produits et les correctifs


Pour plus d'articles connexes similaires à l'introduction du module PowerShell de Windows Installer de gestionnaire de paquets rpm, veuillez faire attention au réseau chinois PHP !


Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal