类似rpm包管理器的Windows Installer PowerShell Module简介
一、Windows Installer PowerShell Module简介
Windows Installer PowerShell Module是一个开源项目,存放在微软的开源项目网站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.
二、Windows Installer PowerShell Module主要功能:
1.查询系统已经安装的产品和补丁
2.查询源安装包信息
3.安装,修复和卸载产品和补丁
4.验证产品和补丁
下载与详细文档,可以参考项目主页:http://psmsi.codeplex.com/
相关文章
PowerShell中的特殊变量$null介绍和创建多行注释小技巧
这篇文章主要介绍了PowerShell中的特殊变量$null介绍和创建多行注释小技巧,需要的朋友可以参考下2014-08-08PowerShell中使用Like运算符配合通配符查找字符串例子
这篇文章主要介绍了PowerShell中使用Like运算符配合通配符查找字符串例子,Like的返值为TRUE和FALSE,需要的朋友可以参考下2014-08-08PowerShell使用Remove-Item命令删除文件、注册表项介绍
这篇文章主要介绍了PowerShell使用Remove-Item命令删除文件、注册表项介绍,另外Remove-Item的别名也有很多,需要的朋友可以参考下2014-08-08PowerShell中查找字符串位置的IndexOf函数使用实例
这篇文章主要介绍了PowerShell中查找字符串位置的IndexOf函数使用实例,例子简单明了,容易看懂,需要的朋友可以参考下2014-08-08PowerShell中使用Get-Alias命令获取cmdlet别名例子
这篇文章主要介绍了PowerShell中使用Get-Alias命令获取cmdlet别名的例子,PowerShell中兼容DOS下和Linux下的很多命令,这些都是靠别名来实现的,需要的朋友可以参考下2014-08-08PowerShell中运行CMD命令的技巧总结(解决名称冲突和特殊字符等问题)
这篇文章主要介绍了PowerShell中运行CMD命令的技巧总结(解决名称冲突和特殊字符等问题),需要的朋友可以参考下2014-05-05
最新评论