You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
185 B
Batchfile
14 lines
185 B
Batchfile
1 year ago
|
@echo off
|
||
|
|
||
|
for /f "delims=" %%t in ('winsw.exe status') do set str=%%t
|
||
|
echo %str%
|
||
|
|
||
|
|
||
|
|
||
|
if %str%==Started (
|
||
|
winsw stop
|
||
|
@echo wait program stop .....
|
||
|
PING 127.0.0.1 -n 30 -w 10000 >NUL
|
||
|
)
|
||
|
|