diff --git a/QuickLook/TrayIconManager.cs b/QuickLook/TrayIconManager.cs index ab831c930..e07ee3b70 100644 --- a/QuickLook/TrayIconManager.cs +++ b/QuickLook/TrayIconManager.cs @@ -68,7 +68,11 @@ private TrayIconManager() new TrayMenuItem() { Header = TranslationHelper.Get("Icon_OpenDataFolder"), - Command = new RelayCommand(() => Process.Start("explorer.exe", SettingHelper.LocalDataPath)), + Command = new RelayCommand(() => Process.Start(new ProcessStartInfo(SettingHelper.LocalDataPath) + { + UseShellExecute = true, + Verb = "open", + })), }, _itemAutorun = new TrayMenuItem() {