diff --git a/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs b/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs index f3f0ee32c..7165804a4 100644 --- a/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs +++ b/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs @@ -112,10 +112,11 @@ namespace Flow.Launcher.Plugin.SharedCommands public static void OpenLocationInExporer(string location) { + var psi = new ProcessStartInfo { FileName = FileExplorerProgramName, UseShellExecute = true, Arguments = location }; try { if (LocationExists(location)) - Process.Start(FileExplorerProgramName, location); + Process.Start(psi); } catch (Exception e) {