i want to create reboot.bat, because i want overdriventool.exe to be applied as well whenever a gpu hangs or crash.
sure taskkill and start start.bat is basic command at reboot.bat, but clearly, it creates problems sometimes such as stuck on creating dag.
so how to prevent this? my theory is it will stuck at creating dag because dag is not released via taskkill if driver crashed or gpu hangs.
any proper command for foolproof reboot.bat in case?
thanks.
I had issues earlier with my rig and wrote a simple script and used devcon to make sure to restart the miner properly.
Don't know if it helps you, but you may want to write a reboot file along these lines;
wmic process where name="EthDcrMiner64.exe" delete
timeout /t 5
cd %~dp0
devcon.exe disable "PCI\VEN_1002&DEV_687F"
timeout /t 5
devcon.exe enable "PCI\VEN_1002&DEV_687F"
timeout /t 5
start_eth.bat
exit