-1

我希望能够在我的本地计算机上运行一个 .bat 文件,它将执行以下命令:PSEXEC \Taylor-PC -c “C:\Users\Taylor\Downloads\Clean.exe” -u TaylorGibb –p Password

其中 \Taylor-PC 带有远程机器的 DNS 名称。

TaylorGibb with the username on the remote machine.

Password with the password for the remote machine.

基本上我希望运行脚本的人能够放入远程机器,按回车键,然后输入用户名,按回车键,然后输入密码,按回车键并运行 cc 清洁器。

4

1 回答 1

1

尝试这个:

set/p "password=Enter password: "
echo %password%
set/p "computer=Enter computer name: "
echo %computer%
于 2013-06-15T07:41:53.037 回答