在 PowerShell 中获取文件版本
-
在 PowerShell 中使用
Get-Item
获取文件版本 -
在 PowerShell 中使用
Get-ChildItem
获取文件版本 -
在 PowerShell 中使用
Get-Command
获取文件版本 -
在 PowerShell 中使用
System.Diagnostics.FileVersionInfo
获取文件版本
文件版本号是一个 64 位数字,表示文件的版本号。
可执行文件包含版本信息,例如 .exe
和 .dll
。文本文件没有任何版本信息。
版本信息包含文件名、文件版本、公司名称、产品名称、产品版本和语言。本教程将教你在 PowerShell 中获取文件版本。
在 PowerShell 中使用 Get-Item
获取文件版本
Get-Item
cmdlet 在指定位置获取项目。你可以使用 VersionInfo.FileVersion
属性在 PowerShell 中获取文件版本号。
以下示例显示如何使用 Get-Item
和 VersionInfo.FileVersion
获取文件 C:\Program Files\Google\Chrome\Application\chrome.exe
的版本。
(Get-Item "C:\Program Files\Google\Chrome\Application\chrome.exe").VersionInfo.FileVersion
版本号显示为主要编号.次要编号.内部版本号.私有部件号
。
输出:
98.0.4758.102
在 PowerShell 中使用 Get-ChildItem
获取文件版本
Get-ChildItem
获取一个或多个指定位置的项目和子项目。你还可以使用 Get-ChildItem
和 VersionInfo.FileVersion
属性来获取 PowerShell 中的文件版本。
(Get-ChildItem "C:\Program Files\Google\Chrome\Application\chrome.exe").VersionInfo.FileVersion
输出:
98.0.4758.102
在 PowerShell 中使用 Get-Command
获取文件版本
Get-Command
cmdlet 获取计算机上安装的所有命令。它包括所有 cmdlet、别名、函数、脚本和应用程序。
你可以使用 FileVersionInfo.FileVersion
属性和 Get-Command
来获取 PowerShell 中的文件版本。
以下命令获取文件 C:\Windows\System32\ActionCenter.dll
的文件版本号。
(Get-Command C:\Windows\System32\ActionCenter.dll).FileVersionInfo.FileVersion
输出:
10.0.19041.1 (WinBuild.160101.0800)
在 PowerShell 中使用 System.Diagnostics.FileVersionInfo
获取文件版本
.NET
框架中的 System.Diagnostics.FileVersionInfo
类提供文件的版本信息。
你可以使用 GetVersionInfo()
方法和 FileVersion
属性来获取文件版本号。
[System.Diagnostics.FileVersionInfo]::GetVersionInfo("C:\Windows\System32\ActionCenter.dll").FileVersion
输出:
10.0.19041.1 (WinBuild.160101.0800)
我们希望本教程让你了解如何在 PowerShell 中获取文件版本。