I migrated from Windows 7 to OSX. I am trying to recreate the functionality of "net use" on the Mac via Terminal. Problem is the machine I want to mount has no shares.
In Windows7 I could map the drive and have full access via:
net use \\address\C$ /USER:user pass
Is there no bash method similar to this this?
rmdir /Volumes/test
mkdir /Volumes/test
mount_smbfs //user:pass@address/ /Volumes/test
Finally realized that the no shares was cause of my problem with that mounting.