Guys, when ZPAQ is started from Task Scheduler under windows there is a problem with excessive swapping.
The problem is that Task Scheduler sets PagePriority to LOW, so ZPAQ's process memory is actively swapped to disk. The consequences of this behaviour is long, slow archiving progress with low CPU usage, and constant excessive hdd activity.
Problem can be partly solved with Process Hacker 2 ( rightclick on ZPAQ -> Miscellaneous -> Page Priority -> Normal )
or with command line:
ProcessHacker.exe -c -ctype process -cobject %pid% -caction priority -cvalue idle
ProcessHacker.exe -c -ctype process -cobject %pid% -caction pagepriority -cvalue 5
But the best, permanent solution is .REG:
Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\zpaq64_intel.exe]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\zpaq64_intel.exe\PerfOptions]
"CpuPriorityClass"=dword:00000001
"IoPriority"=dword:00000002
"PagePriority"=dword:00000005
you can replace zpaq64_intel.exe with zpaq64.exe or zpaq.exe