-start your windows client with daemon flag.
-create a .bat file. with the folowing text.
@echo off
echo Wait until timer ends ... 60 seconds
timeout /t 60
-get the Coin-Daemon itself. example: bitcoind.exe
-copy your new created .bat file into the same folder as the bitcoind.exe
-execute your .bat file.
....
...
..
.
The Example above will execute the daemon, which send the rpccommand in your .bat file to the windows-gui.
this happend 1 Time. you can copy & paste the same command including the whole stuff. multiple times inside the bat file.
if you have it 2 or 99999999999 times typed ... the bat file execute the command, make a break for x seconds and then
execute the next command ... break .. execute .. break .. execute .. bla bla bla
example :
YourCoind.exe -rpc......
@echo off
echo Wait until timer ends ... 60 seconds
timeout /t 60
YourCoind.exe -rpc......
@echo off
echo Wait until timer ends ... 60 seconds
timeout /t 60
YourCoind.exe -rpc......
@echo off
echo Wait until timer ends ... 60 seconds
timeout /t 60
YourCoind.exe -rpc......
@echo off
echo Wait until timer ends ... 60 seconds
timeout /t 60