Connecting to server volume

So I’m trying to write a script to open up < Finder > Connect to Server > (with the server being called < smb://RSOF040.quaker.org.uk >) and then to select a volume on this server called < PrinterConnect > to open this up and then close the resulting finder window before quitting.

I have some of the script architecture already sorted in my head …

on run
	mount volume "smb://RSOF040.quaker.org.uk"
	?????
end run

Although I’m clear on how to load the server …Server Info
… I’m not sure how to load the specific volume That I want to load (there are four volumes on the server, I want to open up the one called < PrinterConnect >) …
Volume Info
Can anyone help here please?

Thanks!

Try:

mount volume "smb://RSOF040.quaker.org.uk/PrinterConnect"

@Dirk Thanks so much that’s cracked it.