newbie question.. what is the syntax for adding winbox users

I am tired of adding the winbox users to each router manually - what is the syntax to copy the script in. I am assuming this can be done ?:???

Thanks.

or you can check out how to set up radius/usermanager to manage login names by radius. So that you need to add user only once.

for add one user

/user add name=x password=x group=full comment="" disabled=no

If you need to create one group outside the 3 already provided (full, read, write) you first must create it by:

/user group
add name="administrators" skin=default comment="" policy=local,telnet,ssh,ftp,reboot,read,write,policy,test,winbox,password,web,sniff,sensitive,api
add name="super users" skin=default comment="" policy=local,telnet,ssh,ftp,reboot,read,write,!policy,test,winbox,password,web,sniff,sensitive,api
add name="users" skin=default comment="" policy=local,telnet,ssh,!ftp,reboot,read,write,!policy,test,winbox,password,web,sniff,sensitive,api

For remove one right, put “!” before name, like “!policy” on the example.

Thanks - Perfect!