web-dev-qa-db-ja.com

AutoHotKeyでWindowsSnippingToolを自動実行することができません

ヒットしたときにWindows7スナイピングツールを実行しようとしています PRINTSCREEN AUTOHOTKEY付きのキーボードボタン。

しかし、私はこれまで成功していません。これが私がAutoHotKeyスクリプトのために持っているものです。

私はこれを試しました

PRINTSCREEN::Run, c:\windows\system32\SnippingTool.exe

この

PRINTSCREEN::Run, SnippingTool.exe

この

PRINTSCREEN::Run, SnippingTool

そして、それらすべては基本的にファイルが見つからないというエラーを私に与えます、しかしファイルパスは正しいようです、私はそれをウィンドウにコピーアンドペーストすることができますそしてそれはスニッピングツールを開きます、なぜそれが機能しないのですか?


これが私のAHKファイルの完全なコードです...

;
; AutoHotkey Version: 1.x
; Language:       English
; Platform:       Win7
; Author:         Jason Davis <friendproject@>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


/*
PRINTSCREEN = Will run Windows 7 snipping tool
*/
PRINTSCREEN::Run, c:\windows\system32\SnippingTool.exe
return
13
JasonDavis

万が一、64ビットバージョンのWindows 7を実行していますか?

Windows 7(および私が信じているVista)は、WoW64ファイルシステムリダイレクトと呼ばれるものを実装しています。この場合は、AHKにSysnativeディレクトリを指定することをお勧めします。

PrintScreen :: Run、 "C:\ Windows\Sysnative\SnippingTool.exe"
17
John T

自動ホットキーがWow64プロセスとして実行されているかどうかに基づいて、Sysnativeまたはwindows32からSnippingTool.exeを呼び出す必要があるかどうかを判断できます。

PrintScreen::LaunchSnippingTool()

; Determines if we are running a 32 bit program (autohotkey) on 64 bit Windows
IsWow64Process()
{
   hProcess := DllCall("kernel32\GetCurrentProcess")
   ret := DllCall("kernel32\IsWow64Process", "UInt", hProcess, "UInt *", bIsWOW64)
   return ret & bIsWOW64
}

; Launch snipping tool using correct path based on 64 bit or 32 bit Windows
LaunchSnippingTool()
{
    if(IsWow64Process())
    {
        Run, %windir%\Sysnative\SnippingTool.exe
    }
    else
    {
        Run, %windir%\system32\SnippingTool.exe
    }
}

IsWow64Processの詳細とソースはこちら: http://www.autohotkey.com/community/viewtopic.php?t=22277

4
jsbannis

使用する

PrintScreen :: Run C:\ Windows\Explorer.exe C:\ Windows\system32\SnippingTool.exe

これにより、WoW64ファイルシステムリダイレクトの境界内で実行可能ファイルが正しく呼び出されます。

4
Steve