[SOLVED] how to autostart smbd and nmbd?

System Settings/Autostart:

Basically I can choose programs, or scripts.

I’m currently (manually)issuing the following in the terminal after each boot:

sudo systemctl start smbd.service nmbd.service

How can I make that into a script to launch via the auto-start?
Or do I need to use some other method than the KDE system-settings autostart to launch these at boot?

In order to make this persistent across reboots issue the following:

sudo systemctl enable smbd.service nmbd.service

reference:
https://wiki.archlinux.org/index.php/systemd

Worked a charm… thanks for including the reference. Picked up a few more tricks as well.

Your welcome brother.