Migrating from hotspot accounts to usermanager

hi, i would like to know how i can transfer the hotspot username/password accounts to usermanager. i have exported the .rsc file of the /ip hotspots users but cant seem to auto import into userman.
pls advise.
many thanks

Assuming the hotspot and user manager are on the same router, you could run a script loops through the hotspot users, gathering username and password, and then adds them to the user manager. Something like this:
foreach i in=[/ip hotspot user find] do={
/tool user-manager user add name=[/ip hotspot user get $i name] customer=admin password=[/ip hotspot user get $i password];
}