获取电脑中所安装的软件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取电脑中所安装的软件相关的知识,希望对你有一定的参考价值。
一、下载
Get-InstalledSoftwares.ps1函数
二、导入
Get-InstalledSoftwares函数
Invoke-Expression (new-object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/mosserlee/PSTips/master/Functions/Get-InstalledSoftwares.ps1')
三、获取软件实例
1.获取当前电脑所安装的软件
Get-InstalledSoftwares
2.获取电脑中已经安装的软件,并筛选出“U启动”相关软件
Get-InstalledSoftwares | Where-Object {$_.Name -like "*U启动*"}
以上是关于获取电脑中所安装的软件的主要内容,如果未能解决你的问题,请参考以下文章