使用记事本最小化正在运行的程序的命令或脚本文本是什么

使用记事本最小化正在运行的程序的命令或脚本文本是什么

我试图编写一个脚本来最小化应用程序,例如我输入

start chrome

然后我想最小化 chrome 应用程序,但是该怎么做呢?

请记住,这一切都在记事本中

答案1

我会说

开始/分钟

chrome 不支持这个...

您可以使用自动热键吗?

这是用于最小化 chrome 的 .ahk 文件的代码

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
Run, chrome.exe
WinWait, Google Chrome
WinMinimize, Google Chrome

相关内容