如何测试cmd.exe命令是否存在?

时间:2012-09-27 14:44:07

标签: batch-file dos cmd

例如,在Windows 7 mklink上可以使用cmd.exe /C mklink,但在Windows XP上则不是。{/ p>

除了执行cmd.exe /C mklink并尝试阅读errorlevel之外,是否有更简单的方法来测试cmd.exe是否支持命令?

谢谢!

4 个答案:

答案 0 :(得分:3)

ERRORLEVEL cmd不是命令存在的良好指标,因为如果命令不存在或者命令失败,它被设置为非零值,并且这可以抛出你的考试。

或者,您可以执行以下操作之一:

检查操作系统版本

就像Adriano在评论中建议的那样,可以像这样检查Windows的版本:

set mklink_supported=true
ver | find "XP" >nul 2>&1 && set mklink_supported=false

或者像这样:

set mklink_supported=false
echo %vers% | find "Windows 7" >nul 2>&1 && set mklink_supported=true

然后:

if %mklink_supported%==false (
    echo 'mklink' is not supported on this operating system.
)

或沿着这些方向的东西。但是,您需要确保处理所有必需的操作系统版本。

Testrun命令并检查ERRORLEVEL

或者,您可以尝试直接运行mklink。如果找不到,ERRORLEVEL设置为9009

@echo off
mklink >nul 2>&1
if errorlevel 9009 if not errorlevel 9010 (
    echo 'mklink' is not supported on this operating system.
)

请注意,有两个if - 语句。如果if errorlevel 9009> = 9009,则ERRORLEVEL有效,因此需要第二个if - 语句来排除ERRORLEVEL> 9009时的情况。

我更喜欢第二种解决方案,因为它可以在所有版本的Windows上运行。

答案 1 :(得分:1)

要查找可执行文件,您可以在for循环中使用变量扩展:

setlocal EnableDelayedExpansion
set found=no
for %%f in (mklink.exe) do if exist "%%~$PATH:f" set found=yes
echo %found%
endlocal

答案 2 :(得分:1)

@echo off 
(for /f %%F in ('help') do echo '%%F ')|findstr /i /c:"%1 " 2>&1 >nul && echo Supported || echo Not supported 

这取决于help 似乎包含相当完整的内部命令列表(以及相当多的外部命令)的事实。 它期望命令名作为它的参数(isSupported.bat command_name

它实际上并不测试给定的命令是否执行,只有它应该在那里...
这只是一个想法,请尝试使其无效,如果您这样做,我会很乐意删除。

答案 3 :(得分:0)

我刚才发布了这个batch script on the SS64 Windows CMD Shell forum。它将wmz和Ansgar Wiechers答案中的想法结合到一个方便的包中。

它尝试在PATH中的某处找到给定的可执行文件,然后搜索HELP(如果找不到)。如果缺少HELP涵盖的标准实用程序,它可能会给出错误的错误消息。

::WHICH.BAT  CommandName  [ReturnVar]
::
::  Determines the full path of the file that would execute if
::  CommandName were executed.
::
::  The result is stored in variable ReturnVar, or else it is
::  echoed to stdout if ReturnVar is not specified.
::
::  If no file is found, then an error message is echoed to stderr.
::
::  The ERRORLEVEL is set to one of the following values
::    0 - Success: A matching file was found
::    1 - No file was found and CommandName is an internal command
::    2 - No file was found and CommandName is not an internal command
::    3 - Improper syntax - no CommandName specified
::
@echo off
setlocal disableDelayedExpansion
set "file=%~1"
if not defined file (
  >&2 echo Syntax error: No CommandName specified
  exit /b 3
)
set "noExt="
setlocal enableDelayedExpansion
if "%~x1" neq "" if "!PATHEXT:%~x1=!" neq "!PATHEXT!" set noExt="";
set "modpath=.\;!PATH!"
@for %%E in (%noExt%%PATHEXT%) do @for %%F in ("!file!%%~E") do (
  setlocal disableDelayedExpansion
  if not "%%~$modpath:F"=="" if not exist "%%~$modpath:F\" (
    endlocal & endlocal & endlocal
    if "%~2"=="" (echo %%~$modpath:F) else set "%~2=%%~$modpath:F"
    exit /b 0
  )
  endlocal
)
endlocal
>nul help %~1 && (
  >&2 echo "%~1" is not a valid command
  exit /b 2
)
>&2 echo "%~1" is an internal command