Password change problem

I have a .rsc that I am using flashfig to put on Grooves. Groove is on 6.13 and everthing works perfectly except I need to change the default admin user password from blank to a new password. I am banging my head against the wall.

jan/01/1970 18:01:41 by RouterOS 6.13

software id = UXZ4-1X1B

/interface wireless
set [ find default-name=wlan1 ] disabled=no l2mtu=2290 ssid=WatsonTik
/interface wireless security-profiles
set [ find default=yes ] authentication-types=wpa2-psk eap-methods="" mode=
dynamic-keys wpa2-pre-shared-key=P@ssword14
/ip hotspot user profile
set [ find default=yes ] idle-timeout=none keepalive-timeout=2m
mac-cookie-timeout=3d
/ip address
add address=10.1.0.1/8 interface=ether1 network=10.0.0.0
/ip dhcp-client
add dhcp-options=hostname,clientid disabled=no interface=wlan1
/ip firewall nat
add action=masquerade chain=srcnat out-interface=wlan1
/ip upnp
set allow-disable-external-interface=no
/system clock
set time-zone-name=America/Chicago
/system leds
set 0 interface=wlan1
/system routerboard settings
/password old-password="" new-password="MadeupP@ss" confirm-new-password="MadeupP@ss"
set cpu-frequency=600MHz
working002.rsc (957 Bytes)

I actually figured this out on my own.

This line:
/password old-password=“” new-password=“MadeupP@ss” confirm-new-password=“MadeupP@ss”

Is used to change the password for the currently logged in user. Best guess is that when using flashfig, that you are not actually logging into the unit therefore there is no currently logged in user to change the password for.

By changing it to this:
/user set admin password=MadeupP@ss

I was able to flashfig my groove radios and change the admin password. :slight_smile:

/user set admin password=abc123

Thanks for the response, I had already posted that I had it figured out but my post had to be approved by moderator.