From 8398c9fcfb1b4869fb6c1da0517cfdba5151c8c2 Mon Sep 17 00:00:00 2001 From: Thamatip Chitpong Date: Sat, 8 Jun 2024 22:29:42 +0700 Subject: [PATCH] [CONTROL] OpenShellFolder: Add file browser fallback If Explorer shell is not available, use ReactOS's alternative file browser instead. CORE-19648 --- base/applications/control/control.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/base/applications/control/control.c b/base/applications/control/control.c index 3a39694d1c9..511f9f60032 100644 --- a/base/applications/control/control.c +++ b/base/applications/control/control.c @@ -74,15 +74,16 @@ OpenShellFolder(LPWSTR lpFolderCLSID) WCHAR szParameters[MAX_PATH]; /* - * Open a shell folder using "explorer.exe". The passed CLSIDs - * are all subfolders of the "Control Panel" shell folder. + * Open a shell folder using "explorer.exe". If Explorer shell is not + * available, use ReactOS's alternative file browser instead. + * The passed CLSIDs are all subfolders of the "Control Panel" shell folder. */ StringCbCopyW(szParameters, sizeof(szParameters), L"/n,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\::{21EC2020-3AEA-1069-A2DD-08002B30309D}"); StringCbCatW(szParameters, sizeof(szParameters), lpFolderCLSID); return (INT_PTR)ShellExecuteW(NULL, L"open", - L"explorer.exe", + GetShellWindow() ? L"explorer.exe" : L"filebrowser.exe", szParameters, NULL, SW_SHOWDEFAULT) > 32;