Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のディレクトリにあるアプリケーションを実行したい:
C:\LCR12\stu.exe
AutoIt で、上記の stu.exe ファイルを実行するコードは何でしょうか?
このような:
Run("C:\LCR 12\stu.exe")
これがあなたが求めていたものであることを願っています。
以下のように変数を使用して行うことができます。
Local $exeLocation = "C:\LCR 12\stu.exe" Run($exeLocation)