Jump to content

Acheron

Member
  • Posts

    1,077
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by Acheron

  1. I do use the following regtweak at T12: ;Pagingfile on D: 512 MB [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management] "PagingFiles"=hex(7):44,00,3a,00,5c,00,70,00,61,00,67,00,65,00,66,00,69,00,6c,\ 00,65,00,2e,00,73,00,79,00,73,00,20,00,35,00,31,00,32,00,20,00,35,00,31,00,\ 32,00,00,00,00,00 To remove the one created by setup I use this in cleanup.cmd attrib -h -s "%systemdrive%\pagefile.sys" DEL /F /Q "%systemdrive%\pagefile.sys" cleanup.cmd is hailed during RunOnceEx REG ADD %KEY%\028 /VE /D "Removing pagefile" /f REG ADD %KEY%\028 /V 1 /D "%systemdrive%\install\cleanup.cmd" /f Simple and effective
  2. Problew still exists: office2_task(0001).txt: Actie gestart 17:05:35: PublishProduct. Actie beëindigd 17:05:35: PublishProduct. Retourwaarde 1. Actie gestart 17:05:35: InstallExecute. MSI (s) (20:00) [17:06:44:609]: Product: Microsoft Office Professional Editie 2003 -- Fout 1308. Setup kan het vereiste bestand C:\Office\FILES\PFILES\MSFT.NET\PIAS\111362 niet vinden. Controleer de verbinding met het netwerk of het cd-rom-station. Zie C:\Office\FILES\PFILES\MSOFFICE\OFFICE11\1043\SETUP.CHM voor andere mogelijke oplossingen voor dit probleem. Fout 1308. Setup kan het vereiste bestand C:\Office\FILES\PFILES\MSFT.NET\PIAS\111362 niet vinden. Controleer de verbinding met het netwerk of het cd-rom-station. Zie C:\Office\FILES\PFILES\MSOFFICE\OFFICE11\1043\SETUP.CHM voor andere mogelijke oplossingen voor dit probleem. MSI (s) (20:00) [17:06:58:843]: Product: Microsoft Office Professional Editie 2003 -- Fout 1308. Setup kan het vereiste bestand C:\Office\FILES\PFILES\MSFT.NET\PIAS\GAC\126444 niet vinden. Controleer de verbinding met het netwerk of het cd-rom-station. Zie C:\Office\FILES\PFILES\MSOFFICE\OFFICE11\1043\SETUP.CHM voor andere mogelijke oplossingen voor dit probleem. This is dutch office 2003 SP-1 + updates This happens after 85 MB is copied
  3. Hi, I'm using an Adminstrative Office 2003 Dutch slipstreamed with SP-1 and outllok spam update but I get stuck with the striping proces. First point. Dutch settings are incorrect with Windows XP SP-2: [Language] lang=Dutch dir=1043 retry=&Opnieuw title=Microsoft Office error=Fout [Directory] Office Source=C:\office\ Office Target=C:\office2003\ [Files] Office Setup EXE file=SETUP.EXE Office Setup MST file=unattended.mst [Version] Number=11.0.5510.0 should be fixed. Installation get stuck after 85 MB is copied over (About 140 MB to install I guess) Why? I need this fixed This goes on and on and on, so shrink stopped working I think. I think the files without extensions are the real problem here
  4. If yuo prefer to use the MSI you can use the following command (RunOncEx.cmd): REG ADD %KEY%\007 /VE /D "Sun Java VM 1.5.0 RC" /f REG ADD %KEY%\007 /V 1 /D "%systemdrive%\install\SunJava\jre150rc.msi /qb REBOOT=ReallySuppress" /f
  5. You can install the MDAC update from SVCPack.inf with the following command: "Q832483.exe /C:""dahotfix.exe /q /n"" /q:a" Meaby you can fix the startpost a little
  6. REG ADD %KEY%\021 /VE /D "Samsung ML-1210 Printer Driver" /f REG ADD %KEY%\021 /V 1 /D "rundll32 printui.dll,PrintUIEntry /ia /m \"Samsung ML-1200 Series\" /h \"Intel\" /v \"Windows 2000 of XP\" /f %systemdrive%\drivers\005_SAMSUNG_PRINTER\SSGS1.INF" /f REG ADD %KEY%\021 /V 2 /D "%systemdrive%\install\printer.vbs" /f Printer.vbs Set WshShell = WScript.CreateObject ("WScript.Shell") WshShell.Run ("rundll32 printui.dll,PrintUIEntry /in /n\\studeerkamer\samsung /q") WScript.Sleep 5000 WshShell.SendKeys "{ENTER}" WScript.Quit A dirty patch for the second one, cause the /q (quiet) function does not work (gives a warning) This should work. If no printer is connected during installation you have to do it later
  7. It's just a stupid trick: Protowall.vbs Set WshShell = WScript.CreateObject ("WScript.Shell") WshShell.Run ("%systemdrive%\install\Protowall\Protowall142.exe /VERYSILENT") WScript.Sleep 500 WshShell.SendKeys "{ENTER}" WScript.Quit It will install silent, except for the protowall service. It's not a big deal, but does someone know howto install the protowall service unattended cause the installer is broken.
  8. Hi, thank you all for your example scripts, now I have made one for Fly 2000 TV: Set WshShell = WScript.CreateObject ("WScript.Shell") WshShell.Run (".\FLY2000TV238B3.exe /S") WScript.Sleep 100 WshShell.SendKeys "{ENTER}" WScript.Sleep 1500 WshShell.SendKeys "{ENTER}" WScript.Sleep 100 WshShell.SendKeys "N" WScript.Quit This will install Fly 2000 TV 2.38 beta 3 quietly
×
×
  • Create New...