Author: cfinck
Date: Tue Aug 28 23:47:00 2007
New Revision: 28628
URL:
http://svn.reactos.org/svn/reactos?rev=28628&view=rev
Log:
Ok, we don't disable the creation of the regedit shortcut, but move it to the system32
directory. This way it can be started.
Modified:
branches/ros-branch-0_3_3-new/reactos/boot/bootdata/packages/reactos.dff
branches/ros-branch-0_3_3-new/reactos/dll/win32/syssetup/install.c
Modified: branches/ros-branch-0_3_3-new/reactos/boot/bootdata/packages/reactos.dff
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_3-new/reactos/bo…
==============================================================================
--- branches/ros-branch-0_3_3-new/reactos/boot/bootdata/packages/reactos.dff (original)
+++ branches/ros-branch-0_3_3-new/reactos/boot/bootdata/packages/reactos.dff Tue Aug 28
23:47:00 2007
@@ -54,7 +54,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\cylfrac\cylfrac.scr 1
Modified: branches/ros-branch-0_3_3-new/reactos/dll/win32/syssetup/install.c
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_3-new/reactos/dl…
==============================================================================
--- branches/ros-branch-0_3_3-new/reactos/dll/win32/syssetup/install.c (original)
+++ branches/ros-branch-0_3_3-new/reactos/dll/win32/syssetup/install.c Tue Aug 28 23:47:00
2007
@@ -606,7 +606,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);
}