MSFN Forum: WPI Error code - MSFN Forum

Jump to content


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

WPI Error code Rate Topic: -----

#1 User is offline   MitsuMan 

  • Member
  • PipPip
  • Group: Members
  • Posts: 148
  • Joined: 12-March 06

Posted 09 September 2012 - 04:39 AM

Hello

Windows 7 ultimate with Service pack 1

I try to install few programs but get error that i dont understand really.
i hope somebody can help me a little here.......

I get some error code i dont know what is and why.
i hope somebody can help me about this.

Now comes MSN Live Plus but the programs get install but
under install it says failed.

WPI CONFIG

prog[pn]=['MSN Messenger Plus Live 4.83'];
uid[pn]=['MSGPLUS'];
ordr[pn]=[11];
dflt[pn]=['yes'];
forc[pn]=['no'];
bit64[pn]=['no'];
cat[pn]=['Internet'];
pfro[pn]=['no'];
cmds[pn]=['"%wpipath%\\Install\\Msn\\MsgPlusLive-483.exe" /silent','{TASKKILL} msnmsgr.exe'];
deps[pn]=['MSNMESSENGER'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
desc[pn]=['Messenger Plus! is an add-on for MSN Messenger and Windows Messenger, the two popular Instant Messaging softwares from Microsoft. Messenger Plus! adds different features to Messenger to make it more enjoyable, day after day. A list of the main features can be found on the features section of this site. Remember that Messenger Plus! is not a chat program, it only adds functionalities to Messenger, it can\'t be used as a standalone application.'];
pn++;



WPI.log

9. september 2012 11:47:29
   Program: MSN Messenger Plus Live 4.83
   Unique ID: MSGPLUS
   Order: 9
   Category: Internet
   9. september 2012 11:47:34 - cmd1 *** Fail *** (returned code 1): "G:\wpi\Install\Msn\MsgPlusLive-483.exe" /silent
   9. september 2012 11:47:34 - cmd2 Success (returned code undefined): TerminateProcess("msnmsgr.exe")
   9. september 2012 11:47:35 - Finished installation.


Now comes the program Blueray... the error is here i try to use regsvr32.exe
wit some fiels. but i get a warning under install

CONFIG

prog[pn]=['Blue Ray'];
uid[pn]=['BLUERAYREBUILDER'];
ordr[pn]=[88];
dflt[pn]=['yes'];
forc[pn]=['no'];
bit64[pn]=['no'];
cat[pn]=['Utilities'];
pfro[pn]=['no'];
cmds[pn]=['"%wpipath%\\Install\\BD_Rebuilder\\BD_Rebuilder.exe"','"%wpipath%\\Install\\BD_Rebuilder\\BDRB.sfx.exe"','"%wpipath%\\Install\\BD_Rebuilder\\MatroskaSplitter.exe" /S','"%wpipath%\\Install\\BD_Rebuilder\\ffdshow_rev3326_20100319_clsid.exe" /silent','"%wpipath%\\Install\\BD_Rebuilder\\start.bat"'];
desc[pn]=['Blue Ray Rebuilder & MatroskaSplitter'];
pn++;


My bat file

cmdow @ /HID
cls
@echo off

ECHO.
ECHO Installing ffdshow
ECHO Vent Venligst...
regsvr32.exe "%systemdrive%\Program Files (x86)\ffdshow\ffdshow.ax" /s
regsvr32.exe "%systemdrive%\Program Files (x86)\BD_Rebuilder\MSCOMCTL.OCX " /s



WPI LOG

9. september 2012 11:41:33
   Program: Blue Ray
   Unique ID: BLUERAYREBUILDER
   Order: 88
   Category: Utilities
   9. september 2012 11:41:33 - cmd1 Success (returned code 0): "G:\wpi\Install\BD_Rebuilder\BD_Rebuilder.exe"
   9. september 2012 11:41:34 - cmd2 Success (returned code 0): "G:\wpi\Install\BD_Rebuilder\BDRB.sfx.exe"
   9. september 2012 11:41:34 - cmd3 Success (returned code 0): "G:\wpi\Install\BD_Rebuilder\MatroskaSplitter.exe" /S
   9. september 2012 11:41:36 - cmd4 Success (returned code 0): "G:\wpi\Install\BD_Rebuilder\ffdshow_rev3326_20100319_clsid.exe" /silent
   9. september 2012 11:41:36 - cmd5 ** Warning ** (returned code 3): "C:\Windows\SysWOW64\cmd.exe" /C "G:\wpi\Install\BD_Rebuilder\start.bat"
   9. september 2012 11:41:36 - Finished installation.

This post has been edited by MitsuMan: 09 September 2012 - 04:46 AM



#2 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,342
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 09 September 2012 - 05:14 AM

The first one works fine for me.

As for the second one:

RegDLL calls: regsvr32.exe /s %dll%
UnRegDLL calls: regsvr32.exe /u /s/ %dll%
InstINF calls: rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %inf% (%dll% and %inf% are your chosen files)
LaunchINF calls: rundll32.exe advpack.dll,LaunchINFSection "Section"


As you can see here if you just add the redgdll code for the ax and ocx files you will be fine also.

#3 User is offline   MitsuMan 

  • Member
  • PipPip
  • Group: Members
  • Posts: 148
  • Joined: 12-March 06

Posted 09 September 2012 - 05:33 AM

View PostKelsenellenelvian, on 09 September 2012 - 05:14 AM, said:

The first one works fine for me.

As for the second one:

RegDLL calls: regsvr32.exe /s %dll%
UnRegDLL calls: regsvr32.exe /u /s/ %dll%
InstINF calls: rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %inf% (%dll% and %inf% are your chosen files)
LaunchINF calls: rundll32.exe advpack.dll,LaunchINFSection "Section"


As you can see here if you just add the redgdll code for the ax and ocx files you will be fine also.


I am not sure if i am following it right. but shall this be add to the bat files, or how goes it.

Hope you can explain little more. :) long time since cmd and dos :)

#4 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,342
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 09 September 2012 - 02:13 PM

No you have gotten me wrong here, look at this:

{RegDLL} "%systemdrive%\Program Files (x86)\BD_Rebuilder\MSCOMCTL.OCX " <-- commandline for wpi...

#5 User is offline   MitsuMan 

  • Member
  • PipPip
  • Group: Members
  • Posts: 148
  • Joined: 12-March 06

Posted 09 September 2012 - 02:45 PM

Hello

That was a big error from my side... Sorry :) now all is very good on that side.
i think all problems has been manage.

Thank for the help and fast answere

Share this topic:


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

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



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