One word of caution. Anything you do, password string will be included.
The easiest way to do this, but not secure as password is out in clear text is to do this,
Go to Connect To Server on Finder and punch in your NAS's IP address. In my example I am using 192.168.1.10, it will obviously be different at your home. Suppose your user name is many and password of zyzzx and my Apple file share is called ED_mini then the syntax is,
afp://manny:zyzzx@192.168.1.10/ED_mini
May be a bit more secure way to do this is to use Automator and then create an Application and include the following Apple Script.
on run {input, parameters}
mount volume "afp://manny:zyzzx@192.168.1.10/ED_mini"
return input
end run
- Open the automator
- Select the Automator from the Library menu
- Drag Run Apple Script to the workspace on the right.
- You will see the spot to(* Your script goes here *) repalce that with the connection script of mount volume "afp://manny:zyzzx@192.168.1.10/ED_mini"
- Test the script and save as an Application. Close automator.