Jump to content

Acheron

Member
  • Posts

    1,077
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by Acheron

  1. Dibya, I see you also are active on RyanVM.net and have posted in the KernelEx thread. You should read my reply over there. Further discussion about this is against the MSFN board rules. http://www.ryanvm.net/forum/viewtopic.php?p=141037
  2. You could try to expand these compressed files using the expand -r command to see the contents, or with the use of some 3rd party software like for example Universal Extractor. I have created a custom installer for Universal Extractor you can download from my website: http://updatepack.nl/custom_setup/ I have not tested nLite if it supports updating uncompressed svcpack.inf. I remember it did process these files, but recompresses them again. This makes it hard to compare changes when using version control. HFSLIP 1.7.10 beta K enables processing uncompressed svcpack.inf and sysoc.inf files and does not recompress them to workaround these issues.
  3. I do not recommend just waiting. You'll be waiting with a high probability of getting no help at all. Here is a song about it:
  4. Sure, but don't expect any easy one click solutions.
  5. If you have problems using the original Windows 7 OS that came with the laptop you should report the issue to your manufacturer. You should at least be able to run one OS on your laptop without issues.
  6. I searched for Battlefield 4 and it is supposed to run on Videocards supporting DirectX 10. The latest version tested in the Wine Application DB is 1.7.29, tested October 2014. Latest Wine version 1.9.4 contains many changes and better DirectX 10/11 support. You can also try to dualboot Windows 7/8 and Linux, so you can play non-working games on Windows and continue developing on Linux on the same machine.
  7. Doing a google search I found the following topic on Lenovo about your laptop: https://forums.lenovo.com/t5/Linux-Discussion/Lenovo-y510p-and-Linux/td-p/1170629 You should read this thread first to see problems other users run into when installing Linux. There is a reason most developers don't like laptops, as you often have to deal with poor driver support for different OSes. Did you look up the Wine Application Compatibility database? Most information on it is heavily outdated. Only the very latest games using DirectX 12 are not compatible. Everything else is trial and error.
  8. No, unfortunately not. But if you are young enough you probably have some time to learn about developing software and drivers. So if you are interested in becoming a developer I would first like you to try to check if you can install Linux on your laptop. This should be possible if your laptop is popular enough. You then can make it work almost exactly as Windows XP with the benefit of supporting newer games.
  9. Not impossible I think, but you will probably have to write the drivers yourself.
  10. Your best option for now if you don't want to use Windows 7 or newer is to switch to Linux and install latest Wine. This will enable you to run newer games. Wine developers are currently working hard on adding DirectX 11 support.
  11. Making your laptop support Windows 9x or 2000 will be even harder then supporting Windows XP. I would look up if you can install Linux on your laptop first. That means someone already created a working driver. You then could run software developed for Windows XP using Wine.
  12. If there are only drivers for your hardware components available for Windows 7 or later it will become difficult. You might want to check if you can run Linux on your laptop. If you are determined enough you could then try to port these drivers to Windows XP.
  13. I don't know about drivers for your laptop but you have to look up the exact hardware components, pnp ids and see if your manufacturer or a 3rd party system builder has developed a driver for Windows XP or Server 2003 you can use.
  14. Short answer: status unclear.
  15. I still have some hope that eventually someone will stand up to announce a KernelEx project for Windows XP.
  16. For more information about the current situation of the KernelEX XP project please read the following topic on RyanVM: http://www.ryanvm.net/forum/viewtopic.php?t=10560
  17. I have been using some other method to detect a specific VOLUME by reading the name of the label. So you could also look into adding a specific label to your ISO. I use this method in a batch file to automatically create a SVN Depot on the volume with the label BACKUP: @echo off::check if SVN depot existsfor /f "tokens=3,4 skip=9 delims= " %%i in ('cmd /c ^"echo list volume ^| diskpart^"') do ( if /i %%j==BACKUP set SVNPATH=%%i:\SVN depot)if not defined SVNPATH set SVNPATH=%SystemDrive%\SVN depotif not exist "%SVNPATH%" md "%SVNPATH%"::Create SVN servicesc create svnserve binpath= "\"%ProgramFiles%\TortoiseSVN\bin\svnserve.exe\" --service --root \"%SVNPATH%\"" displayname= "Subversion" depend= tcpip start= autonet start svnserve
  18. Now the installation went succesfully the fun can begin. I would recommend creating an unattended Windows XP SP4 DVD for future use
  19. If you keep getting these strange error messages or Blue Screens (BSODs) on a regular basis I would also check to see if your system ram is still ok, and your cpu does not overheat. Did you do install Windows XP on a clean (empty) partition this time, or did you do another "upgrade" installation? Also double check the MD5 signature of the SP4 installer, before applying it on your fresh installed XP. If your system has indeed a malware infection sometimes it injects itself into any exe file. I would keep Windows Updates disabled for now and head over to installing SP4 right away. Or do you want to risk making the same mistakes again? So best way to install Windows XP SP4 without slipstreaming is: 1. Install Windows XP SP1 or later version from CD/DVD on a new empty partition. 2. Check MD5 signature of SP4 installer to make sure it is not altered by malware. 3. If not sure about this and your internet connection is working fine you can download a new copy again. 4. Disable Windows Updates. Don't install any other software or drivers. 5. Install Windows XP SP4 6. Check if installation is successful and runs without throwing errors. 7. Go install the latest software and drivers. 8. Check if everything keeps running fine. If errors occur you can backtrack it to the installation of a specific driver or software program. 9. Use an AntiVirus program with updated virus database to scan your old Windows installation and backup copies. 10. Cherry pick the files important for you to put back on your fresh installed system. 11. Report success! I recommend not to boot your old XP SP3 installation. Doing that while the system might be infected can cause the infection to spread to your new installation. Even after having scanned the old installation with an antivirus does not protect you against advanced root kit infections.
  20. If you don't disable Windows File Protection (SFC) you can use these patches to workaround a few issues. The SFC file scan during T8, refers to the default system file scanning process run during Windows XP Setup at the 8 minutes left mark. During this phase Setup does the same procedure as when manually running the sfc /scannow command. During this phase Windows verifies the checksum of all the files and copies all the system files to the DLLCache folder. To speed up Windows XP installation you can choose to skip this. It will reduce Windows installation time about 5-10 minutes on older computers. The method FDV describes will break Windows File Protection functionality. The tutorial FDV posted is also a bit outdated. I did not remove support for the FDVFiles method in my version of HFSLIP as I think it is up to the user to decide what they want HFSLIP to do for them, but if you go use the FDVFiles method you are pretty much on your own. If you go this route I would like it you create a new topic for it to describe your experiences reducing your source. About renaming the patched files instead of compressing them. I have not tested if Windows Setup accepts this. I normally run the following commands after patching modifype patchedfile.dll -cmakecab /D CompressionType=LZX /D CompressionMemory=21 patchedfile.dllI can also share some of my current HFSLIP configuration files (free to use): HFEXPERT\HIVEINSTALL\changeres.inf [Version]Signature = "$Windows NT$"[DefaultInstall]AddReg = SETUP[SETUP];Disable Screen Resolution balloon tipHKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\DontShowMeThisDialogAgain","ScreenCheck",0x0,"no";Change default resolution to 1024x768x32HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","Attach.ToDesktop",0x10001,0x1HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.BitsPerPel",0x10001,32HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.XResolution",0x10001,1024HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.YResolution",0x10001,768HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.VRefresh",0x10001,0x1HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.Flags",0x10001,0x0HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.XPanning",0x10001,0x0HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.YPanning",0x10001,0x0HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.Orientation",0x10001,0x0HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.FixedOutput",0x10001,0x0HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","Attach.RelativeX",0x10001,0x0HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","Attach.RelativeY",0x10001,0x0HFEXPERT\HIVEINSTALL\tweaks.inf [Version]Signature = "$Windows NT$"[DefaultInstall]AddReg = SETUP[SETUP];Add “Pin to Start Menu” menu option for folders using Shift right clickHKCR,"Folder\shellex\ContextMenuHandlers\{a2a9545d-a0c2-42b4-9708-a0b2badd77c8}",,0x10;Remove's the annoying clicking soundHKCU,"AppEvents\Schemes\Apps\Explorer\Navigating\.Current",,0x0HKCU,"AppEvents\Schemes\Apps\Explorer\Navigating\.Default",,0x0;Turn accessibility options offHKCU,"Control Panel\Accessibility\StickyKeys","Flags",0x0,"506"HKCU,"Control Panel\Accessibility\Keyboard Response","Flags",0x0,"122"HKCU,"Control Panel\Accessibility\ToggleKeys","Flags",0x0,"58";Enable cleartypeHKCU,"Control Panel\Desktop","FontSmoothing",0x0,"2"HKCU,"Control Panel\Desktop","FontSmoothingGamma",0x10001,1200HKCU,"Control Panel\Desktop","FontSmoothingOrientation",0x10001,1HKCU,"Control Panel\Desktop","FontSmoothingType",0x10001,2;Enable Unicode character input using the numeric keypad (press + and Unicode hexvalue)HKCU,"Control Panel\Input Method","EnableHexNumpad",0x0,"1";Disable Advanded Text Services (Language bar)HKCU,"SOFTWARE\Microsoft\CTF","Disable Thread Input Manager",0x10001,1HKCU,"SOFTWARE\Microsoft\CTF\LangBar","DontShowCloseLangBarDlg",0x10001,1HKCU,"SOFTWARE\Microsoft\CTF\LangBar","ExtraIconsOnMinimized",0x10001,0HKCU,"SOFTWARE\Microsoft\CTF\LangBar","ShowStatus",0x10001,3HKCU,"SOFTWARE\Microsoft\CTF\MSUTB","ShowDeskBand",0x10001,0HKLM,"SOFTWARE\Microsoft\CTF\SystemShared","CUAS",0x10001,0;Disable boot optimizationHKLM,"SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction","Enable",0x0,"N";Show statusbar in all windowsHKCU,"SOFTWARE\Microsoft\Internet Explorer\Main","StatusBarOther",0x10001,1HKCU,"SOFTWARE\Microsoft\Internet Explorer\Main","StatusBarWeb",0x10001,1;Hide the volume iconHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Applets\Systray","Services",0x10001,"27";No 'shortcut to' creationHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer","link",0x1,0;Increase icon cacheHKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer","Max Cached Icons",0x0,"4096";Turn off recycle bin delete confirmationHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer","ShellState",0x1,24,00,00,00,3c,29,00,00,00,00,00,00,00,00,00,00,00,00,00,00,01,00,00,00,0d,00,00,00,00,00,00,00,02,00,00,00;Show Drive Letters firstHKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer","ShowDriveLettersFirst",0x10001,4;Expand Explorer detailsHKCU,"SOFTWARE\Microsoft\Windows\ShellNoRoam\DUIBags\ShellFolders\{00021400-0000-0000-C000-000000000046}","ExpandDetailsTasks",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\ShellNoRoam\DUIBags\ShellFolders\{20D04FE0-3AEA-1069-A2D8-08002B30309D}","ExpandDetailsTasks",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\ShellNoRoam\DUIBags\ShellFolders\{450D8FBA-AD25-11D0-98A8-0800361B1103}","ExpandDetailsTasks",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\ShellNoRoam\DUIBags\ShellFolders\{645FF040-5081-101B-9F08-00AA002F954E}","ExpandDetailsTasks",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\ShellNoRoam\DUIBags\ShellFolders\{E17D4FC0-5564-11D1-83F2-00A0C90DC849}","ExpandDetailsTasks",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\ShellNoRoam\DUIBags\ShellFolders\{F3364BA0-65B9-11CE-A9BA-00AA004AE837}","ExpandDetailsTasks",0x10001,1;Enable Quick launchHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop","Default Taskbar",0x1,0c,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,b0,e2,2b,d8,64,57,d0,11,a9,6e,00,c0,4f,d7,05,a2,22,00,1c,00,0a,01,00,00,1a,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,00,00,00,c0,00,00,00,00,00,00,46,83,00,00,00,10,00,00,00,a0,b0,48,5e,89,8d,bd,01,00,d8,9e,e4,2a,8d,bd,01,00,45,fe,5e,89,8d,bd,01,00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,13,01,14,00,1f,0f,e0,4f,d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,23,44,3a,5c,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,cd,97,15,00,31,00,00,00,00,00,af,24,5c,b9,10,80,57,69,6e,6e,74,00,00,20,00,31,00,00,00,00,00,af,24,a3,b9,10,00,50,72,6f,66,69,6c,65,73,00,50,52,4f,46,49,4c,45,53,00,19,00,31,00,00,00,00,00,c1,24,08,92,10,00,69,65,35,30,30,2e,30,30,30,00,00,28,00,31,00,00,00,00,00,c1,24,08,92,10,00,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,00,41,50,50,4c,49,43,7e,31,00,21,00,31,00,00,00,00,00,c5,22,9d,91,10,00,4d,69,63,72,6f,73,6f,66,74,00,4d,49,43,52,4f,53,7e,31,00,29,00,31,00,00,00,00,00,d3,22,32,a6,10,00,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,00,49,4e,54,45,52,4e,7e,31,00,24,00,31,00,00,00,00,00,db,22,76,ba,10,00,51,75,69,63,6b,20,4c,61,75,6e,63,68,00,51,55,49,43,4b,4c,7e,31,00,00,00,8d,00,00,00,1c,00,00,00,01,00,00,00,1c,00,00,00,36,00,00,00,0d,f0,ad,ba,8c,00,00,00,1a,00,00,00,03,00,00,00,e7,18,2d,23,10,00,00,00,49,45,35,30,30,5f,58,31,43,00,43,3a,5c,57,49,4e,4e,54,5c,50,72,6f,66,69,6c,65,73,5c,49,45,35,30,30,2e,30,30,30,5c,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,5c,4d,69,63,72,6f,73,6f,66,74,5c,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,5c,51,75,69,63,6b,20,4c,61,75,6e,63,68,00,00,10,00,00,00,05,00,00,a0,1a,00,00,00,a3,00,00,00,00,00,00,00,08,00,00,00,02,00,00,00,cc,00,00,00,01,00,00,00,03,00,00,00,4a,00,00,00,01,00,00,00,40,00,32,00,e6,01,00,00,c4,24,15,9f,20,00,4c,61,75,6e,63,68,20,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,20,42,72,6f,77,73,65,72,2e,6c,6e,6b,00,4c,41,55,4e,43,48,7e,32,2e,4c,4e,4b,00,00,00,40,00,00,00,02,00,00,00,36,00,32,00,48,02,00,00,c4,24,15,9f,20,00,4c,61,75,6e,63,68,20,4f,75,74,6c,6f,6f,6b,20,45,78,70,72,65,73,73,2e,6c,6e,6b,00,4c,41,55,4e,43,48,7e,31,2e,4c,4e,4b,00,00,00,36,00,00,00,00,00,00,00,2c,00,32,00,51,00,00,00,ec,22,46,39,20,00,53,68,6f,77,20,44,65,73,6b,74,6f,70,2e,73,63,66,00,53,48,4f,57,44,45,7e,31,2e,53,43,46,00,00,00,52,00,00,00,e0,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,01,00,00,00,01,00,00,00,aa,4f,28,68,48,6a,d0,11,8c,78,00,c0,4f,d9,18,b4,37,02,00,00,e0,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,01,00,00,00HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop","TaskbarWinXP",0x1,0c,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,b0,e2,2b,d8,64,57,d0,11,a9,6e,00,c0,4f,d7,05,a2,22,00,1c,00,0a,11,00,00,1a,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,00,00,00,c0,00,00,00,00,00,00,46,81,00,00,00,11,00,00,00,48,53,ba,9f,d1,a4,c4,01,aa,0c,c1,f5,d1,a4,c4,01,aa,0c,c1,f5,d1,a4,c4,01,00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,a7,01,14,00,1f,50,e0,4f,d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,2f,43,3a,5c,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,5c,00,31,00,00,00,00,00,3b,31,b3,a3,10,00,44,4f,43,55,4d,45,7e,31,00,00,44,00,03,00,04,00,ef,be,3b,31,ae,b2,3b,31,b3,a3,14,00,00,00,44,00,6f,00,63,00,75,00,6d,00,65,00,6e,00,74,00,73,00,20,00,61,00,6e,00,64,00,20,00,53,00,65,00,74,00,74,00,69,00,6e,00,67,00,73,00,00,00,18,00,4a,00,31,00,00,00,00,00,3b,31,28,a7,10,00,4b,4c,41,41,53,4e,7e,31,00,00,32,00,03,00,04,00,ef,be,3b,31,b3,a3,3b,31,28,a7,14,00,00,00,4b,00,6c,00,61,00,61,00,73,00,20,00,4e,00,65,00,6b,00,65,00,6d,00,61,00,6e,00,00,00,18,00,64,00,31,00,00,00,00,00,3b,31,d1,a4,13,00,41,50,50,4c,49,43,7e,31,00,00,4c,00,03,00,04,00,ef,be,3b,31,b3,a3,3b,31,d1,a4,14,00,36,00,41,00,70,00,70,00,6c,00,69,00,63,00,61,00,74,00,69,00,6f,00,6e,00,20,00,44,00,61,00,74,00,61,00,00,00,40,73,68,65,6c,6c,33,32,2e,64,6c,6c,2c,2d,32,31,37,36,35,00,18,00,21,00,31,00,00,00,00,00,c5,22,9d,91,10,00,4d,69,63,72,6f,73,6f,66,74,00,4d,49,43,52,4f,53,7e,31,00,29,00,31,00,00,00,00,00,d3,22,32,a6,10,00,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,00,49,4e,54,45,52,4e,7e,31,00,24,00,31,00,00,00,00,00,db,22,76,ba,10,00,51,75,69,63,6b,20,4c,61,75,6e,63,68,00,51,55,49,43,4b,4c,7e,31,00,00,00,10,00,00,00,05,00,00,a0,1a,00,00,00,37,01,00,00,60,00,00,00,03,00,00,a0,58,00,00,00,00,00,00,00,62,6f,76,65,6e,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,29,91,fa,9d,c4,10,d9,11,94,fc,00,10,b5,10,90,d5,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,29,91,fa,9d,c4,10,d9,11,94,fc,00,10,b5,10,90,d5,00,00,00,00,08,00,00,00,02,00,00,00,4a,02,00,00,01,00,00,00,05,00,00,00,72,00,00,00,00,00,00,00,64,00,32,00,4f,00,00,00,3b,31,d2,a4,20,00,42,55,52,45,41,55,7e,31,2e,53,43,46,00,00,48,00,03,00,04,00,ef,be,3b,31,d2,a4,3b,31,d2,a4,14,00,00,00,42,00,75,00,72,00,65,00,61,00,75,00,62,00,6c,00,61,00,64,00,20,00,77,00,65,00,65,00,72,00,67,00,65,00,76,00,65,00,6e,00,2e,00,73,00,63,00,66,00,00,00,1c,00,00,00,00,00,00,00,92,00,00,00,02,00,00,00,84,00,32,00,0b,03,00,00,3b,31,d3,a4,20,00,44,45,49,4e,54,45,7e,31,2e,4c,4e,4b,00,00,68,00,03,00,04,00,ef,be,3b,31,d1,a4,3b,31,d1,a4,14,00,00,00,44,00,65,00,20,00,49,00,6e,00,74,00,65,00,72,00,6e,00,65,00,74,00,20,00,45,00,78,00,70,00,6c,00,6f,00,72,00,65,00,72,00,2d,00,62,00,72,00,6f,00,77,00,73,00,65,00,72,00,20,00,73,00,74,00,61,00,72,00,74,00,65,00,6e,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,60,00,00,00,04,00,00,00,52,00,32,00,92,02,00,00,3b,31,b9,a4,20,00,46,4c,59,32,30,30,7e,31,2e,4c,4e,4b,00,00,36,00,03,00,04,00,ef,be,3b,31,b9,a4,3b,31,b9,a4,14,00,00,00,46,00,6c,00,79,00,20,00,32,00,30,00,30,00,30,00,20,00,54,00,56,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,68,00,00,00,01,00,00,00,5a,00,32,00,98,02,00,00,3b,31,ce,a4,20,00,4f,55,54,4c,4f,4f,7e,31,2e,4c,4e,4b,00,00,3e,00,03,00,04,00,ef,be,3b,31,ce,a4,3b,31,ce,a4,14,00,00,00,4f,00,75,00,74,00,6c,00,6f,00,6f,00,6b,00,20,00,45,00,78,00,70,00,72,00,65,00,73,00,73,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,72,00,00,00,03,00,00,00,64,00,32,00,c4,02,00,00,3b,31,cd,a4,20,00,57,49,4e,44,4f,57,7e,31,2e,4c,4e,4b,00,00,48,00,03,00,04,00,ef,be,3b,31,cd,a4,3b,31,cd,a4,14,00,00,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,20,00,4d,00,65,00,64,00,69,00,61,00,20,00,50,00,6c,00,61,00,79,00,65,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,80,00,00,00,60,07,00,00,00,00,00,00,1e,00,00,00,00,00,00,00,00,00,00,00,1e,00,00,00,00,00,00,00,01,00,00,00,01,00,00,00,aa,4f,28,68,48,6a,d0,11,8c,78,00,c0,4f,d9,18,b4,69,03,00,00,60,0d,00,00,00,00,00,00,1e,00,00,00,00,00,00,00,00,00,00,00,1e,00,00,00,00,00,00,00,01,00,00,00HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop","Toolbars",0x1,11,00,00,00,00,00,00,00HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop","Upgrade",0x10001,1;Classic Control PanelHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\WebView\BarricadedFolders","shell:ControlPanelFolder",0x10001,0;Show folder contentsHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\WebView\BarricadedFolders","shell:ProgramFiles",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\WebView\BarricadedFolders","shell:SystemDriveRootFolder",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\WebView\BarricadedFolders","shell:Windows",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\WebView\BarricadedFolders","shell:System",0x10001,0;Disables Error Reporting, but notifies when errors occurHKLM,"SOFTWARE\Microsoft\PCHealth\ErrorReporting","DoReport",0x10001,0;Disable WMI error logsHKLM,"SOFTWARE\Microsoft\WBEM\CIMOM","Logging",0x0,"0";Configure Search AssistantHKCU,"SOFTWARE\Microsoft\Search Assistant","SocialUI",0x10001,0HKCU,"SOFTWARE\Microsoft\Search Assistant","BalloonTips",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer","IncludeSubFolders",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer","CaseSensitive",0x10001,0;Disable Automatic hiding of tray iconsHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer","EnableAutoTray",0x10001,0;Disable grouping of taskbar buttonsHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","TaskbarGlomming",0x10001,0;Use original case for filenamesHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","DontPrettyPath",0x10001,1;Configure Start MenuHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","StartMenuAdminTools",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","Start_AdminToolsRoot",0x10001,2HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","Start_NotifyNewApps",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","Start_ShowSetProgramAccessAndDefaults",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","Start_ShowNetConn",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","Start_ShowNetPlaces",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","Start_ShowRecentDocs",0x10001,0;Disable Desktop Cleaning wizardHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz","NoRun",0x10001,1HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoDesktopCleanupWizard",0x10001,1;Disable Active DesktopHKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoActiveDesktopChanges",0x10001,1;Don't track Recent documentsHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoRecentDocsHistory",0x10001,1;Disable Click here to begin start menu balloon tipHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","StartButtonBalloonTip",0x10001,2;Disable Windows Tour balloon promptHKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Applets\Tour","RunCount",0x10001,0;Don't Show Go buttonHKCU,"Software\Microsoft\Internet Explorer\Main","ShowGoButton",0x0,"no";Disable Internet Explorer User promptsHKCU,"SOFTWARE\Microsoft\Internet Explorer\Main","ShowedCheckBrowser",0x0,"Yes"HKCU,"SOFTWARE\Microsoft\Internet Explorer\Main","Check_Associations",0x0,"No"HKCU,"SOFTWARE\Microsoft\Internet Explorer\IntelliForms","AskUser",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings","PrivDiscUiShown",0x10001,1HKLM,"SOFTWARE\Policies\Microsoft\Internet Explorer\Main","DisableFirstRunCustomize",0x10001,1;Disable creation of multiple Internet Explorer processesHKCU,"SOFTWARE\Microsoft\Internet Explorer\Main","TabProcGrowth",0x10001,0;Show Internet Explorer menu bar on topHKCU,"SOFTWARE\Microsoft\Internet Explorer\Toolbar\WebBrowser","ITBar7Position",0x10001,1;Configure Internet Explorer cache size (250MB)HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\Cache\Content","CacheLimit",0x10001,00,e8,03,00;Disable security warningsHKCU,"SOFTWARE\Microsoft\Internet Explorer\Download","CheckExeSignatures",0x0,"no"HKCU,"SOFTWARE\Microsoft\Internet Explorer\Download","RunInvalidSignatures",0x10001,1HKCU,"SOFTWARE\Microsoft\Internet Explorer\InformationBar","FirstTime",0x10001,0HKCU,"SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_LOCALMACHINE_LOCKDOWN","iexplore.exe",0x10001,0HKCU,"SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_LOCALMACHINE_LOCKDOWN\Settings\LocalMachine_CD_Unlock",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3","1601",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3","2200",0x10001,0HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Associations","LowRiskFileTypes",0x0,".zip;.rar;.nfo;.txt;.exe;.bat;.com;.cmd;.reg;.msi;.htm;.html;.gif;.bmp;.jpg;.avi;.mpg;.mpeg;.mov;.mp3;.m3u;.wav;"HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Attachments","HideZoneInfoOnProperties",0x10001,1HKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Attachments","SaveZoneInformation",0x10001,1HKLM,"SOFTWARE\Microsoft\Security Center","AntiVirusDisableNotify",0x10001,1HKLM,"SOFTWARE\Microsoft\Security Center","FirewallDisableNotify",0x10001,1HKLM,"SOFTWARE\Microsoft\Security Center","UpdatesDisableNotify",0x10001,1;Allow users to configure Windows UpdateHKLM,"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU","AUOptions",0x10001,5HKLM,"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU","AutoInstallMinorUpdates",0x10001,0HKLM,"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU","IncludeRecommendedUpdates",0x10001,0HKLM,"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU","NoAUAsDefaultShutdownOption",0x10001,1HKLM,"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU","NoAutoRebootWithLoggedOnUsers",0x10001,1HKLM,"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU","RebootRelaunchTimeoutEnabled",0x10001,0;Configure Windows Update settings (notify users)HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update","AUOptions",0x10001,2;Don't offer Service Packs through Windows UpdateHKLM,"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate","DoNotAllowSP",0x10001,1;Don't display browser choice windowHKLM,"SOFTWARE\BrowserChoice","Enable",0x10001,0;Don't search for driver updatesHKLM,"SOFTWARE\Policies\Microsoft\Windows\DriverSearching","DontPromptForWindowsUpdate",0x10001,1HKLM,"SOFTWARE\Policies\Microsoft\Windows\DriverSearching","DontSearchWindowsUpdate",0x10001,1;Ignore driver signingHKLM,"SOFTWARE\Microsoft\Driver Signing","Policy",0x1,0HKLM,"SOFTWARE\Microsoft\Non-Driver Signing","Policy",0x1,0HKCU,"SOFTWARE\Policies\Microsoft\Windows NT\Driver Signing","BehaviorOnFailedVerify",0x10001,0;Write Calc and CharMap settings to registry instead of win.iniHKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\win.ini","SciCalc",0x0,"USR:Software\Microsoft\Calc"HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\win.ini","MSUCE",0x0,"USR:Software\Microsoft\CharMap"HKCU,"Software\Microsoft\Calc","layout",0x0,"0"HKCU,"Software\Microsoft\CharMap","Advanced",0x0,"1";Disable Windows DLL cacheHKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon","SfcQuota",0x10001,0;Don't search online for missing file associationsHKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer","InternetOpenWith",0x10001,0;Use VistaVG Ultimate theme at logonHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\ThemeManager","DllName",0x20000,"%%SystemRoot%%\Resources\Themes\VistaVG Ultimate\VistaVG Ultimate.msstyles";No recent items on Start MenuHKCU,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced","Start_MinMFU",0x10001,0;Add Recycle bin to My computerHKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E}",,0x0,"Recycle Bin";Add Recycle Bin shortcut to the Start MenuHKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}",,0,"@%%SystemRoot%%\system32\shell32.dll,-8964"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}","InfoTip",0,"@%%SystemRoot%%\system32\shell32.dll,-22915"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\DefaultIcon",,0,"%%SystemRoot%%\System32\shell32.dll,32"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\InProcServer32",,0x20000,"%%SystemRoot%%\system32\shdocvw.dll"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\InProcServer32","ThreadingModel",0,"Apartment"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance","CLSID",0,"{3f454f0e-42ae-4d7c-8ea3-328250d6e272}"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance\InitPropertyBag","CLSID",0,"{13709620-C279-11CE-A49E-444553540000}"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance\InitPropertyBag","method",0,"ShellExecute"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance\InitPropertyBag","Command",0,"@%%SystemRoot%%\system32\shell32.dll,-8964"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance\InitPropertyBag","Param1",0,"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{645FF040-5081-101B-9F08-00AA002F954E}"HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\shellex\ContextMenuHandlers\{645FF040-5081-101B-9F08-00AA002F954E}",,0HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\shellex\MayChangeDefaultMenu",,0HKCR,"CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\ShellFolder","Attributes",0x10001,0;Configure desktop to use 48x48 icon sizeHKCU,"Control Panel\Desktop\WindowMetrics","IconSpacing",0x0,"-1500"HKCU,"Control Panel\Desktop\WindowMetrics","IconVerticalspacing",0x0,"-1500"HKCU,"Control Panel\Desktop\WindowMetrics","MenuWidth",0x0,"-285"HKCU,"Control Panel\Desktop\WindowMetrics","Shell Icon Size",0x0,"48"REPLACE\I386\WINNT.SIF [Data]Autopartition = 0MsDosInitiated = 0UnattendedInstall = YesEulaComplete = 1[GuiUnattended]AdminPassword = *EncryptedAdminPassword = NoOEMSkipRegional = 1TimeZone = 110DetachedProgram = ".\system32\cmd.exe"Arguments = "/Q /C FOR /F %I IN (%SystemRoot%\SYSTEM32\$WINNT$.INF) DO (FOR %J IN (%I$OEM$) DO (IF EXIST %J (START /D%J nircmd.exe exec hide presetup.cmd)))"[Display]AutoConfirm = 1BitsPerPel = 32Vrefresh = 60Xresolution = 1024Yresolution = 768[SystemRestore]DisableSR=1CreateFirstRunRp=0[Shell]CustomDefaultThemeFile = "%SystemRoot%\Resources\Themes\VistaVG Ultimate.theme"[UserData]ComputerName = *FullName = "Beheerder"OrgName = ""ProductKey = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"[TapiLocation]AreaCode = 055CountryCode = 31Dialing = Tone[Components]Chat = OffClipBook = OffDialer = OffDeskpaper = OffFreecell = OffHearts = OffHypertrm = OffIEAccess = OffMedia_clips = OffMinesweeper = OffMPlay = OffMousepoint = OffMsnexplr = OffMswordpad = OffObjectpkg = OffOEAccess = OffPinBall = OffRec = OffSolitaire = OffSpider = OffTemplates = OffWMAccess = OffZonegames = Off[IEPopupBlocker]BlockPopups = NoShowInformationBar = No[RegionalSettings]InputLocale = "0413:00020409"InputLocale_DefaultUser = "0413:00020409"LanguageGroup = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17SystemLocale = "0413"UserLocale = "0413"UserLocale_DefaultUser = "0413"[Networking]InstallDefaultComponents = Yes[Identification]JoinWorkgroup = "WORKGROUP"
  21. Well, HFSLIPFC is an independent project maintained by Mim0, which is currently heavily outdated. So I would not rely on any information that tool provides at the moment. I have asked Mim0 to get my version listed on his site, but he said to me he needed more time for testing first. I don't know how much time he needs, as currently HFSLIP beta K is the most stable release version. About patching dlls; the information I provided here is still the latest. Make sure you check the file versions of the dll files you patch. You don't need to apply all the patches. Only use the ones you need. You need to apply modifype afterwards to fix the PE Checksum and compress the modified files again using makecab.exe. I put these modified files into the REPLACE\I386 folder. If you don't replace any Windows drivers or don't want to modify syssetup.inf or disable OOBE completely you don't have to use any patch at all. If your current source is previously modified by nLite, you need to redo your work, as nLite applies several patches to syssetup.dll that conflict with the patches created by Mr. Dusha. I see you also modify layout.inf. I do not recommend modifying layout.inf as it will break Windows File Protection functionality. BTW I do not recommend deleting Internet Explorer, as lots of programs depend on IE functionality. It is also required for visiting the Windows Update site and Microsoft Update Catalog.
  22. If you don't mind violating your license I would recommend integrating the PosReady updates too, as Windows XP didn't get any security updates anymore past 2014. About integrating WMP11 updates; you could integrate wmfdist11.exe, as long as you put it into the generic HF folder. HFSLIP 1.7.10 beta K has removed the support for processing the WMP11 subfolder. wmfdist11.exe is part of Windows Media Player 11 installer, so if you let HFSLIP process the complete installer, you don't need to add an extra copy of wmfdist11.exe to the HF folder. I integrate Windows Media Player 11 completely and the following updates; all put in the HF folder: WMP11-WindowsXP-x86-NLD.exeWindowsMedia11-KB2834904-v2-x86-NLD.exeWindowsMedia11-KB3033890-x86-NLD.exeWindowsMedia11-KB3067903-x86-NLD.exeWindowsMedia11-KB954155-x86-NLD.exeWindowsMedia11-KB973540-x86-NLD.exeWindowsMedia11-KB974905-x86-INTL.exeWindowsMedia11-KB975558-x86-NLD.exeWindowsMedia11-KB978695-x86-NLD.exeAbout your update list. You have most of the files in the correct folder. You can move rootsupd.exe and rvkroots.exe to the generic HF folder, so they can be fully integrated into your XP install source.
  23. Hi HeadHunter2, did you try using latest HFSLIP I posted here: http://www.msfn.org/board/topic/163230-new-hfslip-1710-beta-k-v9-build-20150818/ ? I would suggest trying to do first a basic HFSLIP procedure without any hacks and FDVFiles and see if the slipstreaming of the German localized Windows XP setup with all PosReady updates works without problems. I have no experience using FDVFiles and can not give any support using that method.
  24. Yes, I suspect you have some malware infection on your current installation. Installing SP4 on top of it will not fix this issue, as it will only update the Windows system components, but not get rid of the infection. I suggest backing up any important files, license keys and set up a fresh partition to use, or another empty hard disc to install your original Windows XP to. Then after having installed a clean copy of Windows XP you can install SP4 on top of it.
×
×
  • Create New...