是否可以制作一个在控制台 2 上运行命令的脚本?

发布于 2024-12-08 02:09:11 字数 231 浏览 0 评论 0原文

我用的是Win XP。 我没有这台计算机的管理员权限,因此不允许我访问系统变量。我可以运行批处理文件,但令我烦恼的是 cmd 和 Console 2 都在运行。 我希望 Console 2 能够独占运行。

这是我的批处理文件中的内容:

set JAVA_HOME=D:\apps\jdk1.6.17
"D:\Program Files\Console2\Console.exe" 

I use Win XP.
I have no admin rights on this computer, so I'm not allowed to access the System variables. I can run a batch file, but it annoys me that both cmd and Console 2 are then running.
I would like Console 2 to be run exclusively.

Here's what's in my batch file:

set JAVA_HOME=D:\apps\jdk1.6.17
"D:\Program Files\Console2\Console.exe" 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灵芸 2024-12-15 02:09:11

您需要一些外部 shell 进程才能运行到控制台 2,可以是 cmd.exe 或 bash 之类的东西。也就是说,如果您操作正确,您将只会运行一个终端窗口:在本例中为 Console2。

请澄清你真正需要在批处理文件中做什么(我想运行一些Java程序,因为你设置了JAVA_HOME):你应该从控制台内部运行批处理,而不是相反。

You need some external shell process to run into Console 2, let it be cmd.exe or something like bash. That said, if you are doing things right you will have just one terminal window running: in this case, Console2.

Please clarify what you really need to do in your batch file (I suppose running some Java program, since you set JAVA_HOME): you should run the batch from inside Console, not the opposite.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文