@echo off
setlocal
:PROMPT
SET /P AREYOUSURE=Calculating MD5 Hash - Are you sure (y/[N])?
IF /I "%AREYOUSURE%" NEQ "Y" GOTO END

cd ..
CognitiveToolkit.exe AddHashAndExtractedText --action-keyword hash --algorithm md5 --query "COG Batch Files\query-match-path-no-hash.json" --index-server-url http://localhost:9200 --index-name shiny

:END
endlocal