Hi,
I noticed that that the config settings for CrystalDiskMark were not carried over to the build, so I did a little research and found out that the settings are not stored the folder with the executable, but instead in the roaming folder.
So I edited the script and replaced
%ConfigFilex86%="%TargetPrograms%%ProgramFolder%\DiskMark32.ini"
%ConfigFilex64%="%TargetPrograms%%ProgramFolder%\DiskMark64.ini"
with
%ConfigFilex86%="%TargetDir%\Users\Default\AppData\Roaming%ProgramFolder%\DiskMark32.ini"
%ConfigFilex64%="%TargetDir%\Users\Default\AppData\Roaming%ProgramFolder%\DiskMark64.ini"
Now its works like it should. Maybe someone can fix this in the repo..
Hi,
I noticed that that the config settings for CrystalDiskMark were not carried over to the build, so I did a little research and found out that the settings are not stored the folder with the executable, but instead in the roaming folder.
So I edited the script and replaced
%ConfigFilex86%="%TargetPrograms%%ProgramFolder%\DiskMark32.ini"
%ConfigFilex64%="%TargetPrograms%%ProgramFolder%\DiskMark64.ini"
with
%ConfigFilex86%="%TargetDir%\Users\Default\AppData\Roaming%ProgramFolder%\DiskMark32.ini"
%ConfigFilex64%="%TargetDir%\Users\Default\AppData\Roaming%ProgramFolder%\DiskMark64.ini"
Now its works like it should. Maybe someone can fix this in the repo..