1

簡単な wmic.exe クエリを作成します。

if wmic product where "name like '%Adobe Reader%'" get version

バージョンが11.0.04に等しいかどうかを確認したい

バージョン eq 11.0.04 が終了した場合

どうもありがとう

4

1 に答える 1

2

wmic例:

@ECHO OFF &SETLOCAL 
for /f %%a in ('wmic product where 'name like "%%Adobe Reader%%"' get version /value^|find /i "Version"') do set "%%~a"
if defined Version (echo %Version%) else echo Adobe Reader not found!
if "%Version%"=="11.0.04" goto:eof
于 2013-10-04T10:11:43.837 に答える