can you confirm this is a vaiable solution?
Sounds like a hack, but then using HISE to create an installer app is already a bit weird.
Speaking of hacks, the "cleanest" hack would be to just deactivate the entire audio processing:
https://github.com/christophhart/HISE/blob/3ff4bbd9eb5596b084c7653e2d09fae2b4799c1e/hi_frontend/frontend/FrontEndProcessor.cpp#L96
This is the main callback for a compiled plugin (or standalone app). So if you add this code
#if IS_STANDALONE_APP
return;
#endif
at the beginning of this function, it will never call into the HISE rendering. Note that there are a few things that might be glitchy, some things in HISE rely on the audio thread to be working and initialised correctly.