@echo off
setlocal
:PROMPT
SET /P AREYOUSURE=Extracting Full Text (less 1 MB, less 32,000 chars) - Are you sure (y/[N])?
IF /I "%AREYOUSURE%" NEQ "Y" GOTO END

cd ..
CognitiveToolkit.exe AddHashAndExtractedText --action-keyword text --max-characters 32000 --query "COG Batch Files\query-match-path-no-fullText-less-1MB.json" --index-server-url http://localhost:9200 --index-name shiny

:END
endlocal