From 1f2f03dd76f698795eaf38730a695d7588dbdd2d Mon Sep 17 00:00:00 2001 From: Jared Smudde Date: Sun, 22 Jul 2018 11:05:50 -0500 Subject: [PATCH] [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 92c41e6cdb3..3c0334357fe 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)))