我可以在 Windows 命令行上在后台运行 GUI 程序吗?

我可以在 Windows 命令行上在后台运行 GUI 程序吗?

例如,在 Bash 中,我可以这样做:

emacs foo.txt &

Windows 中是否有等效程序?我似乎无法找到使用 Windows 版 emacs 执行此操作的方法。

答案1

在 Windows 中从命令行启动程序的命令是“start”

Starts a separate window to run a specified program or command.

START ["title"] [/D path] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]
      [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]
      [/AFFINITY <hex affinity>] [/WAIT] [/B] [command/program]
      [parameters]

    "title"     Title to display in  window title bar.
    path        Starting directory
    B           Start application without creating a new window. The
                application has ^C handling ignored. Unless the application
                enables ^C processing, ^Break is the only way to interrupt
                the application
    I           The new environment will be the original environment passed
                to the cmd.exe and not the current environment.
    MIN         Start window minimized
    MAX         Start window maximized
    SEPARATE    Start 16-bit Windows program in separate memory space
    SHARED      Start 16-bit Windows program in shared memory space
    LOW         Start application in the IDLE priority class
    NORMAL      Start application in the NORMAL priority class
    HIGH        Start application in the HIGH priority class
    REALTIME    Start application in the REALTIME priority class
    ABOVENORMAL Start application in the ABOVENORMAL priority class
    BELOWNORMAL Start application in the BELOWNORMAL priority class
    AFFINITY    The new application will have the specified processor
                affinity mask, expressed as a hexadecimal number.
    WAIT        Start application and wait for it to terminate

您可能希望使用 MIN 选项以最小化方式启动程序

答案2

我不知道这是否足够,但尝试一下

start emacs foo.txt

它不会进入后台,而是会为命令启动单独的 cmd.exe 窗口。

答案3

哈哈,我成功了,用sublime text3做markdown预览的服务器是我的主意,关掉sublime text窗口后就不行了,试了很多方法,终于成功了。首先,你要创建一个bat来启动这个程序。

start  /B "" "D:\dev\sublime3\Sublime Text 3\subl.exe" "-s" "%USERPROFILE%\Dropbox\dev\apis\*.markdown" 

第二步,按计划任务运行该脚本。

run window+R->taskschd.msc->add a task

添加触发器以按照此时间表运行此蝙蝠

将此 bat 添加为要执行的操作

这样做的结果是,可以避免显示 sublime text 窗口,并且与正常打开的 sublime text 发生冲突。

也许你已经猜到了,我使用OmniMarkupPreviewer插件来预览 markdown。我已经修复了这个错误(或者说不完美的功能),即它每次都使用不同的视图 id。

答案4

开始计算

如何在 Windows 中通过命令提示符启动程序

开始命令用于在 MS-DOS 提示符下启动基于 MS-DOS 或 Windows 的程序。该程序作为单独的任务启动,可以在前台或后台运行。

相关内容