diff --git a/reactos/bootcd.bat b/reactos/bootcd.bat index e43a82eefb4..9a19ea67908 100755 --- a/reactos/bootcd.bat +++ b/reactos/bootcd.bat @@ -41,6 +41,8 @@ rem copy data files copy /Y bootdata\autorun.inf %BOOTCD_DIR%\disk copy /Y bootdata\readme.txt %BOOTCD_DIR%\disk +copy /Y bootdata\hivecls.inf %BOOTCD_DIR%\disk\install +copy /Y bootdata\hivedef.inf %BOOTCD_DIR%\disk\install copy /Y bootdata\hivesft.inf %BOOTCD_DIR%\disk\install copy /Y bootdata\hivesys.inf %BOOTCD_DIR%\disk\install diff --git a/reactos/bootdata/hivecls.inf b/reactos/bootdata/hivecls.inf new file mode 100644 index 00000000000..18f7fe9cc4b --- /dev/null +++ b/reactos/bootdata/hivecls.inf @@ -0,0 +1,15 @@ +[Version] +Signature="$ReactOS$ + +[AddReg] +HKLM,"SOFTWARE\Classes",,0x00000010 + +HKCR,"CLSID",,0x00000012 + +HKCR,"Interface",,0x00000012 + +HKCR,"NDS\Clsid","",0x00000002,"{323991f0-7bad-11cf-b03d-00aa006e0975}" + +HKCR,"WinNT\Clsid","",0x00000002,"{8b20cd60-0f29-11cf-abc4-02608c9e7553}" + +; EOF diff --git a/reactos/bootdata/hivedef.inf b/reactos/bootdata/hivedef.inf new file mode 100644 index 00000000000..3c005d74e42 --- /dev/null +++ b/reactos/bootdata/hivedef.inf @@ -0,0 +1,12 @@ +[Version] +Signature="$ReactOS$ + +[AddReg] + +HKCU,"Control Panel",,0x00000012 + +HKCU,"Control Panel\Appearance",,0x00000012 + +HKCU,"Environment",,0x00000012 + +; EOF diff --git a/reactos/bootdata/hivesft.inf b/reactos/bootdata/hivesft.inf new file mode 100644 index 00000000000..2eda1d5b321 --- /dev/null +++ b/reactos/bootdata/hivesft.inf @@ -0,0 +1,10 @@ +[Version] +Signature="$ReactOS$ + +[AddReg] + + +HKLM,"SOFTWARE\ReactOS\Windows NT\CurrentVersion\WinLogon","Shell",0x00020000,"%SystemRoot%\System32\cmd.exe" +HKLM,"SOFTWARE\ReactOS\Windows NT\CurrentVersion\WinLogon","StartServices",0x00010001,0x00000001 + +; EOF diff --git a/reactos/bootdata/txtsetup.sif b/reactos/bootdata/txtsetup.sif index 557957962ef..73bba1199aa 100644 --- a/reactos/bootdata/txtsetup.sif +++ b/reactos/bootdata/txtsetup.sif @@ -96,3 +96,11 @@ system.hiv = 4 [SetupData] DefaultPath = \ReactOS + +[HiveInfs.Install] +AddReg=hivecls.inf,AddReg +AddReg=hivedef.inf,AddReg +AddReg=hivesft.inf,AddReg +AddReg=hivesys.inf,AddReg + +; EOF