Initial commit for the biztalk suspended isntances local check
build / build (push) Has been cancelled
build / build (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
set "SERVICE_NAME=BizTalk Suspended Instances"
|
||||
set "CHECK_DIR=%~dp0BizTalkSuspendedInstancesCheck"
|
||||
set "CHECK_EXE=%CHECK_DIR%\BizTalkSuspendedInstancesCheck.exe"
|
||||
|
||||
if not exist "%CHECK_EXE%" (
|
||||
set "CHECK_EXE=%~dp0BizTalkSuspendedInstancesCheck.exe"
|
||||
)
|
||||
|
||||
if not exist "%CHECK_EXE%" (
|
||||
echo 3 "%SERVICE_NAME%" - Check executable not found. Expected "%CHECK_DIR%\BizTalkSuspendedInstancesCheck.exe".
|
||||
exit /b 0
|
||||
)
|
||||
|
||||
"%CHECK_EXE%" %*
|
||||
exit /b 0
|
||||
|
||||
Reference in New Issue
Block a user