我尝试编写一个小的批处理文件,它将根据参数以不同的方式作出反应。 不幸的是,比较2个字符串的“if”语句似乎没有按预期工作。 使用的代码是:
@echo off
if "%1"=="" goto Usage
echo "Parameter: %1"
IF /I "%1"=="START" {
echo "Why the hell is %1 == Start?"
SET Parameter=start
goto :execute
} else if /I "%1"=="STOP" {
SET Parameter=stop
goto :execute
}
echo "Parameter %1% invalid"
:Usage
echo "Synapsis:"
echo " SwitchServices Start|Stop"
goto :EOF
:execute
SET servicename=Dnscache
SET filename=Dnscache.exe
CALL :%parameter%_Service
goto :EOF
:stop_Service
echo ... stopping service ...
net stop %servicename%
if (ERRORLEVEL GTR 0) call :kill_Service
sc config %servicename% start= disabled
Service stopped.
exit /b
:kill_Service
taskkill /f /IM %filename%
exit /b
:start_Service
echo ... starting service ...
sc config %servicename% start= auto
net start %servicename%
exit /b
:EOF
结果是:
c:\Users\kollenba\Documents\Temp>KapschServices.cmd xxx
"Parameter: xxx"
"Why the hell is xxx == Start?"
... starting service ...
[SC] ChangeServiceConfig ERFOLG
Der angeforderte Dienst wurde bereits gestartet.
我不明白为什么条件
if /I "%1"=="START"
无法按预期工作。 任何提示?
前提条件:必须以管理员权限执行批处理文件才能允许“net start”命令。 二手操作系统:Windows 7
答案 0 :(得分:1)
在批处理中,我们不使用大括号括起if语句,而是使用括号。所以替换这个:
IF /I "%1"=="START" {
echo "Why the hell is %1 == Start?"
SET Parameter=start
goto :execute
} else if /I "%1"=="STOP" {
SET Parameter=stop
goto :execute
}
通过这个:
IF /I "%1"=="START" (
echo "Why the hell is %1 == Start?"
SET Parameter=start
goto :execute
) else if /I "%1"=="STOP" (
SET Parameter=stop
goto :execute
)
您在echo
Service stopped.
奖励提示:您实际上不需要:EOF
标签,因为goto :EOF
将始终将您带到文件末尾