AutoIt をマシンにインストールしました。あるマシンでは問題なく動作しますが、同じ構成とコードが他のマシンでは動作しません。私が見逃しているものはありますか?
次のエラー
Could not start process Z:\test\AutoItScripts\test.au3
No application is associated with the specified file for this operation
また、autoit スクリプトはコマンド ラインから正常に実行されます。次のコードを使用して実行中にこのエラーが発生するだけです
objProcess = New System.Diagnostics.Process()
objProcess.StartInfo.Verb = "runas"
objProcess.StartInfo.Arguments = Argument
objProcess.StartInfo.FileName = ProcessPath
objProcess.Start()
'Wait until it's finished
objProcess.WaitForExit()
'Exitcode as String
Console.WriteLine(objProcess.ExitCode.ToString())
objProcess.Close()