Author: gedmurphy Date: Fri Jul 20 01:22:57 2007 New Revision: 27742
URL: http://svn.reactos.org/svn/reactos?rev=27742&view=rev Log: - move regedit into system32 - it's a wrong, but it allows users to start it via the startmenu instead of using the run dialog
Modified: branches/ros-branch-0_3_3/reactos/boot/bootdata/packages/reactos.dff branches/ros-branch-0_3_3/reactos/dll/win32/syssetup/install.c
Modified: branches/ros-branch-0_3_3/reactos/boot/bootdata/packages/reactos.dff URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_3/reactos/boot/bo... ============================================================================== --- branches/ros-branch-0_3_3/reactos/boot/bootdata/packages/reactos.dff (original) +++ branches/ros-branch-0_3_3/reactos/boot/bootdata/packages/reactos.dff Fri Jul 20 01:22:57 2007 @@ -52,7 +52,7 @@ base\applications\network\tracert\tracert.exe 1 base\applications\network\whois\whois.exe 1 base\applications\notepad\notepad.exe 1 -base\applications\regedit\regedit.exe 4 +base\applications\regedit\regedit.exe 1 base\applications\regedit\clb\clb.dll 1 base\applications\sc\sc.exe 1 base\applications\screensavers\matrix\matrix.scr 1
Modified: branches/ros-branch-0_3_3/reactos/dll/win32/syssetup/install.c URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_3/reactos/dll/win... ============================================================================== --- branches/ros-branch-0_3_3/reactos/dll/win32/syssetup/install.c (original) +++ branches/ros-branch-0_3_3/reactos/dll/win32/syssetup/install.c Fri Jul 20 01:22:57 2007 @@ -609,7 +609,7 @@ CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_CALC, _T("%SystemRoot%\system32\calc.exe"), IDS_CMT_CALC, FALSE); CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_CMD, _T("%SystemRoot%\system32\cmd.exe"), IDS_CMT_CMD, FALSE); CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_NOTEPAD, _T("%SystemRoot%\system32\notepad.exe"), IDS_CMT_NOTEPAD, FALSE); - CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_REGEDIT, _T("%SystemRoot%\regedit.exe"), IDS_CMT_REGEDIT, FALSE); + CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_REGEDIT, _T("%SystemRoot%\system32\regedit.exe"), IDS_CMT_REGEDIT, FALSE); CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_WORDPAD, _T("%SystemRoot%\system32\wordpad.exe"), IDS_CMT_WORDPAD, FALSE); CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_SNAP, _T("%SystemRoot%\system32\screenshot.exe"), IDS_CMT_SCREENSHOT, TRUE); }