运行 mstsc.exe 作为任务计划程序下的批处理作业
Running mstsc.exe as batch job under task scheduler
我正在尝试自动登录到 2008 R2 服务器上的一组 RDP 客户端,运行从桌面双击批处理文件时,下面的批处理工作正常,但是设置时没有任何反应.bat 文件作为来自任务计划程序
的任务运行
@ECHO off
ECHO This .bat is used to automatically RDP in to the specified servers
ECHO which are contained within this file. Ensure you have logged in to
ECHO these servers beforehand and checked 'save credentials' otherwise
ECHO this batch file won't work as intended.
ECHO.
ECHO Beginning login...
ECHO.
ECHO Beginning login - Server ADMIN...
start mstsc.exe /v:00.00.00.00 /admin
PAUSE
计划任务设置为管理员帐户下的运行(只有一个可用)并且(开始于)可选字段也已设置"C:\Users\Administrator\Desktop\"。
事实证明 mstsc.exe 仅在用户帐户已登录时才有效...因此在“常规”选项卡的“安全选项”下,确保选中 'Run only when user is logged in'。
我正在尝试自动登录到 2008 R2 服务器上的一组 RDP 客户端,运行从桌面双击批处理文件时,下面的批处理工作正常,但是设置时没有任何反应.bat 文件作为来自任务计划程序
的任务运行@ECHO off
ECHO This .bat is used to automatically RDP in to the specified servers
ECHO which are contained within this file. Ensure you have logged in to
ECHO these servers beforehand and checked 'save credentials' otherwise
ECHO this batch file won't work as intended.
ECHO.
ECHO Beginning login...
ECHO.
ECHO Beginning login - Server ADMIN...
start mstsc.exe /v:00.00.00.00 /admin
PAUSE
计划任务设置为管理员帐户下的运行(只有一个可用)并且(开始于)可选字段也已设置"C:\Users\Administrator\Desktop\"。
事实证明 mstsc.exe 仅在用户帐户已登录时才有效...因此在“常规”选项卡的“安全选项”下,确保选中 'Run only when user is logged in'。