>  기사  >  php教程  >  rpm 패키지 관리자와 유사한 Windows Installer PowerShell 모듈 소개

rpm 패키지 관리자와 유사한 Windows Installer PowerShell 모듈 소개

高洛峰
高洛峰원래의
2017-01-07 14:05:562425검색

1. Windows Installer PowerShell 모듈 소개

Windows Installer PowerShell 모듈은 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.

2. Windows Installer PowerShell 모듈의 주요 기능:

1. 시스템에 설치된 제품 및 패치를 조회합니다.
2. 🎜>3. 제품 및 패치 설치, 복구 및 제거
4. 제품 및 패치 확인


Windows Installer PowerShell 모듈 소개와 유사한 관련 기사를 더 보려면 rpm 패키지 관리자님, PHP 중국어 넷을 주목해주세요!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.