@echo off setlocal EnableExtensions REM Gyri(TM) Class 009 Demo Message (Unicode-safe, parser-safe) REM Writes a temporary VBS using ChrW() for ™ and ©, then displays a MessageBox. set "TMPVBS=%TEMP%\Gyri_Message_%RANDOM%%RANDOM%.vbs" > "%TMPVBS%" echo Option Explicit >>"%TMPVBS%" echo Dim tm, c, msg, title >>"%TMPVBS%" echo tm = ChrW(8482^) >>"%TMPVBS%" echo c = ChrW(169^) >>"%TMPVBS%" echo title = "Gyri" ^& tm ^& " Demo (Class 009)" >>"%TMPVBS%" echo msg = "Gyri" ^& tm ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo "Downloadable AI Computer Software" ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo "AI Guided Decision Evaluation System" ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo "Version 1.0 Demo" ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo "Gyri" ^& tm ^& " is downloadable AI computer software for evaluating real world decisions before action." ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo "The software analyzes user provided information such as bills, quotes, purchases, contracts, and messages to identify what matters, highlight potential risks, and provide clear next steps." ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo "Processing runs locally on the user's device to maintain privacy and control." ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo "This demonstration version represents fully downloadable AI computer software provided for evaluation purposes." ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo "International Class 009" ^& vbCrLf ^& vbCrLf ^& _ >>"%TMPVBS%" echo c ^& " 2026 Gyri" ^& tm ^& ". All rights reserved." >>"%TMPVBS%" echo MsgBox msg, vbInformation, title wscript.exe "%TMPVBS%" del /f /q "%TMPVBS%" >nul 2>nul endlocal exit /b 0