@echo off
echo **************************
echo 是否开启身份验证:
echo 1.关闭身份验证
echo 2.启用身份验证
echo **************************
choice /c:12 /m:"请输入你的选择(5秒后超时,默认选择 1):" /d:1 /t:5
if %errorlevel%==255 echo 意外的错误!
if %errorlevel%==2 goto start_and_auth
if %errorlevel%==1 goto start_no_auth
:start_no_auth
echo 启动成功,请勿关闭该窗口
mongod --config "E:\MongoDB\etc\mongo.conf" --serviceName "MongoDB"
:start_and_auth
echo 启动成功,请勿关闭该窗口
mongod --config "E:\MongoDB\etc\mongo.conf" --serviceName "MongoDB" --auth
echo 启动失败!