ganmo Yes, that was the one. It was posted in the Steam thread. I dithered but then went for it.
Had an issue with the CheatHappens TrainerManager as it demands elevation which is usually ok but it uses Microsoft Webview2 which is flaky under admin elevation. So if anyone is logged on as a standard non-admin user and TrainerManager demands elevation then hangs at "Preparing Chromium" then this may help.
Run TrainerManager as admin so it creates the folders.
Close it when it's "Preparing Chromium" for ages.
Open Notepad.
Paste this in cmd script.
Change the exe name in "NAME-OF-APPLICATION" to "TrainerManager".
Save the file as .cmd into the same folder as the exe.
Run the cmd and Bingo! TrainerManager works.
Code:
@echo off
set __COMPAT_LAYER=RunAsInvoker
start "" "%~dp0NAME-OF-APPLICATION.exe"
It also works on any app that demands admin elevation but doesn't really need it. Just replace "NAME-OF-APPLICATION" to match the game/app exe name and save the cmd file in the same folder as the exe and give it a whirl.