Jump to content

Acheron

Member
  • Posts

    1,077
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by Acheron

  1. I have created an lite Dutch package, cause I don't need those CD-wizard and other English tools to be added to my cd. As base I used the 1.0.1a lite package and altered it a bit by looking at the changelog. You can use my package as a reference to what you want. Note that 1.0.3lite is twice as big as 1.01a
  2. What do you mean with Mass Storage Device? Those USB 2.0 External Hard Disc Devices or also removable storage device like my digi cam. Can I install these over SP 1.6.2?
  3. Incroyable Hulk, you are referring to install using batch files? Then you should post the second command line I posted Or meaby you can explain to people how to use these tweaks in svcpack.inf? BTW, posted this one before http://www.msfn.org/board/index.php?act=ST...ndpost&p=178678
  4. I have succesfully tested the following switch in SVCPack.inf for the POST-SP1 update "KB832483 -› Buffer overrun in an MDAC function could allow code execution": "KB832483.exe /C:""dahotfix.exe /q /n"" /q:a" Notice the double quotes!!! For unattended installation during batch you can use the following command: KB832483.exe /C:"dahotfix.exe /q /n" /q:a Please update the thread to make it no exclusion anymore
  5. ;Show custom theme instead of luna at user logon window [HKEY_USERS\.DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\ThemeManager] "WCreatedUser"="1" "LoadedBefore"="1" "LMVersion"="103" "ThemeActive"="1" "Dllname"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,\ 74,00,25,00,5c,00,52,00,65,00,73,00,6f,00,75,00,72,00,63,00,65,00,73,00,5c,\ 00,74,00,68,00,65,00,6d,00,65,00,73,00,5c,00,57,00,55,00,52,00,50,00,53,00,\ 44,00,61,00,72,00,6b,00,5c,00,57,00,55,00,52,00,50,00,53,00,44,00,61,00,72,\ 00,6b,00,2e,00,6d,00,73,00,73,00,74,00,79,00,6c,00,65,00,73,00,00,00 "LastUserLangID"="1043" "ColorName"="NormalColor" "SizeName"="NormalSize" Use this tweak. Export the right value for Dllname from registry. The "Dllname" showed here is: %SystemRoot%\Resources\themes\WURPSDark\WURPSDark.msstyles
  6. You can create a new win.ini and place it in the $OEM$\$$ of your unattended CD
  7. Calc.exe doesn't use the registry but win.ini to save it's settings. More strange is the usage of the tweak: [SciCalc] layout=0 Add these lines to win.ini to get calculator started as scientific : B)
  8. Done testing, it works perfectly. I can create update packages myself by now
  9. RyanVM Update Pack 1.03 Lite NL Warning: This update package is only mentioned to use with Dutch Windows XP (Not MUI) Changelog 1.01 Lite -> 1.03 Lite NL Added KB834707 Hotfix Removed CMD file in favor of using InstalledBy/InstalledDate strings for pack tagging. This change will have no impact on whether or not Windows recognizes the hotfixes as installed. Added KB885932 Hotfix Added KB887078 Hotfix Fixed an issue with the wrong MSXML4 DLL being included. Made sysoc.inf a separate download since the XP Home version differs from the XP Pro version. Removed CMDOW.EXE Download: RyanVM's Update Pack 1.03 Lite NL.cab 8.0 MB Download is supported by Tweakers.net
  10. Ryan, are you gonna release a new Lite version of the language pack soon, so I can translate it to Dutch. I'm waiting for it Never mind. I'm making my own update pack now.
  11. I use also the official msi from Sun, but with these commands during RunOnceEx: REG ADD %KEY%\002 /VE /D "Sun Java VM 5.0" /f REG ADD %KEY%\002 /V 1 /D "%CDDRIVE%install\SunJava\jre50.msi /qb Reboot=ReallySuppress /quiet /passive /norestart ADDLOCAL=jrecore,extra IEXPLORER=1 MOZILLA=1 JAVAUPDATE=0 WEBSTARTICON=0 SYSTRAY=0" /f Works perfectly and system doesn't reboot!
  12. You can, but you must proceed doing it in these steps, or installation will fail: 1. rename notepad2.exe to notepad.exe 2. use modifype.exe to add crc checksumdata to notepad.exe 3. makecab the file to notepad.ex_ and replace it on your cd. Have fun with it!
  13. Notepad2 is what I use. It can also read unicode files
  14. You can just copy mplayerc.exe to a directory. But I prefer to install Quicktime Alternative and Real Alternative. There it is already included with. From runonceex.cmd I use the following command to register all filetypes with Media Player Classic: REG ADD %KEY%\012 /VE /D "Quicktime Alternative 1.38" /f REG ADD %KEY%\012 /V 1 /D "%CDDRIVE%install\Quicktime\quicktimealt138.exe /VERYSILENT" /f REG ADD %KEY%\013 /VE /D "Real Alternative 1.28" /f REG ADD %KEY%\013 /V 1 /D "%CDDRIVE%install\Real\realalt128.exe /VERYSILENT" /f REG ADD %KEY%\013 /V 2 /D "\"%programfiles%\Media Player Classic\mplayerc.exe\" /regaud /regvid" /f Look at the backslashes!!
  15. I had also problems with the simple script from msfn.org. So I'm also using setx to make an extra system variable: cmdlines.txt [COMMANDS] "Prepare.cmd" "setx cdrom -k HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\SourcePath -m" "RUNonceEx.cmd" "REGEDIT /S tweaks.reg" "bootcfg /timeout 0" setx is placed in $oem$\$$\System32 Here's a part out of my RunOnceEx.cmd script: cmdow @ /HID @echo off IF EXIST C:\win51ip.SP2 set CDDRIVE=C:\ IF EXIST D:\win51ip.SP2 set CDDRIVE=D:\ IF EXIST E:\win51ip.SP2 set CDDRIVE=E:\ IF EXIST F:\win51ip.SP2 set CDDRIVE=F:\ IF EXIST G:\win51ip.SP2 set CDDRIVE=G:\ IF EXIST H:\win51ip.SP2 set CDDRIVE=H:\ IF EXIST I:\win51ip.SP2 set CDDRIVE=I:\ IF EXIST J:\win51ip.SP2 set CDDRIVE=J:\ IF EXIST K:\win51ip.SP2 set CDDRIVE=K:\ IF EXIST L:\win51ip.SP2 set CDDRIVE=L:\ IF EXIST M:\win51ip.SP2 set CDDRIVE=M:\ IF EXIST N:\win51ip.SP2 set CDDRIVE=N:\ IF EXIST O:\win51ip.SP2 set CDDRIVE=O:\ IF EXIST P:\win51ip.SP2 set CDDRIVE=P:\ IF EXIST Q:\win51ip.SP2 set CDDRIVE=Q:\ IF EXIST R:\win51ip.SP2 set CDDRIVE=R:\ IF EXIST S:\win51ip.SP2 set CDDRIVE=S:\ IF EXIST T:\win51ip.SP2 set CDDRIVE=T:\ IF EXIST U:\win51ip.SP2 set CDDRIVE=U:\ IF EXIST V:\win51ip.SP2 set CDDRIVE=V:\ IF EXIST W:\win51ip.SP2 set CDDRIVE=W:\ IF EXIST X:\win51ip.SP2 set CDDRIVE=X:\ IF EXIST Y:\win51ip.SP2 set CDDRIVE=Y:\ IF EXIST Z:\win51ip.SP2 set CDDRIVE=Z:\ SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installatie van software" /f REG ADD %KEY%\001 /VE /D "Microsoft .Net Framework 1.1 SP1" /f REG ADD %KEY%\001 /V 1 /D "%CDDRIVE%install\dotNetFramework\install.cmd" /f REG ADD %KEY%\002 /VE /D "Sun Java VM 5.0" /f REG ADD %KEY%\002 /V 1 /D "%CDDRIVE%install\SunJava\jre50.msi /qb Reboot=ReallySuppress /quiet /passive /norestart ADDLOCAL=jrecore,extra IEXPLORER=1 MOZILLA=1 JAVAUPDATE=0 WEBSTARTICON=0 SYSTRAY=0" /f REG ADD %KEY%\003 /VE /D "AutoDesk Architectural Desktop 2005" /f REG ADD %KEY%\003 /V 1 /D "%CDDRIVE%install\autocad\install.cmd" /f REG ADD %KEY%\004 /VE /D "Jasc Paint Shop Pro 9" /f Now in batchfiles which are being hailed I can use %cdrom%: dotnetframework.cmd cmdow @ /HID 7za x -y -o%temp% %cdrom%install\dotnetframework\netfxsp1nl.7z %temp%\netfx.msi /qb %cdrom%install\dotnetframework\langpack.exe /C:"inst.exe /qb /n" /q:a del /F /Q "%allusersprofile%\Menu Start\Programma's\Systeembeheer\Microsoft .NET Framework 1.1 Configuration.lnk" del /F /Q "%allusersprofile%\Menu Start\Programma's\Systeembeheer\Microsoft .NET Framework 1.1 Wizards.lnk" RD /S /Q %temp% exit It works!
  16. Acheron

    can't repair xp

    It's because your cd is unattended. Please don't use the unattended setting in nLite
  17. Acheron

    can't repair xp

    Press F10 when the Blue window appears. It has nothing to do with nLite
  18. I don't know. I have no Raid or SATA-devices in my PC. Here's what I see when I press F6: When pressing E: Do you see this screens?
  19. I have an working winnt.sif file used in combination with an unattended nlited XPCD which allows me to press F6 Do you mind if I post it here: ;SetupMgrTag [Data] AutoPartition=0 MsDosInitiated="0" UnattendedInstall="Yes" [Unattended] DisableDynamicUpdates=Yes UnattendMode=FullUnattended OemPreinstall=Yes OemSkipEula=Yes Repartition=No FileSystem=* UnattendSwitch=Yes WaitForReboot=No DriverSigningPolicy=Ignore NonDriverSigningPolicy=Ignore TargetPath=\WINDOWS OemPnPDriversPath="Drivers\001_nvidia_display;Drivers\002_realtek_lan;Drivers\003_cmedia_audio;Drivers\004_medion_tv;" [GuiUnattended] OemSkipWelcome=1 AdminPassword=XXXXXXXXXXXXXXXXXXXXXXXXX EncryptedAdminPassword=Yes DetachedProgram=autoit3.exe Arguments="%systemdrive%\transparent.au3" AutoLogon=Yes AutoLogonCount=1 OEMSkipRegional=1 TimeZone=105 [Shell] CustomDefaultThemeFile="%WinDir%\Resources\Themes\WURPSDark.theme" DefaultStartPanelOff=Yes [SystemFileProtection] SFCQuota=0 SFCScan=0 SFCDisable=ffffff9d [UserData] ProductKey=XXXXX-XXXXX-XXXXX-XXXXXX-XXXXX FullName="Klaas Nekeman" OrgName="" ComputerName=Boven [Display] BitsPerPel=32 Xresolution=1280 YResolution=1024 Vrefresh=75 [TapiLocation] CountryCode=31 Dialing=Tone [RegionalSettings] Language = 0413 LanguageGroup = 1 SystemLocale = 0413 UserLocale = 0413 UserLocale_DefaultUser = 0413 [Branding] BrandIEUsingUnattended=Yes [URL] Home_Page=http://www.google.nl/ [Proxy] Proxy_Enable=0 Use_Same_Proxy=0 [Identification] JoinWorkgroup=Thuis [Networking] InstallDefaultComponents=No [NetAdapters] Adapter1=params.Adapter1 [NetClients] MS_MSClient=params.MS_MSClient [NetServices] MS_SERVER=params.MS_SERVER [NetProtocols] MS_TCPIP=params.MS_TCPIP [params.MS_TCPIP] DNS=Yes UseDomainNameDevolution=No EnableLMHosts=Yes AdapterSections=params.MS_TCPIP.Adapter1 [params.MS_TCPIP.Adapter1] SpecificTo=Adapter1 DHCP=Yes WINS=No NetBIOSOptions=0
  20. You can use the RyanVM package for that case: http://www.ryanvm.net/msfn/updatepack.html
  21. [HKEY_USERS\S-1-5-21-1935655697-1450960922-725345543-1003_Classes\CLSID\{88C6C381-2E85-11D0-94DE-444553540000}\DefaultIcon] @="C:\\WINDOWS\\Resources\\Icons\\Icon_Package.icl,26" [HKEY_USERS\S-1-5-21-1935655697-1450960922-725345543-1003_Classes\CLSID\{F5175861-2688-11d0-9C5E-00AA00A45957}\DefaultIcon] @="C:\\WINDOWS\\Resources\\Icons\\Icon_Package.icl,29" [HKEY_USERS\S-1-5-21-1935655697-1450960922-725345543-1003_Classes\CLSID\{FF393560-C2A7-11CF-BFF4-444553540000}\DefaultIcon] @="C:\\WINDOWS\\Resources\\Icons\\Icon_Package.icl,28" [HKEY_USERS\S-1-5-21-1935655697-1450960922-725345543-1003_Classes\CLSID\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}\DefaultIcon] @="C:\\WINDOWS\\Resources\\Icons\\Icon_Package.icl,24" is only for current installation. Please change these keys to the following: [HKEY_CURRENT_USER\Classes\CLSID\{88C6C381-2E85-11D0-94DE-444553540000}\DefaultIcon] @="C:\\WINDOWS\\Resources\\Icons\\Icon_Package.icl,26" [HKEY_CURRENT_USER\Classes\CLSID\{F5175861-2688-11d0-9C5E-00AA00A45957}\DefaultIcon] @="C:\\WINDOWS\\Resources\\Icons\\Icon_Package.icl,29" [HKEY_CURRENT_USER\Classes\CLSID\{FF393560-C2A7-11CF-BFF4-444553540000}\DefaultIcon] @="C:\\WINDOWS\\Resources\\Icons\\Icon_Package.icl,28" [HKEY_CURRENT_USER\Classes\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}\DefaultIcon] @="C:\\WINDOWS\\Resources\\Icons\\Icon_Package.icl,24" But I doubt if it is the foldericons mentioned here. I don't change system icons regulary
  22. Use the lightly changed Windows 98 Logo. It's simple and effective. I don't want my Windows 98 to look like Windows XP
  23. Hi, Ryan your update pack lite is cool but the Windows Update files are English only. For the Dutch people I now have created the following packages: Dutch Windows Update files only: http://members.lycos.nl/hp38guser/Windows Update NL.zip (581 KB) For use on all future packages. RyanVM Update Package Lite 1.01a NL: http://members.lycos.nl/hp38guser/RVMUpdat...1.01aLiteNL.cab (3,91 MB) For use with nLite P.S. Use right click - save as... to download
  24. First you need is the English only driver package from nVidia The only files for install nVidia ForceWare drivers are than the following: NV4_DISP.CAT, NV4_DISP.INF and the files specified under [sourceDisksFiles] in the nv4_disp.inf. For example 66.81 beta needs the following: [SourceDisksFiles] nv4_mini.sys = 1 nvcod.dll = 1 nvsvc32.exe = 1 nv4_disp.dll = 2 nvoglnt.dll = 3 nvcpl.dll = 4 nvmctray.dll = 4 nvcpl.hlp = 4 nvwddi.dll = 4 nvnt4cpl.dll = 4 nvwcplen.hlp = 4 aliagp.sys = 6 Most of the times those files look compressed as the last letter is truncated. If folder size is more than 15 MB the files are not compressed. Rename those files back to original and do makecab them afterwards except the following: NV4_DISP.CAT NV4_DISP.INF Total driver size is then 9.0 MB This is for unattended installation or installation through Windows Hardware Config panel only.
×
×
  • Create New...