想要通过网络运行cc清洁 - 需要提示输入计算机名称和用户名的批处理文件。

时间:2013-06-14 19:01:38

标签: file batch-file

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

凡在哪里     \ Taylor-PC与远程机器的DNS名称。

TaylorGibb with the username on the remote machine.

Password with the password for the remote machine.

基本上我希望运行脚本的人能够放入远程机器,点击输入,然后输入用户名,点击输入,然后输入密码,点击输入,然后运行cc清理器。

1 个答案:

答案 0 :(得分:1)

试试这个:

set/p "password=Enter password: "
echo %password%
set/p "computer=Enter computer name: "
echo %computer%