Jump to content

NikV2005

Member
  • Posts

    20
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Russian Federation

Everything posted by NikV2005

  1. acdsee.sfx: ACDSee_Pro.msi ACDSee_rus.msi comments: Setup=ACDSee_Pro.msi Setup=ACDSee_rus.msi TempMode Silent=1 Overwrite=1 After extracting files windows say: "Can't find ACDsee.msi" If i use this comments: Path=.\%temp% Setup=%temp%\acdsee\ACDSee_Pro.msi Setup=%temp%\acdsee\ACDSee_rus.msi Overwrite=1 Silent=1 Than everything ok. But what about tempmode ???
  2. Do you explain me what means strings "SetLocal enableextensions..and... EndLocal" ?
  3. Too bad. I crated ACDsee8.cmd and wrote it into runonce.cmd REG ADD %KEY%\015 /VE /D "ACDSee 8.0 rus" /f REG ADD %KEY%\015 /V 1 /D "%CDROM%\applications\Acdsee8\Acdsee8.cmd" /f Acdsee8.cmd: cmdow @ /HID @echo off for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\WIN51 set CDROM=%%i: cd /d %cdrom%\APPLICATIONS\Acdsee8 start /wait Acdsee8.exe exit Acdsee.exe content: Acdsee.msi, Acdsee_rus.msi, setup.bat. SFX comments:Path=.\%temp% Setup=%temp%\Acdsee8\setup.bat Overwrite=1 Silent=1 setup.bat: cd /d %temp%\Acdsee8 start /realtime /wait ACDSee_Pro.msi /passive start /realtime /wait ACDSee_rus.msi /passive exit When opening cmd window (Acdsee8.cmd) and starting extracting rar-sfx (Acdsee8.exe) runonce don't wait execution of ACDsee.msi and go to next commands
  4. Sorry, but my problem not in office(it executes fine). My problem is RUNONCEEX.(See first post)
  5. Yes, you understand me. Sorry for my misunderstanding (I mean this: runonce -> rar-sfx -> cmd(with /wait switch) -> msi -> runonce) I will try your way now and post the results some later (runonce -> cmd(with /wait switch) -> rar-sfx-> msi -> runonce)
  6. I tryed it. MSoffice still continued own installation after closing runonce window(installation completed successfully). Acdsee and SymantecAV don't want install again
  7. I' tryed it. And...no effect For example,Acdsee8.exe - rar-sfx archive with contains two msi files and one cmd which starts in series this msi's with start/wait switch. Runonce doesn't wait until cmd file will executes all two msi's, he go to next line and starts to execute next command(k-lite pack).
  8. Yes, you are right, but my problem isn't it. (comments for office sfx archive - only example) I mean that runonce doesn't wait execution of setup.exe (or setup.cmd or something else) after rar-sfx will be extracted, and processing the next line (next registry key in runonceex.cmd). I need to some pause (previos command must be fully complete) befor next commands will be executed. How can i do it ???
  9. Please, see attachment in this post
  10. My Runonceex.cmd calls by cmdlines ( [COMMANDS] "RunOnceEx.cmd") Acrobat, k-lite, acdsee8, symantec9, msoffice - RAR-sfx archives with some added comments: Path=.\%temp% Setup=%temp%\Office2003\setup.exe TRANSFORMS=options.MST /qb- (for example) Overwrite=1 Silent=1 Other (winrar,1C) - msi packages. When runonceex starts, winrar,1C,k-lite,acrobat install ok, but other rar-sfx archives(acdsee8,symantec9,msoffice) doesn't install (They only extract to %temp% folder ). I think there is some limits for number of commands in one line of runonceex Need help RunOnceEx.cmd
  11. Promise FastTrak S150 TX4 Controller Aftre booting from CD, the instllation process(blue screen with yellow process bar) loads drivers for this adapter into ram, but after that windows can't see any drives on this controller. I'd cheked http://www.uawiki.org/doku.php?id=wxp:ua:drivers:driverpacks:supported:massstorage:pr_tx4000. What does it mean ? Thanks.
  12. Windows server 2003 sp1 WINNTBBU.DLL syssetup: NOT FOUND
  13. Windows setup need's those files :HDAudBus.inf and HDAudio.inf Need help !!!
  14. Try to edit %Temp%\Nero7.tmp\Redist\Config\Config.txt Section: INCLUDE/EXCLUDE-LANGUAGES Edit [your language] text: INCEXCLNG [Your language] USER_LANG or INCEXCLNG [Your language] ALWAYS (ex: INCEXCLNG RUS USER_LANG)
  15. Hi. I create my Runonceex.cmd manually(without nlite) and place it(and other needed files) to winxp cd Here is the content: cmdow @ /HID @echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Applications and MUI" /f REG ADD %KEY%\005 /VE /D "Mapping network drives..." /f REG ADD %KEY%\005 /V 1 /D "%systemroot%\system32\map.cmd" /f REG ADD %KEY%\010 /VE /D "Applying OS settigs..." /f REG ADD %KEY%\010 /V 1 /D "REGEDIT /S %systemroot%\system32\os.reg" /f REG ADD %KEY%\015 /VE /D "Adobe Acrobat 5" /f REG ADD %KEY%\015 /V 1 /D "C:\install\acrobat.msi /qn" /f REG ADD %KEY%\020 /VE /D "ACDSee systems 4.0" /f REG ADD %KEY%\020 /V 1 /D "C:\install\ACDSee.msi /qn" /f REG ADD %KEY%\025 /VE /D "WinRAR 3.0" /f REG ADD %KEY%\025 /V 1 /D "C:\install\WinRaR.msi /qn" /f REG ADD %KEY%\030 /VE /D "1C company" /f REG ADD %KEY%\030 /V 1 /D "C:\install\1C.msi /qn" /f REG ADD %KEY%\035 /VE /D "MS Office 2003" /f REG ADD %KEY%\035 /V 1 /D "x:\office2003\setup.exe TRANSFORMS=Unattended.MST /qb-" /f REG ADD %KEY%\040 /VE /D "Russian MUI" /f REG ADD %KEY%\040 /V 1 /D "x:\applications\MUI\muisetup.exe /i 0419 /d 0419 /r /s" REG ADD %KEY%\045 /VE /D "Rebooting..." /f REG ADD %KEY%\045 /V 1 /D "%systemroot%\system32\shutdown.cmd" /f EXIT Unattended.MST created by msoffise ORK tools. Office version: Office2003sp2 with critical updates. Office distr placed in network location, but you can place it to CD ) It works )
  16. Hi to all I want to tell some steps which i tested (100% working on WinXPsp2. Nero build: Nero-7.0.5.4_rus_no_yt.exe) 1)Double Click on Nero-7.0.5.4_xxx_no_yt.exe Wait until you get to the window with licensing agreement (I followed install steps before "Click install to begin the installation" text and than closed install). After it close install. 2)Go to the temp folder (for your user profile). There you must locate folowing dir and files: Nero7.tmp nro.log nro.tmp 49a45b.msi 49a45c.mst 3)Go to Nero7.tmp->Redist->Config dir and locate config.txt Edit this file how do you want (I'd add serial and remove unwanted components).Save it after editing. 4)Edit Nero.msi with Installshield: Remove unwanted shortcuts On Property manager edit some values: NERO_SCOUT: FALSE ProductName : Nero7 (for example) SERIALNUM_CORRECT: TRUE SERIALNUM_USERVAL: (enter you serial) RebootYesNo: No Click SAVE and close Installshield. 5)Run Drive:\...\Nero7.tmp\Nero.msi STARTPARAM=CallFromExe DONOTRUNSETUPX=1 /qn /norestart 6)Yes, the Nero7.tmp is too large, but you can remove some files (it discribes in othes guieds (dont forget to edit nero.msi) ), package Nero7.tmp to rar(may be sfx) or 7z archive and write 2-3 commands in cmd file (Extracting archive and run Nero.msi with STARTPARAM=CallFromExe DONOTRUNSETUPX=1 /qn /norestart keys) Thank's.
  17. shark You are rigt ! Thank's, Shark007!!! As i think, after DONOTRUNSETUPX=1 following any msi switch ?
  18. After clicking on nero.msi setup fails with words " The installation program must start by SetupX.exe" What does it mean ?
  19. Hello anybody I use RIS service to deploy windowsXPSP2. I need to make automatically log on (by domain admin account) after Windows XP SP2 installation. Any ideas ??? Thanks.
×
×
  • Create New...