Jump to content

Bilou_Gateux

Member
  • Posts

    766
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Norway

Everything posted by Bilou_Gateux

  1. @rutger10000 Are you using this method: Making a Bootable Windows 2000 CD with Service Pack Integrated to get a 2K SP4 CD or are you using an original M$ OEM CD with SP4 already integrated to the source ?
  2. Microsoft Internet Explorer 6 Service Pack 1 (SP1) Version 6.0.2800.1106 French DirectX 9.0c Version (4.09.000.0904) Delete the existing <PREPDIR>CDROOT\I386\SVCPACK.IN_ file. Create a new SVCPACK.INF file at <PREPDIR>CDROOT\i386\Svcpack.inf Edit the <PREPDIR>CDROOT\I386\DOSNET.INF file by making the following changes: Add the svcpack folder name to the [OptionalSrcDirs] section: [OptionalSrcDirs] SVCPACK
  3. Copy and Past without some keyboard input will not convert a reg file (.reg) to a script (.cmd). You have to rewrite some parts: .REG ;Toujours décharger les DLL à la fermeture d'un programme [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer] "AlwaysUnloadDLL"=dword:00000001 .CMD ;Always Unload DLL's ;http://www.xs4all.nl/~laar2002/tweak/win98/unload-dll.html REG ADD "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "AlwaysUnloadDLL" /t REG_DWORD /d 1 /f Do you see the light
  4. You should add some quotation marks " to make it works but i have not figured where to put them. Silent install: ie6setup.exe /Q:A /R:N [/C:"ie6wzd /S:""#e"" /Q:A /R:N"] section in brackets not mandatory Yes, you can switch from your reg file to a batch file using REG.EXE tool commands, and launch it from CMDLINES.TXT. one example i use CMDLINES.TXT [Commands] ".\PISTART.EXE .\filedisk.cmd" ".\PISTART.EXE .\memmgmt.cmd" ".\PISTART.EXE .\explorer.cmd" ".\PISTART.EXE .\icw.cmd" ".\PISTART.EXE .\srvwiz.cmd" ".\PISTART.EXE .\gditool.cmd" ".\PISTART.EXE .\regopts.cmd" ".\muiinst\muisetup.exe /i 040c /d 040c /r /s" ".\muiinst\IEUI2KFR.EXE" FILEDISK.CMD ECHO OFF :: FileDisk is a virtual disk driver for Windows NT/2000/XP that uses one or more files to emulate physical disks. :: http://www.acc.umu.se/~bosse/ INSTDRVW.EXE FileDisk %SYSTEMROOT%\SYSTEM32\DRIVERS\filedisk.sys :: Set Number of Devices REG ADD "HKLM\SYSTEM\CurrentControlSet\Services\FileDisk\Parameters" /v NumberOfDevices /t REG_DWORD /d 4 /f PISTART.EXE is an OEM tool from my notebook manufacturer which launch CMD scripts hidden. Same result as using cmdow @ /HID in your script. INSTDRVW.EXE is a tool to install a kernel-mode device driver. MEMMGMT.CMD ECHO OFF :: Memory Management :: http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/regentry/29931.asp REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "ClearPageFileAtShutdown" /t REG_DWORD /d 1 /f REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "DisablePagingExecutive" /t REG_DWORD /d 1 /f REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "IoPageLockLimit" /t REG_DWORD /d 68000 /f REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "LargeSystemCache" /t REG_DWORD /d 0 /f EXPLORER.CMD ECHO OFF :: settings for explorer, full path in header REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState" /v "Settings" /t REG_BINARY /d "0c0002000b01002060000000" /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState" /v "FullPath" /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState" /v "FullPathAddress" /t REG_DWORD /d 1 /f :: Explorer Custom Settings :: isg.ee.ethz.ch/tools/realmen/down/tune-default-user.reg REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Hidden" /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCompColor" /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "DontPrettyPath" /t REG_DWORD /d 0 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowInfoTip" /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideIcons" /t REG_DWORD /d 0 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "MapNetDrvBtn" /t REG_DWORD /d 0 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "WebView" /t REG_DWORD /d 0 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Filter" /t REG_DWORD /d 0 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SuperHidden" /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SeparateProcess" /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "StartMenuInit" /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowSuperHidden" /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ClassicViewState" /t REG_DWORD /d 1 /f ICW.CMD ECHO OFF :: Windows 2000 Registry: System and Startup Settings :: http://support.microsoft.com/?kbid=250380 :: Remove Internet Connection Wizard from the Desktop in Windows 2000 REG ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce /v "^SetupICWDesktop" /t REG_SZ /d "||icwconn1.exe /restoredesktop" /f REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Welcome\ICW /f REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Welcome\ICW /v "@" /t REG_DWORD /d 1 /f SRVWIZ.CMD ECHO OFF :: Windows 2000 Registry: System and Startup Settings :: http://www.microsoft.com/technet/prodtechnol/windows2000serv/maintain/featusability/systeman.mspx :: Suppress the Windows 2000 Configure Your Server Wizard REG ADD "HKCU\Software\Microsoft\Windows NT\CurrentVersion\Setup\Welcome" /v srvwiz /t REG_DWORD /d 0 /f GDITOOL.CMD ECHO OFF :: http://support.microsoft.com/kb/873374/en-us :: Set Microsoft GDI+ Detection Tool to completed REG ADD "HKLM\SOFTWARE\Microsoft\GdiDetectionTool" /v "GDITool" /t REG_DWORD /d "00000001" /f REGOPTS.CMD :: http://www.microsoft.com/resources/documentation/Windows/XP/all/reskit/en-us/Default.asp?url=/resources/documentation/Windows/XP/all/reskit/en-us/prff_mul_mbou.asp :: Changing Language and Regional Options rundll32.exe shell32,Control_RunDLL intl.cpl,,/f:"c:\winnt\system32\$winnt$.inf" :: Time Zone Brussels, Copenhagen, Madrid, Paris RUNDLL32.EXE SHELL32.DLL,Control_RunDLL TIMEDATE.CPL,,/Z (GMT+01:00) Brussels $winnt$.inf [RegionalSettings] LanguageGroup=1 Language=040c SystemLocale=040c UserLocale=040c InputLocale=040c:0000040c UserLocale_DefaultUser=040c InputLocale_DefaultUser=040c:0000040c MUILanguage=040c MUILanguage_DefaultUser=040c
  5. Install MS Java on WIndows 2000 SP4 , How To Install MS Java on a W2K SP4 Posted by Nastradamus, Jan 27 2004, 07:57 AM
  6. You can add in SVC-HF1: WindowsXP-KB873339-x86-ENU.exe WindowsXP-KB885835-x86-ENU.exe WindowsXP-KB885836-x86-ENU.exe I have build a 2KCreate CD with the same HotFixes for Windows 2000 and install it on a real box without any problem. WindowsXP-KB886185-x86-enu.exe it's Windows XP Service Pack 2 software update package. Can't say if it will works but it shouldn't create any problem, only two files are updated. Please report success or failure to help others XPCreate users.
  7. Batch file to download all the hotfixes with BITS. In order to download HFs, you will need both files in same directory: 2KX86lng.TXT Each line in TextFile contains a remote and local file name. The names are space-delimited. Lines that begin with a # character are treated as a comment. CREATEQ.CMD checks first if BITSADMIN.EXE is available and then creates a new instance of DWNLD.CMD batch file. Running this program allow you to: Creates a new transfer job with given job name. A new job starts in a suspended state. Appropriate files are added to the new job with specified local destination and remote source file name in FileSetList And starts the job with ResumeJob. Then any actual transfers will occur. BITS runs in the background, so the batch script only start job. Once a job has completed transferring file(s) down to the local machine, those files are not available to the user until the job is acknowledged through a call to the Complete method. BITSADMIN /COMPLETE job You can use the State property to determine the current status of a job. BITSADMIN /GETSTATE job Regardless of the specific status, you obtain the current progress of a job through the Progress property, which returns the bytes transferred/bytes total and files transferred/files total values, enabling you to determine a percentage of work that has been done. BITSADMIN /GETBYTESTRANSFERRED job BITSADMIN /GETFILESTRANSFERRED job
  8. @BaTLeZone What is the best choice for MSXML3. As it's a msi package, i'm not sure if we can install it from SVCPACK without first repackaging it. Microsoft Calculator Plus (includes mathematical and conversion functions) It's not a critical update and isn't listed as recommended update in WindowsUpdate. Maybe you can add it like Journal viewer.
  9. @to all happy fews still using the best ever released version of Windows by M$ I will try to summarize all the problems encountered to create a 2K CD with 2KCreate current version from these 8 pages. see on first page. And i'm currently working of a kind of RyanVM pack for Windows 2000 SP4 HotFixes (only the Hotfixes starting with Windows2000-KBxxxxxx-x86-xxx.exe in SVC-HF1 folder). Not decided of his name at the moment. Create a single package for others components (MDAC, IE6, OE6, ...) isn't planned but will try to use tommyp altered but similar method to update the source. I will probably definitively switch to tommyp method in 2005.
  10. Do you plan to apply: Cumulative Update for Outlook Express 6 Service Pack 1 (KB887797) Date Published: 12/14/2004 This non-security update helps resolve various issues found in Outlook Express.
  11. infos related to IE6SP1 slipstream into W2K source moved Microsoft Internet Explorer 6 Service Pack 1 (SP1) Version 6.0.2800.1106
  12. Thanks tommyp. I'm currently use the standard 2KCreate method to help other 2K users to build a full patched CD without altering some DLL's. yes it seems that 2K install faster when WFP is not active using fdv modified DLL's. and the source directory becomes smaller using IE6 slipstreamed to source instead of 2K IE5 original files + IE6 package + numerous fixes. First page updated You can now find here Internet Explorer 6 Service Pack 1 (SP1) detailled infos, downloads, and issues.
  13. @GM How to "integrate" (that's not really true) the OE recommended update 887797 into 2KCreate. As mentionned before, 887797 (Type 1 HotFix) must be installed after 823353 (Type 2 HotFix). In my first attempt, i have simply added 887797 in SVC-HF1, build a 2KCreate CD The 4 files from 887797 were compressed and copied in i386 during the 2KCreate build process and SVCPACK.INF modified accordingly. But using this method, install hangs during the file copy: 823353 when executed from SVCPACK.INF try to owerwrite newer files from 887797 integrated to the i386 source and already run before from SVCPACK.INF. Here come the solution: Edit SVCPACK.INF stored in NEWFILES folder, change the order of execution to put 887797.EXE just after 823353.EXE, recompress to i386 SVCPACK.IN_ Overwrites the updated 4 files from 887797 2KCreate copy compressed in i386 folder with the 4 original files from your 2K source CD. Now you can install a full patched Win2K CD without hangs. Until GreenMachine reworks the XPCreate code to solve the 887797 problem and the 841356 problem, 2Kcreate is no longer without user interaction and you must do some manual modifications before creating the ISO and burn it. These problems were first introduced since Microsoft take the decision to release hotfixes type 1 to update dlls from components (IE6) thats are not included in the original 2K Gold version. Each new security hotfix will probably create news problems and give GM more works to find a clean solution. @maxXPsoft the list isn't yet updated and the download link is down. i will update it soon. Yes, i have used a similar method than the one your suggest to download all the Hotfixes and put them in the SVC-XXX folders. Using the "download before" method you need to have nethertheless an active Internet connection during 2Kcreate build process to download IE6SETUP.EXE and components. And you have to build your own DirectX9c package or use DX9NTOPK.EXE (9b) package. Use Background Intelligent Transfer Service (BITS) to download all hotfixes using XPCTHLST.TXT. To install 2K full unattended, i use a basic WINNT.SIF and modify SETUPPP.INI to turn the product into Corporate version (no need to use Product Key for installation) I turn the HOTFIXES in their 8.3 shortname for readability for all the HF's (HF2, POS,DAH, some HF1 starting with IE6.0SP1) except for HF1 starting with Windows2000... 2KCreate renames them in their short name automatically @GM I will ask you to make a very little modification in you code for the next version to turn the IE6 download feature (ALWAYS YES if IE6SP1 not found locally) to selectable through XPCREATE.INI. SET GETIE6=YES .../... IF NOT "%GETIE6%"=="YES" GOTO EOF
  14. Successfully build a 2KCreate CD and install on a real box. WindowsUpdate gives me 0 critical updates and 3 recommended updates. But that is what i want because i don't install .NET Framework, Journal Viewer and install DirectX 9.0b (4.09.0000.0902) Problem with 887797 integration solved ! I will post ASAP how to.
  15. YES, thanks to GreenMachine 2KCreate, you can install ALL the HotFixes from SVCPACK.INF. Actually, 2KCreate could not handle correctly the 841356 HotFix and as mentionned before, i'm still investigating how to integrate last recommended update 887797 for OE6. Problem with 887797 integration solved !
  16. Don't waste your time with 814078, switch to SCRIPTFR.EXE thanks to urgan for reporting the difference in versions here in IE6 SP1 (scripten.cab) the jscript.dll is 5.6.0.6626 in 814078 (JS56NFR.EXE) the jscript.dll is 5.6.0.8513 SCRIPTFR.INF DriverVer = 08-09-2004, 5.6.0.8825 Product = "Microsoft Windows Script 5.6"
  17. I have already encountered same problems as you with IE6SP1 and 814078. From my experience, i'm supposing is due to the order the updates and ie6setup are launched and dll registered. script version included in IE6 package should be registered first before 814078 try to update dll's. Rather than installing Internet Explorer 6 Service Pack 1 (SP1) from cmdlines.txt, install it from SVCPACK.INF. Copy all needed files in your i386\SVCPACK BRANDING.CAB CRLUPD.CAB filelist.dat ie6setup.exe IEEXINST.CAB iesetup.ini IEW2K_1.CAB IEW2K_2.CAB IEW2K_3.CAB IEW2K_4.CAB MAILNEWS.CAB MPLAY2U.CAB OEEXCEP.CAB WAB.CAB SCRIPTFR.EXE IE6START.EXE That all the files needed for silent installation of IE6SP1. SCRIPTFR.EXE, it's a more recent update (replacement) than 814078. Don't forget to remove KB814078.EXE from your SVCPACK folder. IE6START.EXE is an iexpress package (a creation from GreenMachine 2KCreate) which do the following: START "RunOnce" /WAIT RUNDLL32.EXE IERNONCE.DLL,RunOnceExProcess The SVCPACK.INF looks like [Version] Signature="$Windows NT$" MajorVersion=5 MinorVersion=0 BuildNumber=2195 [SetupData] CatalogSubDir="\i386\svcpack" [SetupHotfixesToRun] DX9NTOPK.EXE /Q:A /R:N IE6SETUP.EXE /Q:A /R:N IE6START.EXE /Q:A /R:N <<< GreenMachine package >>> <<< all HotFixes type 1 here. Silent switch: /Q /U /O /N /Z >>> 889669.EXE /Q /U /O /N /Z <<< IE6 HotFix corporate version of 889293 >>> GDITOOL.EXE /Q:A /R:N <<< Repackaged, now silent >>> KB833989.EXE /Q:A /R:N <<< IE6 HotFix >>> KB870669.EXE /Q:A /R:N ROOTSUPD.EXE /Q:A /R:N SCRIPTFR.EXE /Q:A /R:N "MDAC_TYP.EXE /Q:A /R:N /C:""DAHOTFIX.EXE /Q /N""" "Q832483.EXE /Q:A /R:N /C:""DAHOTFIX.EXE /Q /N""" KB823353.EXE /Q:A /R:N <<< OE6 HotFix >>> QCHAIN.EXE [ProductCatalogsToInstall] Download links for the needed files for IE6SP1 Win2K only Windows 2K Security Updates for 2KCreate by GreenMachine Create a silent GDITOOL.EXE package here About IE6START.EXE, previously IE6GO.EXE
  18. Problems installing KB887797 over KB823353 Outlook Express for Windows update available Download details: Cumulative Update for Outlook Express 6 Service Pack 1 (KB887797) Date Published: 12/14/2004 This non-security update helps resolve various issues found in Outlook Express. IE6.0sp1-KB887797-Windows-2000-XP-x86-ENU.exe IE6.0sp1-KB887797-Windows-2000-XP-x86-DEU.exe IE6.0sp1-KB887797-Windows-2000-XP-x86-FRA.exe Don't works if you copy this update in SVC-HF1. Need to install it after KB823353 because KB887797 updates 4 files already updated by KB823353. Otherwise, you would have registration errors for 3 dll's: inetcomm.dll ; msoe.dll ; wab32.dll during install. File Information Details here MAILNEWS.CAB + WAB32.CAB (from IE6 SP1 package) inetcomm.dll 6.0.2800.1106 msoe.dll 6.0.2800.1106 wab32.dll 6.0.2800.1106 wabimp.dll 6.0.2800.1106 Temporary solution: Put KB887797 in SVC-EXE After XPCreation and before ISO'ing and burning: 1/ edit SVCPACK.INF and add silent switch to Hotfix KB887797.EXE /Q /U /O /N /Z 2/ copy KB887797.CAT to CDROOT\I386\SVCPACK
  19. @tdk90 Welcome to MSFN forum. I hightly suggest you to have a try with 2KCreate which can help you to build a 2K source CD with all hotfixes already "slipstreamed" or Integrated in the install. If you're using SQL Server 2000 Personal Edition or MSDE, you can add MDAC 2.7 SP1 Refresh. MSXML 4.0 SP2 does not replace MSXML 3.0 because some obsolete and non-conformant features are no longer supported. You may run MSXML 4.0 and MSXML 3.0 and earlier versions concurrently.Nethertheless: Windows 2K Security updates for use with 2KCreate (XPCreate) keep both OE updates and only corporate IE update
  20. As the download URL is not available since a long time, the list isn't updated. But i will try to edit the post, remove all the obsolete infos and update the list in order 2KCreate builders can use it as reference. I just build a new 2KCreate CD with the last ones and install it on a real box but i forget to include the recommended update for OE KB887797. I will first rebuild a new 2KCreate to check and then update the list...
  21. @Incroyable HULK Typo error on last Windows 2000/XP Hotfixes. Correct: KB873339 = MS04-043: Vulnerability in HyperTerminal could allow code execution What we actually can read: Vulnerabilities in Windows Kernel and LSASS could allow elevation of privilege Erreur de Copier-Coller
  22. For More Information Windows Security Updates Summary for December 2004 ADD SVC-HF1\Windows2000-KB<hotfix_nb>-x86-<language>.exe | MD5 Hash Windows2000-KB885835-x86-ENU.EXE CACDB9399AB45B9B65ACB0E73D555C37 Windows2000-KB885836-x86-ENU.EXE 7C1157F5670D9FB98BF631F4D0178199 Windows2000-KB873339-x86-ENU.EXE 52B852B439DD55967CA47B3A59C586A1 @Strong Bad Although it's not a Critical Update related to security and not reported by WindowsUpdate, it may be interesting to slipstream this file to the source CD.
  23. Ghost 8 Corporate UniCast/MultiCast with a Ghost Server. I use a mix of Universal TCP/IP Network Bootdisk + Super MS-DOS 7.10 Boot Disk saved as IMG file and installed on a PXELINUX installed on a Win2K3 server with TFTP and DHCP services configured. Client computers should have PXE compliant NIC (that's not the case of my own notebook). Off topic because we're talking about Multi-boot CD/DVDs but the image of this disk could be used in a multiboot CD.
  24. Can you post some of your scripts and their purpose. I will be interested to use them instead of the built-in dispart.exe from M$.
×
×
  • Create New...