diff --git a/mRemoteNG/UI/Forms/OptionsPages/NotificationsPage.cs b/mRemoteNG/UI/Forms/OptionsPages/NotificationsPage.cs index d9ce9ddff..4721c1387 100644 --- a/mRemoteNG/UI/Forms/OptionsPages/NotificationsPage.cs +++ b/mRemoteNG/UI/Forms/OptionsPages/NotificationsPage.cs @@ -414,7 +414,8 @@ namespace mRemoteNG.UI.Forms.OptionsPages FileName = "explorer.exe", UseShellExecute = false }; - startInfo.ArgumentList.Add($"/select,\"{path}\""); + startInfo.ArgumentList.Add("/select,"); + startInfo.ArgumentList.Add(path); Process.Start(startInfo); return true; }