Made a little batch file myself, it gets the installation path from the registry so it can be run from any directory. It also automatically closes the DOS window after starting graal.exe
Graal -delete filenamecache.zip
(Had to zip it because of 'percent-percent' -.-)
here's a version where you have to replace $ with percent
HTML Code:
FOR /F "tokens=2* delims= " $$A IN ('REG QUERY "HKCU\Software\Graal\Setup" /v path') DO SET Path=$$B
del $Path$\FILENAMECACHE.txt
start $Path$\graal.exe
I did start on a file allowing droping files into it to append it into FILENAMECACHE.txt, but unsure about the number behind the filename, if it's needed, how to generate it etc?