Two requests:
Could someone possibly post an example of their bat file for hsrminer? I'm very new to all this and feel like I'm missing some stuff like the parameters (-i 5 and -c 4) you are talking about, I don't know where that goes.
Also, any recommendation for what my Paging File should be set at for "Initial Size" And "Max Size"?
I'm running 5 x GTX 1070's on a new rig with 24 GB RAM, 2 SSD drives, MSI z270 SLI PLUS and i7 - 7700 cpu. Windows 10.
Very grateful if someone could help.
Here's my batch file for mining Trezarcoin on the official pool:
@echo off
cd\users\miner2\desktop\mining\hsrminer_neoscrypt
hsrminer_neoscrypt -o stratum+tcp://pool.trezarcoin.com:6666 -u username.workername -p password
pause
@echo off just turns off repeating to the console - it's not necessary; the line starting with "cd\" switches to the directory (er, folder) where hsrminer_neoscrypt.exe is located - you will undoubtedly have to change this to match your setup; the pause command at the end keeps the window open in case the miner terminates so you can (maybe) see what happened.
The pool I am using requires you to create an account with your wallet address, password, etc. Most pools let you mine anonymously directly to a wallet and don't bother with passwords (or, most commonly, use "x" for the password). Workername is just to differentiate between multiple computers/rigs all mining to the same address/account.
Save the above text in a file ending in ".bat" and double-click to run it.
As for paging file, the minimum size is the sum of all your GPU's memory minus system memory, with the maximum recommended to be at least the sum of your GPU's memory, assuming no system memory is available.
EDIT - changed some verbiage for clarity