Hi. First time user of MediCat here. I tried running the BAT file and while it worked fine, one thing I noticed was that it was using CMD.EXE and by doing so, the colour codes were being displayed and the batch file ASCII art wasn't being rendered correctly.
To fix this, the batch file should check and use WT.EXE (Windows Terminal).
Here is the corrected code (note, I didn't add code to check for Windows Terminal as the devs can look into that):
if not defined _elev %nul% powershell.exe "start wt.exe -WindowStyle Hidden -ArgumentList \"cmd /c \"!_PSarg:\"=\"\"!\"\"\" -Verb RunAs" && exit /b
Thanks.