PowerShell 技能连载 - 读取已安装的软件(第 1 部分)
Get-ItemProperty
cmdlet 可以比大多数用户知道的功能强大得多的方式读取注册表值。该 cmdlet 支持多个注册表路径,并且支持通配符。这样,只需一行代码即可从四个注册表项读取所有已安装的软件(及其卸载字符串):
1 | # list of registry locations where installed software is stored |
PowerShell 技能连载 - 读取已安装的软件(第 1 部分)
http://blog.vichamp.com/2020/12/18/reading-installed-software-part-1/