我是新来的AutoHotkey,不明白为什么这个脚本给我的错误:
Failed to launch program or document Action: <C:\Windows\System32\msg.exe> Params: <* "Initiated."> Specifically: The system cannot find the file specified.
这是我的test.ahk文件中的简单脚本:
Run, "C:\Windows\System32\msg.exe" * "Initiated."
我已经validation了msg.exe文件位于c:\ Windows \ System32文件夹中,并且可以在没有脚本的情况下从命令提示符下单击msg.exe程序来运行它。 我也可以创buildmsg.exe的快捷方式,它的工作原理,但我不知道如何获得test.ahk脚本文件来看看它。
我尝试运行脚本(通过单击test.ahk文件),作为pipe理员,但得到相同的错误。
该路径被重定向到32位程序的C:\Windows\SysWOW64
。
尝试将脚本中的路径更改为"C:\Windows\SysNative\msg.exe"
或者更好的是,不要将非系统文件放在操作系统所拥有的目录中。