Is OverdriveNTool working good? There has been reports, that changing values with it doesn't really do much (same as Wattmann). But I guess it has been updated and working fine since then?
OverdriveNTool is working fine for me, but I basically only use it to adjust voltages. I use the registry mod for GPU and MEM clocks.
I can run the batch file as admin manually, and it works great.
When I run it in my startup folder it doesn't run as admin and doesn't work.
How are you getting it to run on startup as admin?
Use the task scheduler to execute your batch file at startup. See here:
https://superuser.com/a/929227Thanks for your contribution Mythic - just tested with my Vega 64 and your solution works great. I've tweaked your automation a little further to disable and enable all Radeon cards in a rig at startup - see below for my contribution (note: this doesn't have code to execute xmr-stak-amd or overdriventool as those are straight forward commands and can be added to the end. If I have some time I might just add some parameters at the top for ease of editing and add some error handling to idiot proof the whole process):
@echo on
set currentdir=%cd%
cd C:\Program Files (x86)\Windows Kits\10\Tools\x64
devcon findall * | findstr Radeon > %currentdir%\radeoncards.txt
for /F "tokens=1 delims=:" %%a in (%currentdir%\radeoncards.txt) do (
devcon disable "@%%a"
timeout /t 15
devcon enable "@%%a"
timeout /t 15
)
del %currentdir%\radeoncards.txt
cd %currentdir%