this one is mainly for my own reference because its not something I do often and there seems to be a stack of alternatives out there... this is what works for me when mounting a windows network drive
To mount a windows network drive onto my ubuntu box I did the following:
mount -t smbfs //192.168.1.200/Users /home/ayqooi/mounts/example -o username=ayqooi,password=password,rw(the -o allows us to provide a username/password)
//192.168.1.200/Users /home/ayqooi/mounts/example smbfs username=ayqooi,password=password,rw 0 0
Comments ...