We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3881885 commit 3cb527eCopy full SHA for 3cb527e
Source/AutoActions/Applications/ApplicationItem.cs
@@ -163,6 +163,7 @@ public void StartApplication()
163
{
164
Process process = new Process();
165
process.StartInfo = new ProcessStartInfo(ApplicationFilePath);
166
+ process.StartInfo.WorkingDirectory = Path.GetDirectoryName(ApplicationFilePath);
167
process.Start();
168
}
169
System.Threading.Thread.Sleep(2500);
0 commit comments