Interface Posted July 4, 2004 Posted July 4, 2004 I have created my unattented XP CD ,,,Winzip is a bug now ....Iam using runonceex,REG ADD %KEY%\020 /VE /D "Winzip 9 Full" /fREG ADD %KEY%\020 /V 1 /D "%Programfiles%\winzip\winzip32.exe /notip /autoinstall" /fREG ADD %KEY%\030 /VE /D "Microsoft Hotfixes and Patches" /fREG ADD %KEY%\030 /V 1 /D "%systemdrive%\install\Hotfix\KB823980.exe /q /u /o /n /z" /fREG ADD %KEY%\030 /V 2 /D "%systemdrive%\install\Hotfix\KB835732.EXE /q /u /o /n /z" /f REG ADD %KEY%\020 /VE /D "Real One Player V2 Gold" /fREG ADD %KEY%\020 /V 1 /D "%systemdrive%\install\Applications\Real1\Real1r2G.exe -s" /fREG ADD %KEY%\025 /VE /D "MSN Messanger 6.2" /fREG ADD %KEY%\025 /V 1 /D "%systemdrive%\install\Applications\MSN\MsnMsgs.msi /QB" /f I use $progs to copy winzip diractory cmdlines.txt for runonceexCmdlines.txt[COMMANDS]"REGEDIT /S winzipr.reg""RunOnceEx.cmd" After installation, all other application are instlling fine only Winzip , I can see winzip diractory under Program filesbut not installting please help me
^_^ Posted July 5, 2004 Posted July 5, 2004 I used ECHO.ECHO Installing WinZip ECHO Please wait... start /wait %systemdrive%\"Program Files"\winzip\winzip32.exe /noqp /notip /autoinstallecho Cleaning Up... Please Waitdel "%allusersprofile%\start menu\WinZip.lnk"del "%allusersprofile%\desktop\WinZip.lnk"that worked well for me, plus it deletes the id*** stuff on desktop and start menu :-)
Interface Posted July 5, 2004 Author Posted July 5, 2004 That's Correct and The Same code was working with me too. But it is a batch file under [Gugirunonce ] I am trying from runonceex with REG ADD REG ADD %KEY%\020 /VE /D "Winzip 9 Full" /f REG ADD %KEY%\020 /V 1 /D "%Programfiles%\winzip\winzip32.exe /notip /autoinstall" /fIts i belive there is a problem with ""(quotes) in %Program Files% or some thing like that.
^_^ Posted July 5, 2004 Posted July 5, 2004 That's Correct and The Same code was working with me too. But it is a batch file under [Gugirunonce ] I am trying from runonceex with REG ADD REG ADD %KEY%\020 /VE /D "Winzip 9 Full" /f REG ADD %KEY%\020 /V 1 /D "%Programfiles%\winzip\winzip32.exe /notip /autoinstall" /fIts i belive there is a problem with ""(quotes) in %Program Files% or some thing like that.I suspect it should be:REG ADD %KEY%\020 /VE /D "Winzip 9 Full" /f REG ADD %KEY%\020 /V 1 /D "%Programfiles%\winzip\winzip32.exe" /notip /autoinstall /fas the " is for filename, not switches
Interface Posted July 5, 2004 Author Posted July 5, 2004 Sorry.......Its my typing mistake,,,,,I tried that.... not working REG ADD %KEY%\020 /V 1 /D "%Programfiles%\winzip\winzip32.exe" /notip /autoinstall /f It was giving a error like cannot find c:\program files\winzip\winzip32.exe ..correct the path and try again...etc
Interface Posted July 5, 2004 Author Posted July 5, 2004 I manage to install winzip9 with the same command (REG ADD ) by calling a .cmd file . Entries in my Runonce.exe:REG ADD %KEY%\040 /VE /D "WinZip 9 Full" /fREG ADD %KEY%\040 /V 1 /D "%systemdrive%\install\WINZIP.cmd" /f My winzip.cmdECHO.ECHO Please wait...start /wait %systemdrive%\"Program Files"\WinZip\WINZIP32.EXE /notip /autoinstallecho. It works fine BUT Form ,%Porgram Files% I can't....Best regards.
MCT Posted July 5, 2004 Posted July 5, 2004 the variable isnt %program files% its %programfiles% without the spaceregards
yong2579 Posted July 6, 2004 Posted July 6, 2004 well i dun know if this is true or not, but i had the exact same problem' then i try to do a "SHIFT + F10" on the T-13 when it's running the cmdlines.txt (I place a "CMD /C PAUSE" in cmdlines.txt to pause it). This will start command prompt and allow me to check out "Program files". Then i discover there is not WINZIP Folder although i place it in $oem$\$progs! (C:\Program Files\Winzip is not valid). This explains why winzip will not install. I'm intending on an xcopy command instead of $progs tomorrow.
yong2579 Posted July 6, 2004 Posted July 6, 2004 Oh ya, Winzip get copy over in the end cause if i allowed it to continue installing, after installation, i check out C:\program files\winzip and the folder is there. This mean that $oem$\$progs\winzip get copy over to %programfiles%\winzip only after T-13 mark which is sadly after cmdlines.txt has been processed. Although MSFN says that $progs get copied over during dos copying process, but however from wat i discovered, this isn't true, please correct me if i'm wrong.
^_^ Posted July 7, 2004 Posted July 7, 2004 I used ECHO.ECHO Installing WinZip ECHO Please wait... start /wait %systemdrive%\"Program Files"\winzip\winzip32.exe /noqp /notip /autoinstallecho Cleaning Up... Please Waitdel "%allusersprofile%\start menu\WinZip.lnk"del "%allusersprofile%\desktop\WinZip.lnk"that worked well for me, plus it deletes the id*** stuff on desktop and start menu :-)ok, to make this one work, you HAVE to put a folder called $Progs in your $OEM$ folder so that it copies it to your windows installation in the Program Files folder, then the following code will workstart /wait %systemdrive%\"Program Files"\winzip\winzip32.exe /noqp /notip /autoinstall
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now