gpt4 book ai didi

java - JAVA命令提示符

转载 作者:行者123 更新时间:2023-12-01 18:10:06 25 4
gpt4 key购买 nike

我必须通过CMD命令打开具有管理员权限的CMD。所以我尝试这个代码,然后它要求输入密码,但我如何在同一过程中提供密码。然后我必须捕获新打开的 CMD。

Process p = Runtime.getRuntime().exec("runas /noprofile /user:Partha >fg.txt")
p.waitFor();
p=Runtime.getRuntime().exec("password");
p.waitFor();

最佳答案

您最好使用PsExec允许将密码作为参数传递的 util :

psexec \\computername -u domain\user -p password 

否则您可以尝试将密码作为 STDIN 传递:

Runtime.getRuntime().exec("cmd /C echo YOUR_PASS | runas /noprofile /user:Partha >fg.txt");

关于java - JAVA命令提示符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33688312/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com