Answers:
nircmd win close title "temp.txt"
以上不起作用,因为temp.txt
不是完整的Windows标题,这是temp.txt - Notepad
您需要使用完整的窗口标题,或使用stitle
匹配部分标题:
title
:通过在[window to find]参数中指定窗口的确切标题来查找所需的窗口。
stitle
:通过在[window to find]参数中指定窗口的前几个字符来查找所需的窗口。
(强调我的)
窗口中的说明stitle
指的是窗口标题。
以下命令都有效:
rem use the full window title
nircmd win close title "temp.txt - Notepad"
rem use the first few characters of the window title
nircmd win close stitle "temp.txt"