看看这是不是你想要的结果- @echo off
- :services
- echo 你即将对打印服务进行处理,请确定你 “是”“否” 使用打印机。
- set /p yn="《请输入 Y 或 N》"
- if %yn%==y goto auto
- if %yn%==Y goto auto
- if %yn%==n goto dis
- if %yn%==N goto dis
- cls
- echo "输入错误,请重新输入!"
- goto services
-
- :auto
- sc config "spooler" start= AUTO
- goto end
- :dis
- sc config "spooler" start= DISABLED
- :end
复制代码
[ 本帖最后由 cd309420 于 2008-12-12 10:37 编辑 ] |