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?
|
feedback
|
|
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 | |||
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: | |||
|
feedback
|