i need to login to multiple windows servers. can anyone post me a DOS bat file sample for remote login instead of invoking mstsc and typing user id and password?

link|improve this question
feedback

2 Answers

Did you even attempt to look for an answer before asking the question? I already know the answer to my question.

I did a search on google for mstsc command line options

and came up with Use command line parameters with Remote Desktop Connection

link|improve this answer
sorry, i got the answer from windowsnetworking.com/articles_tutorials/… after i posted this qn.. thanks – user1169877 Jan 25 at 19:32
feedback

try this and put it is a batch file:

@echo off title Connect to server . . . . set /p SERVER=Please enter the server name: title Connecting to server %SERVER% mstsc.exe /v:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.