I am trying to install a Windows shared folder on Mac OSX Mavericks. Simple username and password worked fine
mount -t smbfs //user2: password2@server1.mydomain.com /myproject ~/localmap
When checking for a more valid username and password, I get errors related to the URL parsing error. Details Username: mydomain \ user1 Password: A% b $ c @d! E # f
Tried the team
mount -t smbfs //mydomain\user1:A%b\$c\@d\!e# f@server1.mydomain.com /myproject ~/localmap
Based on what I found, $ and! must be avoided. Need help on how to avoid special characters. By the way, using only a username without a domain seems to work in the first case
source share