I am not sure what software needs to be installed from an fresh window installation, but are there any error messages that could be recorded to figure out what software needs to be installed? Otherwise, I can mention the software already used for Touhou games.
Put the files in their respective Touhou game folder.
===============================================
Now, thcrap as a patcher works fine without an internet connection, except thcrap will no longer be able to automatically update its patches. However, thcrap is not normally portable to its use of shortcuts and absolute paths. Here is a guide to making thcrap portable. I assume the thcrap folder is above the Touhou game folders, but change the paths if the thcrap folder is located in a different location.
game.js
- Within game.js, change every path to be relative like the following example:
Code:
"../Touhou 19 - Unfinished Dream of All Living Ghost/th19.exe"
The important part is at the beginning instead of the root drive being referred, ".." is used instead to get thcrap to look above its folder and look for the exe file in the other Touhou games.
thcrap Shortcuts
- In the folder of each Touhou game, make an .bat file
- Type the following in the .bat file:
Code:
CD /D %~dp0
"..\thcrap\bin\thcrap_loader.exe" "en.js" thXX
The first line changes the directory to where the .bat file is located as "%~dp0" simply refers to the path where the .bat file is located. The second line is executing thcrap_loader with its proper arguments.
With these changes, thcrap should now be using relative pathing instead of absolute pathing, which means putting thcrap on a portable install should now work.