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

前端之家收集整理的这篇文章主要介绍了我可以在Windows命令行的后台运行GUI程序吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
例如,在 Bash中,我可以这样做:
  1. emacs foo.txt &

在Windows中有任何等价物吗?我似乎无法通过Windows版本的emacs找到一种方法.

在Windows中从命令行启动程序的命令是“开始”
  1. Starts a separate window to run a specified program or command.
  2.  
  3. START ["title"] [/D path] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]
  4. [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]
  5. [/AFFINITY <hex affinity>] [/WAIT] [/B] [command/program]
  6. [parameters]
  7.  
  8. "title" Title to display in window title bar.
  9. path Starting directory
  10. B Start application without creating a new window. The
  11. application has ^C handling ignored. Unless the application
  12. enables ^C processing,^Break is the only way to interrupt
  13. the application
  14. I The new environment will be the original environment passed
  15. to the cmd.exe and not the current environment.
  16. MIN Start window minimized
  17. MAX Start window maximized
  18. SEPARATE Start 16-bit Windows program in separate memory space
  19. SHARED Start 16-bit Windows program in shared memory space
  20. LOW Start application in the IDLE priority class
  21. NORMAL Start application in the NORMAL priority class
  22. HIGH Start application in the HIGH priority class
  23. REALTIME Start application in the REALTIME priority class
  24. ABOVENORMAL Start application in the ABOVENORMAL priority class
  25. BELOWNORMAL Start application in the BELOWNORMAL priority class
  26. AFFINITY The new application will have the specified processor
  27. affinity mask,expressed as a hexadecimal number.
  28. WAIT Start application and wait for it to terminate

您可能希望使用MIN选项来启动最小化的程序

猜你在找的Windows相关文章