我正在尝试获取Google Chrome的版本号,但找不到。
我可以看到已安装chrome:
我尝试使用PowerShell
:
get-wmiobject Win32_Product | Format-Table IdentifyingNumber, Name, LocalPackage -AutoSize
但是我得到的是一个其中不包含“ Google Chrome”的列表。
如何获取Google Chrome的版本号?
答案 0 :(得分:0)
您可以查询注册表项。
(Get-Item (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe').'(Default)').VersionInfo
它符合您的需求吗?
答案 1 :(得分:0)
假设Chrome已安装到默认目录,则可以使用:
.content-title {
padding-top: 4rem;
}
.content-title h3 {
color: #333333;
text-transform: uppercase;
position: relative;
padding-bottom: 2rem;
}
.content-title h3:after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 15%;
height: .4rem;
background: #ff5f06;
margin: 0 auto;
}
答案 2 :(得分:0)
这是使用 Get-WmiObject 的解决方案:
(Get-WmiObject -Class CIM_DataFile -Filter "Name='C:\\Program Files (x86)\\Google\\Chrome\\Application\\
chrome.exe'" | Select-Object Version).Version
答案 3 :(得分:0)
您可以在Windows cmd上执行Command
wmic datafile where name="C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" get Version /value