mstsc的BAT文件

时间:2012-01-25 18:58:03

标签: batch-file mstsc

我需要登录多个Windows服务器。任何人都可以发给我一个Windows bat文件样本进行远程登录,而不是调用mstsc并输入用户ID和密码?

3 个答案:

答案 0 :(得分:0)

在提出问题之前,您是否尝试过寻找答案?我已经知道了我的问题的答案。

我在Google上搜索了 mstsc命令行选项

并提出了Use command line parameters with Remote Desktop Connection

答案 1 :(得分:0)

试试这个并把它放在一个批处理文件中:

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

答案 2 :(得分:0)

将以下内容输入批处理文件。 经过测试,适用于Windows 7

mstsc.exe /v:(IP-Address-of-Server)

E.g。 mstsc.exe /v:192.168.1.2