如何通过CMD启动Java程序时抑制Windows安全警报?

发布于 2025-01-10 07:42:50 字数 690 浏览 0 评论 0原文

我正在使用 CMDJava 中启动具有管理权限的程序:

try {
    Runtime.getRuntime().exec(cmd, null, new File(processDir));
} catch (IOException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
}

这会导致出现 Windows 安全警报对话框:

在此处输入图像描述

我想要禁止对话框出现如下所示需要手动输入一个被认为是完全自动化的程序。

1) 是否可以以防止出现该命令对话框的方式执行特定命令?

2) 如果没有,是否可以通过编程方式禁用对话框的出现?

据推测,我可以完全禁用 Windows Defender 防火墙,但这并不理想。

我使用的是 Java + Windows 10

谢谢

I'm launching a program with administrative privileges in Java using the CMD:

try {
    Runtime.getRuntime().exec(cmd, null, new File(processDir));
} catch (IOException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
}

This causes the Windows Security Alert dialog to appear:

enter image description here

I would like to suppress the dialog from appearing as this would require manual input for a program that is suppose to be fully automated.

1) Is it possible to execute a specific command in a way that prevents the dialog from appearing for that command?

2) If not, is it possible to programmatically disable the dialog from ever appearing?

Presumably, I could completely disable Windows Defender Firewall but this isn't ideal.

I'm using Java + Windows 10.

Thanks

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文