• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Connect to another domain fileserver

dawks

Diamond Member
I have a few users here on my own domain who once or twice a week need to connect to a fileserver in another domain. No trusts exist.

I've tried doing the 'map a network drive' but the drive keeps disconnecting, then when the user tries to reconnect, it ends up locking the account for incorrect password attempts (no clue why). So I created a .bat file to map the folder, prompt for a password, copy the files, and disconnect. That worked fine on Windows XP. The same .bat file however, does not work on Windows 7.

I have created a shortcut straight to the folder for the User, and that worked for a while, but is now not working.

Anyone have a suggestion for the best way for a user to connect to a file share on a file server in another domain? I have very basic users, so the simpler the better.
 
The easiest way is a script, but it would put the password in plain text. The syntax would be:

net use driveletter: \\server\share /user:domain\username password
 
Back
Top