Unable to run script content from winbox/scheduler, os 4.10

Hi.

I’m trying to run a very simple script from the scheduler but it just refuses to work, I can see that the schedule increase in runtimes and the script also increases in runtimes so the script seems to execute but the commands in the script are not executed. I have the same issue when I try to run the script manually from winbox, script runtimes increase but no commands seem to execute.

Running the script from console “/system script run xx” works just fine and the commands are executed.

This is a print from console on the script:
0 name=“move-p2p-queue” owner=“admin” policy=ftp,reboot,read,write,policy,test,winbox,password,sniff,sensitive last-started=aug/23/2010 15:12:00 run-count=92 source=/queue simple move p2p-users-limit destination=0 ;

This is a print detail from console on the scheduler:
0 name=“schedule1” start-date=jan/01/1970 start-time=00:00:00 interval=1m on-event=move-p2p-queue owner=“admin” policy=reboot,read,write,policy,test,password,sniff,sensitive run-count=63 next-run=15:14:00

The script is very simple, it just contains:
/queue simple move p2p-users-limit destination=0 ;

What could I be doing wrong?

add “/queue simple print” at the top of your script

Thank you, that worked!

But why? Is it just a cosmetic issue?

0 is number generated by print command. If you do not run “print” then “move” command is unable to move queues because position 0 is unknown.