We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcdee94 commit f624fc8Copy full SHA for f624fc8
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