AutoHotKey スクリプトがあります。
現在、私の AHK スクリプトは常に実行されています。そして、ユーザーの入力を待ちます。
ユーザーが 11 を押すと、何かを実行します。
ユーザーが 12 を押した場合は、別のことを行います。
現在の AHK スクリプト
1::
Input Key, L1
if Key=1
{
Run C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -File C:\Users\username\Desktop\new.ps1
; How can I make this command run only after above script has finished executing?
}