https://git.reactos.org/?p=reactos.git;a=commitdiff;h=1f2f03dd76f698795eaf3…
commit 1f2f03dd76f698795eaf38730a695d7588dbdd2d
Author: Jared Smudde <computerwhiz02(a)hotmail.com>
AuthorDate: Sun Jul 22 11:05:50 2018 -0500
Commit: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito(a)reactos.org>
CommitDate: Wed Jul 25 00:57:58 2018 +0200
[EXPLORER] Fix creation of shortcuts in the start menu.
---
base/shell/explorer/startmnucust.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/base/shell/explorer/startmnucust.cpp b/base/shell/explorer/startmnucust.cpp
index 92c41e6cdb..3c0334357f 100644
--- a/base/shell/explorer/startmnucust.cpp
+++ b/base/shell/explorer/startmnucust.cpp
@@ -26,7 +26,7 @@ VOID OnAddStartMenuItems(HWND hDlg)
{
WCHAR szPath[MAX_PATH];
- if (SUCCEEDED(SHGetFolderPathW(NULL, CSIDL_STARTMENU, NULL, 0, szPath)))
+ if (SUCCEEDED(SHGetFolderPathW(NULL, CSIDL_PROGRAMS, NULL, 0, szPath)))
{
WCHAR szCommand[MAX_PATH] = L"appwiz.cpl,NewLinkHere ";
if (SUCCEEDED(StringCchCatW(szCommand, _countof(szCommand), szPath)))