Browse Source

Correlated EP defaults with clean Windows install defaults

pull/492/head 22000.318.38.2_88c186f
Valentin Radu 4 years ago
parent
commit
88c186f53c
  1. 4
      ExplorerPatcher/StartMenu.c
  2. 2
      ExplorerPatcher/dllmain.c
  3. 4
      ExplorerPatcher/settings.reg

4
ExplorerPatcher/StartMenu.c

@ -684,7 +684,7 @@ DWORD GetStartMenuPosition(FARPROC SHRegGetValueFromHKCUHKLMFunc) @@ -684,7 +684,7 @@ DWORD GetStartMenuPosition(FARPROC SHRegGetValueFromHKCUHKLMFunc)
{
DWORD dwSize = sizeof(DWORD);
DWORD dwTaskbarAl = 0;
DWORD dwTaskbarAl = 1;
if (!SHRegGetValueFromHKCUHKLMFunc || SHRegGetValueFromHKCUHKLMFunc(
TEXT("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced"),
TEXT("TaskbarAl"),
@ -694,7 +694,7 @@ DWORD GetStartMenuPosition(FARPROC SHRegGetValueFromHKCUHKLMFunc) @@ -694,7 +694,7 @@ DWORD GetStartMenuPosition(FARPROC SHRegGetValueFromHKCUHKLMFunc)
(LPDWORD)(&dwSize)
) != ERROR_SUCCESS)
{
dwTaskbarAl = 0;
dwTaskbarAl = 1;
}
return dwTaskbarAl;

2
ExplorerPatcher/dllmain.c

@ -68,7 +68,7 @@ DWORD bPropertiesInWinX = FALSE; @@ -68,7 +68,7 @@ DWORD bPropertiesInWinX = FALSE;
DWORD bNoMenuAccelerator = FALSE;
DWORD bTaskbarMonitorOverride = 0;
DWORD dwIMEStyle = 0;
DWORD dwTaskbarAl = 0;
DWORD dwTaskbarAl = 1;
DWORD bShowUpdateToast = FALSE;
DWORD bToolbarSeparators = FALSE;
HMODULE hModule = NULL;

4
ExplorerPatcher/settings.reg

@ -37,10 +37,10 @@ @@ -37,10 +37,10 @@
"TaskbarDa"=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
;b Show Search button
"SearchboxTaskbarMode"=dword:00000000
"SearchboxTaskbarMode"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
;b Show Task view button
"ShowTaskViewButton"=dword:00000000
"ShowTaskViewButton"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People]
;b Show People on the taskbar *
"TaskbarMn"=dword:00000000

Loading…
Cancel
Save