使用批处理文件在”文件”上下文菜单中执行选项

Execute options in "File" Context Menu with batch file

是否可以使用批处理文件打开一个文件然后执行或"单击"打开的应用程序"文件"菜单中的一个选项,只有一个 .bat 文件?

例如,通常我会双击桌面上的 Firefox 快捷方式,然后单击 "File"> "New Tab"。

是否可以使用单个 .bat 文件来做到这一点?


您可以使用@Aacini 的CursorPos.exe 来移动光标。这是下载链接:https://www.dostips.com/forum/viewtopic.php?t=3428。在下载页面中,您只能下载 .exe 文件集。从中提取 CursorPos.exe

Usage:
CursorPos [[±]col [±]row]
If no parameter is given, return current cursor position as col+(row<<16) in ERRORLEVEL. If any coordinate have sign, the position given is relative to the current one. If cursor is moved, the Ascii code of the character at new position is returned in ERRORLEVEL.

对于鼠标输入,您可以使用 batbox.exe。下载链接:https://batchprogrammers.blogspot.com/2016/06/batbox-awesome-batch-plugin-by.html?m=1。完整信息可在此处获得。