I folded for many years.
One laptop was destroyed cause of this.
I stopped folding for many years.
Now I am using a script to do not destroy my laptop.
Why!?
Please! Implement a desired temperature during folding.
Not percentage of usage, not power limit. Temperature!
Cause donor knows recommended temperature for his CPU and GPU, not % usage and power limit for this.
2. If I am right, installation does not allow to choose - web or desktop client. Add such option, please.
My script is not the best:
Code: Select all
function LogMessage($message) {
$timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
Write-Host ("{0}: {1}" -f $timestamp, $message)
}
while ($true) {
LogMessage "Unpausing Folding@home"
& 'C:\\Program Files (x86)\\FAHClient\\FAHClient.exe' --send-unpause
Start-Sleep -Seconds 25
LogMessage "Pausing Folding@home"
& 'C:\\Program Files (x86)\\FAHClient\\FAHClient.exe' --send-pause
Start-Sleep -Seconds 10
}