Files
payloadcms/toggle_mongo.cmd
2019-03-16 15:38:53 -04:00

9 lines
140 B
Batchfile

@ECHO OFF
sc query "MongoDB" | findstr "RUNNING"
if errorlevel 1 (
net start "MongoDB Server"
) else (
net stop "MongoDB Server"
)