MSFN Forum: Problem with winzip 9 - MSFN Forum

Jump to content



Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Problem with winzip 9 Rate Topic: -----

#1 User is offline   Interface 

  • Newbie
  • Group: Members
  • Posts: 46
  • Joined: 29-June 04

Posted 04 July 2004 - 06:15 AM

I have created my unattented XP CD ,,,Winzip is a bug now ....Iam using runonceex,
REG ADD %KEY%\020 /VE /D "Winzip 9 Full" /f
REG ADD %KEY%\020 /V 1 /D "%Programfiles%\winzip\winzip32.exe /notip /autoinstall" /f

REG ADD %KEY%\030 /VE /D "Microsoft Hotfixes and Patches" /f
REG ADD %KEY%\030 /V 1 /D "%systemdrive%\install\Hotfix\KB823980.exe /q  /u /o /n /z" /f
REG 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" /f
REG ADD %KEY%\020 /V 1 /D "%systemdrive%\install\Applications\Real1\Real1r2G.exe -s" /f

REG ADD %KEY%\025 /VE /D "MSN Messanger 6.2" /f
REG ADD %KEY%\025 /V 1 /D "%systemdrive%\install\Applications\MSN\MsnMsgs.msi /QB" /f

I use $progs to copy winzip diractory cmdlines.txt for runonceex
Cmdlines.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 files
but not installting


please help me


#2 User is offline   ^_^ 

  • Member
  • PipPip
  • Group: Members
  • Posts: 298
  • Joined: 05-June 04

Posted 04 July 2004 - 07:51 PM

I used
ECHO.
ECHO Installing WinZip 
ECHO Please wait... 
start /wait %systemdrive%\"Program Files"\winzip\winzip32.exe /noqp /notip /autoinstall
echo Cleaning Up... Please Wait
del "%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 :-)

#3 User is offline   Interface 

  • Newbie
  • Group: Members
  • Posts: 46
  • Joined: 29-June 04

Posted 04 July 2004 - 11:32 PM

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" /f

Its i belive there is a problem with ""(quotes) in %Program Files% or some thing like that.

#4 User is offline   ^_^ 

  • Member
  • PipPip
  • Group: Members
  • Posts: 298
  • Joined: 05-June 04

Posted 05 July 2004 - 04:51 AM

Interface, on Jul 4 2004, 11:32 PM, said:

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" /f

Its 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 /f

as the " is for filename, not switches

#5 User is offline   Interface 

  • Newbie
  • Group: Members
  • Posts: 46
  • Joined: 29-June 04

Posted 05 July 2004 - 05:19 AM

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

Quote

cannot find c:\program files\winzip\winzip32.exe ..correct the path and try again...etc


#6 User is offline   Interface 

  • Newbie
  • Group: Members
  • Posts: 46
  • Joined: 29-June 04

Posted 05 July 2004 - 05:56 AM

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" /f
REG ADD %KEY%\040 /V 1 /D "%systemdrive%\install\WINZIP.cmd" /f


My winzip.cmd
ECHO.
ECHO Please wait...
start /wait %systemdrive%\"Program Files"\WinZip\WINZIP32.EXE /notip /autoinstall
echo.

It works fine BUT Form ,%Porgram Files% I can't....

Best regards.

#7 User is offline   MCT 

  • MSFN Junkie
  • PipPipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 3,288
  • Joined: 19-May 04

Posted 05 July 2004 - 06:00 AM

the variable isnt %program files% its %programfiles% without the space

regards

#8 User is offline   yong2579 

  • Junior
  • Pip
  • Group: Members
  • Posts: 62
  • Joined: 05-June 04

Posted 06 July 2004 - 09:33 AM

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.

#9 User is offline   yong2579 

  • Junior
  • Pip
  • Group: Members
  • Posts: 62
  • Joined: 05-June 04

Posted 06 July 2004 - 11:01 AM

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.

#10 User is offline   ^_^ 

  • Member
  • PipPip
  • Group: Members
  • Posts: 298
  • Joined: 05-June 04

Posted 07 July 2004 - 03:13 PM

^_^, on Jul 4 2004, 07:51 PM, said:

I used
ECHO.
ECHO Installing WinZip 
ECHO Please wait... 
start /wait %systemdrive%\"Program Files"\winzip\winzip32.exe /noqp /notip /autoinstall
echo Cleaning Up... Please Wait
del "%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 work
start /wait %systemdrive%\"Program Files"\winzip\winzip32.exe /noqp /notip /autoinstall


Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy