I have trouble to reconnect a mapped network drive @ logon with Vista/XP home, it doesn't seem to hold after a reboot. I always have to re-enter the password.
After some reading on the internet, someone proposed, not to use the GUI and to write a batch file and put it in the startup.
So I wrote the following:
net use s: \\server\folder password /user:username
It won't work, it would say the password is not good.
But strangely, if I wrote:
net use s: \\server\folder /user:username
It will prompt the password, and if I enter the password it will work.
So why when I put the password embedded in the command line it does not work?
The use case is to use Memeo to do automatic backup, still trying to figure out how to have automatic backup without the user having to enter a password by hand.
Someone just propose to switch the position of the username and the password?
net use s: \\server\folder /user:username password
Will try that next weekend, when I'm back home.
But any idea, why it won't work with the GUI?
Thanks