Windows是否有可执行文件,我可以在命令shell中运行,它返回可执行文件(.exe)的版本号?
我看到很多问题显示如何使用不同语言进行操作,并引用第三方软件来编写它,但我找不到一个简单的shell命令来执行此操作。如果我不需要安装任何东西,还有其他要点。
必须以普通用户身份运行。不是管理员。
答案 0 :(得分:23)
wmic datafile where name="C:\\Windows\\System32\\msiexec.exe" get Version /value
您可以使用wmic
来执行此操作。您可以将其包装到批处理文件中
@echo off
setlocal enableextensions
set "file=%~1"
if not defined file goto :eof
if not exist "%file%" goto :eof
set "vers="
FOR /F "tokens=2 delims==" %%a in ('
wmic datafile where name^="%file:\=\\%" get Version /value
') do set "vers=%%a"
echo(%file% = %vers%
endlocal
将其另存为(示例)getVersion.cmd
并调用getVersion.cmd "c:\windows\system32\msiexec.exe"
已修改以适应评论而不需要管理员权限。在这种情况下,混合cmd / javascript文件用于查询wmi。相同用途
@if (@this==@isBatch) @then
@echo off
setlocal enableextensions
set "file=%~f1"
if not exist "%file%" goto :eof
cscript //nologo //e:jscript "%~f0" /file:"%file%"
endlocal
exit /b
@end
var file = WScript.Arguments.Named.Item('file').replace(/\\/g,'\\\\');
var wmi = GetObject('winmgmts:{impersonationLevel=impersonate}!\\\\.\\root\\cimv2')
var files = new Enumerator(wmi.ExecQuery('Select Version from CIM_datafile where name=\''+file+'\''))
while (!files.atEnd()){
WScript.StdOut.WriteLine(files.item().Version);
files.moveNext();
};
WScript.Quit(0)
答案 1 :(得分:10)
如果您愿意并且能够使用PowerShell ......
(get-item -Path 'C:\Program Files\Java\jdk1.8.0_144\bin\java.exe').VersionInfo |
Format-List -Force
如果必须在cmd.exe shell中运行它,则可以使用:
powershell -NoLogo -NoProfile -Command ^
(get-item -Path 'C:\Program Files\Java\jdk1.8.0_152\bin\java.exe').VersionInfo ^| ^
Format-List -Force
答案 2 :(得分:3)
和makecab
的一种方式:
; @echo off
;;goto :end_help
;;setlocal DsiableDelayedExpansion
;;;
;;;
;;; fileinf /l list of full file paths separated with ;
;;; fileinf /f text file with a list of files to be processed ( one on each line )
;;; fileinf /? prints the help
;;;
;;:end_help
; REM Creating a Newline variable (the two blank lines are required!)
; set NLM=^
; set NL=^^^%NLM%%NLM%^%NLM%%NLM%
; if "%~1" equ "/?" type "%~f0" | find ";;;" | find /v "find" && exit /b 0
; if "%~2" equ "" type "%~f0" | find ";;;" | find /v "find" && exit /b 0
; setlocal enableDelayedExpansion
; if "%~1" equ "/l" (
; set "_files=%~2"
; echo !_files:;=%NL%!>"%TEMP%\file.paths"
; set _process_file="%TEMP%\file.paths"
; goto :get_info
; )
; if "%~1" equ "/f" if exist "%~2" (
; set _process_file="%~2"
; goto :get_info
; )
; echo incorect parameters & exit /b 1
; :get_info
; set "file_info="
; makecab /d InfFileName=%TEMP%\file.inf /d "DiskDirectory1=%TEMP%" /f "%~f0" /f %_process_file% /v0>nul
; for /f "usebackq skip=4 delims=" %%f in ("%TEMP%\file.inf") do (
; set "file_info=%%f"
; echo !file_info:,=%nl%!
; )
; endlocal
;endlocal
; del /q /f %TEMP%\file.inf 2>nul
; del /q /f %TEMP%\file.path 2>nul
; exit /b 0
.set DoNotCopyFiles=on
.set DestinationDir=;
.set RptFileName=nul
.set InfFooter=;
.set InfHeader=;
.Set ChecksumWidth=8
.Set InfDiskLineFormat=;
.Set Cabinet=off
.Set Compress=off
.Set GenerateInf=ON
.Set InfDiskHeader=;
.Set InfFileHeader=;
.set InfCabinetHeader=;
.Set InfFileLineFormat=",file:*file*,date:*date*,size:*size*,csum:*csum*,time:*time*,vern:*ver*,vers:*vers*,lang:*lang*"
示例输出(它有一个字符串版本,这是对wmic方法的一个小补充:)):
c:> fileinfo.bat /l C:\install.exe
file:install.exe
date:11/07/07
size:562688
csum:380ef239
time:07:03:18a
vern:9.0.21022.8
vers:9.0.21022.8 built by: RTM
lang:1033
您也可以查看tooltipinfo.bat
答案 3 :(得分:3)
这将只提供文件版本:
"Symfony\Component\Debug\Exception\FatalThrowableError" file : H:\xampp\htdocs\LaraVueAdmin\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php"
line: 147 message : "Type error: Argument 1 passed to Illuminate\Database\Eloquent\Model::__construct() must be of the type array, object given, called in H:\xampp\htdocs\LaraVueAdmin\vendor\artesaos\defender\src\Defender\Traits\Models\Permission.php on line 75"
结果:
wmic datafile where name='c:\\windows\\system32\\notepad.exe' get version
答案 4 :(得分:3)
set EXE='c:\firefox\firefox.exe'
powershell "(Get-Item -path %EXE%).VersionInfo.ProductVersion"
答案 5 :(得分:0)
文件版本c:\ windows \ system32 \ notepad.exe (文件版本已在每个Windows操作系统上预先安装)。
答案 6 :(得分:0)
filever.exe在Windows 2003支持工具的SUPPORT.CAB中,并且可能在其他地方。
从CMD脚本使用VBScript和Scripting.FileSystemObject的方法
print("Total cost is " + str(totC))
print("Average cost is" + str(av))
print("Number of names is " + str(len(N)))
print("Number of costs is " + str(len(C)))
powershell方法的一种变体(如果您从CMD脚本中调用)。 使用FileVersionRaw而不是FileVersion,因为FileVersion可以进行额外的文本修饰,但是必须使用ToString()才能获得预期的格式。
@Echo off
Set Version=
Echo WScript.Echo "Set Version=" ^& CreateObject("Scripting.FileSystemObject").GetFileVersion("%SystemRoot%\notepad.exe") >%temp%\~FileVer.vbs
Cscript.exe //nologo %temp%\~FileVer.vbs>%temp%\~FileVer.cmd
Call %temp%\~FileVer.cmd
Echo Version=%Version%
使用CMD方法比较版本的Powershell,因为这可能是首先询问的原因。 必须使用%ErrorLevel%== x,因为ErrorLevel == x实际上大于或等于。
@Echo off
Set Version=
Powershell -c "'Set Version=' + (Get-Command '%SystemRoot%\Notepad.exe').FileVersionInfo.FileVersionRaw.ToString()">%temp%\~FileVer.cmd
Call %temp%\~FileVer.cmd
Echo Version=%Version%