Created
August 25, 2015 11:27
-
-
Save evgenylavelin-xx/c0b7f8fa34e64975508f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: @echo off | |
| :: Останавливаем службу агента сервера 1С Предприятия | |
| set logfile="Logs\stopstartlog.txt" | |
| echo %date% %time% "Начало остановки службы агента сервера 1С Предприятия" >>%logfile% | |
| net stop "1C:Enterprise 8.3 Server Agent" >>%logfile% | |
| :: Пауза | |
| echo %date% %time% "Начало паузы" >>%logfile% | |
| set timeout=10timeout /t % | |
| timeout% /nobreak | |
| echo %date% %time% "Конец паузы" >>%logfile% | |
| :: Запускаем службу агента сервера 1С Предприятия | |
| echo %date% %time% "Начало запуска службы агента сервера 1С Предприятия">>%logfile% | |
| net start "1C:Enterprise 8.3 Server Agent" >>%logfile% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment