[玩转系统] 在 PowerShell 中查找包
作者:精品下载站 日期:2024-12-14 17:29:25 浏览:12 分类:玩电脑
在 PowerShell 中查找包
`Find-Package
` 是 PowerShell PackageManagement 模块中的 cmdlet。它用于在可用存储库中查找软件包。这些存储库可以包括 PowerShell 库、Chocolatey、Nuget 等。
下面是一个用于在可用存储库中查找包的 PowerShell 命令。
Find-Package *
PowerShell PackageManagement 模块中的 Find-Package
命令可用于从软件包提供者查找所有可用的软件包、从软件包源查找软件包、查找某个软件包的所有版本package,并找到具有特定名称的包。
在本文中,我们将讨论如何使用 Powershell 中的 Find-Package cmdlet 在可用存储库中搜索包。
如何从软件包提供商处查找所有可用的软件包
要从软件包提供程序查找所有可用软件包,请使用带有 -ProviderName
参数的 Find-Package 命令。
Find-Package -ProviderName PowerShellGet
在上面的 PowerShell 脚本中,Find-Package
命令使用 ProviderName
参数指定提供程序 PowerShellGet
并查找以下位置中所有可用的 PowerShell 模块包:已注册的 PSGallery。
下面给出了上述列出所有包的 PowerShell 脚本的输出。
如何从包源查找包
使用 Find-Package
命令和 Source 参数从指定的包源中查找包。
Find-Package -Name Az.Postgresql -Source PSGallery
在上面的 PowerShell 脚本中,Find-Package 命令使用 Name
参数指定包名称“Az.Postgresql”和 Source
参数指定包源“PSGallery”。此命令从指定的包源查找最新版本的包。
下面给出了上述从包源搜索包名称的 PowerShell 脚本的输出。
PS C:\> Find-Package -Name Az.Postgresql -Source PSGallery
Name Version Source Summary
---- ------- ------ -------
Az.PostgreSql 1.1.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
PS C:\>
如何查找软件包的所有版本
要查找包的所有版本,请使用带参数 AllVersions
的 Find-Package
命令。
Find-Package -Name Az.Postgresql -Source PSGallery -AllVersions
在上面的 PowerShell 脚本中,Find-Package
cmdlet 使用 Name
参数指定包名称“Az.Postgresql”和 Source“ PSGallery”。然后,它使用 AllVersions
参数来检索包的所有可用版本。
上述 PowerShell 脚本的输出查找指定提供商的所有可用软件包版本,如下所示。
PS C:\> Find-Package -Name Az.Postgresql -Source PSGallery -AllVersions
Name Version Source Summary
---- ------- ------ -------
Az.PostgreSql 1.1.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 1.0.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 0.8.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 0.7.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 0.6.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 0.5.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 0.4.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 0.3.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 0.2.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
Az.PostgreSql 0.1.0 PSGallery Microsoft Azure PowerShell: PostgreSql cmdlets
PS C:\>
如何查找具有特定名称的包
您可以在 PowerShell 中使用 Find-Package
命令从指定提供商查找具有特定名称的包。
Find-Package -Name PackageManagement -ProviderName PowerShellGet -RequiredVersion 1.3.1
在上面的 PowerShell 脚本中,Find-Package
命令使用 Name
参数指定包名称“PackageManagement”。 ProviderName
参数指定在“PowerShellGet”中搜索包。 RequiredVersion
指定仅检查版本 1.3.1 并返回结果。
上述 PowerShell 脚本的输出从指定的提供程序中查找特定的软件包版本。
PS C:\> Find-Package -Name PackageManagement -ProviderName PowerShellGet -RequiredVersion 1.3.1
Name Version Source Summary
---- ------- ------ -------
PackageManagement 1.3.1 PSGallery PackageManagement (a.k.a. OneGet) is a new way to discover and install softwa...
PS C:\>
结论
希望上面关于如何使用PowerShell模块中的Find-Package
命令在提供程序中搜索包的文章对您有所帮助。
您可以在 ShellGeek 主页上找到有关 PowerShell Active Directory 命令和 PowerShell 基础知识的更多主题。
相关链接
获取包
获取PackageProvider
安装包
安装 NuGet 包
获取包源
注册包源
猜你还喜欢
- 03-30 [玩转系统] 如何用批处理实现关机,注销,重启和锁定计算机
- 02-14 [系统故障] Win10下报错:该文件没有与之关联的应用来执行该操作
- 01-07 [系统问题] Win10--解决锁屏后会断网的问题
- 01-02 [系统技巧] Windows系统如何关闭防火墙保姆式教程,超详细
- 12-15 [玩转系统] 如何在 Windows 10 和 11 上允许多个 RDP 会话
- 12-15 [玩转系统] 查找 Exchange/Microsoft 365 中不活动(未使用)的通讯组列表
- 12-15 [玩转系统] 如何在 Windows 上安装远程服务器管理工具 (RSAT)
- 12-15 [玩转系统] 如何在 Windows 上重置组策略设置
- 12-15 [玩转系统] 如何获取计算机上的本地管理员列表?
- 12-15 [玩转系统] 在 Visual Studio Code 中连接到 MS SQL Server 数据库
- 12-15 [玩转系统] 如何降级 Windows Server 版本或许可证
- 12-15 [玩转系统] 如何允许非管理员用户在 Windows 中启动/停止服务
取消回复欢迎 你 发表评论:
- 精品推荐!
-
- 最新文章
- 热门文章
- 热评文章
[影视] 黑道中人 Alto Knights(2025)剧情 犯罪 历史 电影
[古装剧] [七侠五义][全75集][WEB-MP4/76G][国语无字][1080P][焦恩俊经典]
[实用软件] 虚拟手机号 电话 验证码 注册
[电视剧] 安眠书店/你 第五季 You Season 5 (2025) 【全10集】
[电视剧] 棋士(2025) 4K 1080P【全22集】悬疑 犯罪 王宝强 陈明昊
[软件合集] 25年6月5日 精选软件22个
[软件合集] 25年6月4日 精选软件36个
[短剧] 2025年06月04日 精选+付费短剧推荐33部
[短剧] 2025年06月03日 精选+付费短剧推荐25部
[软件合集] 25年6月3日 精选软件44个
[剧集] [央视][笑傲江湖][2001][DVD-RMVB][高清][40集全]李亚鹏、许晴、苗乙乙
[电视剧] 欢乐颂.5部全 (2016-2024)
[电视剧] [突围] [45集全] [WEB-MP4/每集1.5GB] [国语/内嵌中文字幕] [4K-2160P] [无水印]
[影视] 【稀有资源】香港老片 艺坛照妖镜之96应召名册 (1996)
[剧集] 神经风云(2023)(完结).4K
[剧集] [BT] [TVB] [黑夜彩虹(2003)] [全21集] [粤语中字] [TV-RMVB]
[实用软件] 虚拟手机号 电话 验证码 注册
[资源] B站充电视频合集,包含多位重量级up主,全是大佬真金白银买来的~【99GB】
[影视] 内地绝版高清录像带 [mpg]
[书籍] 古今奇书禁书三教九流资料大合集 猎奇必备珍藏资源PDF版 1.14G
[电视剧] [突围] [45集全] [WEB-MP4/每集1.5GB] [国语/内嵌中文字幕] [4K-2160P] [无水印]
[剧集] [央视][笑傲江湖][2001][DVD-RMVB][高清][40集全]李亚鹏、许晴、苗乙乙
[电影] 美国队长4 4K原盘REMUX 杜比视界 内封简繁英双语字幕 49G
[电影] 死神来了(1-6)大合集!
[软件合集] 25年05月13日 精选软件16个
[精品软件] 25年05月15日 精选软件18个
[绝版资源] 南与北 第1-2季 合集 North and South (1985) /美国/豆瓣: 8.8[1080P][中文字幕]
[软件] 25年05月14日 精选软件57个
[短剧] 2025年05月14日 精选+付费短剧推荐39部
[短剧] 2025年05月15日 精选+付费短剧推荐36部
- 最新评论
-
- 热门tag