在 Windows 中使用命令文件自动定位应用程序窗口

发布于 2024-07-27 13:21:13 字数 141 浏览 6 评论 0原文

我正在使用 PuTTY 访问我的 BSD 文件服务器,并且同时打开了多个终端窗口。 我编写了一个简单的命令文件来自动打开终端窗口,我想知道是否可以将它们放置在特定位置。

我有两个显示器,就像现在一样,我必须手动将终端窗口拖到我的第二个显示器上。

I'm using PuTTY to access my BSD file server and I have several terminal windows open at once. I wrote a simple command file to automate opening the terminal windows and I'd like to know if it is possible to place them at a specific location.

I have two monitors and as it is now, I have to manually drag the terminal windows over to my second monitor.

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

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

发布评论

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

评论(1

黑色毁心梦 2024-08-03 13:21:14

AFAIK 如果不使用一些第三方软件(例如 AutoHotkey),则无法直接从批处理文件执行此操作。

它使得移动窗户变得异常容易。 对于示例,此脚本将启动计算器并将其移动到左上角:

Run, calc.exe
WinWait, Calculator
WinMove, 0, 0

如果您想与未安装 AHK 的其他人共享脚本,您还可以轻松地将脚本编译为 .exe。 它基本上会满足您所有的自动化需求,就像它满足我的需求一样:)

AFAIK you can't do it directly from a batch file without using some 3rd party software like AutoHotkey.

It makes it incredibly easy to move a window. For example this script would start Calculator and move it to the top-left corner:

Run, calc.exe
WinWait, Calculator
WinMove, 0, 0

You can also easily compile your script into an .exe if you want to share it with other people that don't have AHK installed. It will basically answer all your automation needs, just as it has done mine :)

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