我需要登录到多个 Windows 服务器。谁能给我发一个远程登录的 Windows bat 文件示例,而不是调用 mstsc 并输入用户 ID 和密码?
问问题
9727 次
3 回答
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>
于 2012-02-29T08:17:43.303 回答
0
将以下内容输入到批处理文件中。经过测试,它适用于 Windows 7
mstsc.exe /v:(IP-Address-of-Server)
例如mstsc.exe /v:192.168.1.2
于 2013-09-14T01:59:29.360 回答
0
于 2012-01-25T19:05:21.277 回答