I found a issue in the latest verion (volumio-2.323-2017-11-17).
I can’t add a new network drive to windows share folder.
The root cause is Microsoft Windows rejected the connection via samba protocol version 1.0 due to Security Issue (WannaCry ransomware use a SMB v1.0 vulnerability).
The volume system use the following CLI to mount network driver, it will fail.
mount -t cifs -o username=abc -r //windows-host/share-folder /mnt/NAS/music
The correct CLI to mount drive network driver is:
mount -t cifs -o username=abc,vers=2.1 -r //windows-host/share-folder /mnt/NAS/music