zorphnog Posted September 21, 2007 Posted September 21, 2007 I haven't looked at it lately. I've just been too busy to mess with it anymore and I'm not sure that there is anything more we can do from the HTA/JavaScript side. I really think this has something to do with something beyond the scope of WPI. From best I can tell, it has something to do with Office 2003 pausing/resetting/killing mshta. I'm out of ideas. Sorry.I will say that I've never experienced this issue when I slipstream the updates using an administrative installation point and Office Resource Kit. Here is a copy of the notes I made when I created my installation package for Office 2003:Run setup.exe /a to create an administrative installation point.Once the administrative install files have been copied slipstream the service pack:Extract the files from the Office2003SP2-KB887616-FullFile-ENU.exe.Run msiexec /p MAINSP2ff.msp /a <AdminInstallFiles>\PRO11.msi SHORTFILENAMES=TRUE /qb.Run msiexec /p OWC11SP2ff.msp /a <AdminInstallFiles>\OWC11.msi SHORTFILENAMES=TRUE /qb.Add any security hotfixes that are needed:Extract the files from each hotfix file Office2003-KBxxxxxx-FullFile-ENU.exe.Run msiexec /p *-FullFile-GLB.msp /a <AdminInstallFiles>\PRO11.exe SHORTFILENAMES=TRUE /qb for each hotfix.[*]Download and install the Office Resource Kit ork.exe.[*]Run the Custom Installation Wizard from the Office Resource Kit and create an installation with only the Office tools and common files.[*]Run the Custom Maintenance Wizard from the Office Resource Kit and create a separate maintenance file for each component of Office (Access, Excel, etc.).[*]Copy the maintwiz.exe file from the resource kit to your administrative install files folder.[*]Run <AdminInstallFiles>\setup.exe TRANSFORMS=OfficeTools.mst /qb- to install the tools and common files.[*]Run <AdminInstallFiles>\maintwiz.exe TRANSFORMS=<component>.cmw /qb- to install each component.Converted Tools and each component into NSIS .exe's COTS\MicrosoftOffice\*.exe.Note: The Office Tools installation must be run before any Office component is installed.
midiboy Posted November 4, 2007 Posted November 4, 2007 Hi guys,any news on this ? Since you cannot slipstream Office 2007 updates anymore like it was possible with Office 2003, how do you guys install Office 2007 including updates with WPI now ?I have just spent at least 8 hours trying to figure out which of the available updates kills WPI but it seems that it is not a single update but all of them or the update process itself.So how do you guys cope with that ? Leaving Office 2007 out is no option ... Bye,Alex
Kelsenellenelvian Posted November 5, 2007 Posted November 5, 2007 I actually do install a fully updated office 2007 with the updates in the update older and it works it the craps out when I try to install sharepoint designer also...
midiboy Posted November 7, 2007 Posted November 7, 2007 Hi guys,I really don´t intend to be ungrateful, WPI is free and guys are devoting much of their free time to develop this but I don´t understand why nobody has come up with a real solution for this problem so far and it seems like this problem is know for a long time.I managed to do without the automatic updates during the Office 2007 installation by copying the updates over to HD, adding Runonceex entries on the fly and installing the updates during the next boot. However, now I need to install Visio 2007 and here the same problem happens but not during the update phase but during Visio installation itself. So how can I install Visio with WPI ? Not at all it seems. Have you guys just accepted that a lot of Microsoft applications crash WPI or have you found at least workarounds ?If this does not work reliably I will have to find another installation program, but what else is there ? Again, don´t mean to be ungrateful but I need a working solution, is there any ?Thanks,Alex
zorphnog Posted November 8, 2007 Posted November 8, 2007 Many people have put a lot of time and effort into figuring out this problem, and no there is not a solution. The problem seems to be that the installation of certain office components and updates somehow disrupts the underlying framework of WPI (mshta, WMI, ActiveX objects, etc.).As this is an Open project you are welcome to contribute any ideas you may have. Maybe you can figure it out, but at this point I don't think you are in a position to complain about it.
midiboy Posted November 8, 2007 Posted November 8, 2007 Hi zorphnog,as I said, I did not mean any disrespect and I appreciate very much what open source and freeware programmers do in their free time, very much so ! So, yes, I am no position to complain as I have not paid, nor did I write code or contributed anything to the project, I understand that.On the other hand, I spent at least three weeks intensively creating an unattended Vista installation for the company I work for and now, at the end, I find out that programs by Microsoft cannot be installed with it (or at least not reliably or essentially nobody knows what is happening exactly.)So I am frustrated because I need to find a solution. But thats not your problem and is of course a minor problem compared with all the other things that are going on in this world Just wondering how all the guys using WPI are coping with this situation. Do they simply avoid any Microsoft software or are there workarounds ... Bye,Alex
Kelsenellenelvian Posted November 9, 2007 Posted November 9, 2007 OK just did a run with office 07 full and ALL possibly needed to date fixes. It went fine, HOWEVER when I run Office 07 & Sharepoint designer in the same run blamo it screws up.SO I use the built in rebooot feature and install them in different runs
midiboy Posted November 9, 2007 Posted November 9, 2007 (edited) Hi !Unfortunately, I am not that lucky, Kelsenellenelvian. In my case, the Office 2007 installation usually works fine if I do not have any updates in the update folder. The following Visio installation works sometimes, sometimes not, i was not able to find a reason for this.But I now have found the ultimate workaround, so this is my contribution to this problem :-)I have Office, Visio etc. in my config.js so people can choose the software to be installed including every microsoft software. The command in the config.js calls a cmd, which resides in the Office/Visio program folder and looks like this:@echo offcmdow @ /HIDcd /D %~dp0md C:\Install\Officexcopy /S /E /H /Y .\*.* C:\Install\Office\*.*REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx /V TITLE /D "Anwendungsinstallation Teil 2" /fREG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx\100 /VE /D "Office 2007 Installation" /fREG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx\100 /V 1 /D "CMD /C C:\Install\Office\install2.cmd" /fEssentially, I am copying the installfiles to a folder on C and add a runonceex command so that Office, Visio etc. gets installed after a reboot (without the potential WPI/MS compatability problem in the way).The install2.cmd which is called on the next reboot then consists of the actual command to install the program and then just deletes the temporary folder.@echo offcmdow @ /HIDcd /D %~dp0start /wait .\setup.exeif exist "C:\Install\Office" RD /S /Q "C:\Install\Office"Just in case someone needs a practical workaround. By the way, RunOnceEx still works in Vista or with IE7 but make sure to have the latest IE7 security update slipstreamed or installed before doing this because the RTM version of IE7 disabled RunonceEX.Bye,Alex Edited November 9, 2007 by midiboy
book531231 Posted December 4, 2007 Posted December 4, 2007 (edited) My English ability is not goodOffice 2003 Conformity SP3I use the grammar which generally installsOFFICE ------------------------Setup=setup.exe /QB-TempModeSilent=2Overwrite=1-------------------------FrontPage-------------------------Setup=setup.exe /QB-TempModeSilent=2Overwrite=1--------------------------Above the method admits WPI all OKI use the grammar which the integrity installsOFFICE-------------------------------------------------Setup=msiexec.exe /i PRO11.MSI ADDLOCAL=ALL PIDKEY=XXXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /PASSIVETempModeSilent=2------------------------------------------------FrontPage--------------------------------------------------Setup=msiexec.exe /i FP11.MSI ADDLOCAL=ALL PIDKEY=XXXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /PASSIVETempModeSilent=2--------------------------------------The single bond installment all may but admit WPI not to be goodMy deep deep suspicion is reboot.js has the question Edited December 5, 2007 by book531231
zorphnog Posted December 4, 2007 Posted December 4, 2007 Not sure what you are trying to say here, but if you are having problems with installing Office 2003 (reboot.js errors) see Kel's thread http://www.msfn.org/board/Office-and-reboo...nt-t107774.html.
book531231 Posted December 4, 2007 Posted December 4, 2007 My English ability is not goodOffice 2003 Conformity SP3I use the grammar which generally installsOFFICE ------------------------Setup=setup.exe /QB-TempModeSilent=2Overwrite=1-------------------------FrontPage-------------------------Setup=setup.exe /QB-TempModeSilent=2Overwrite=1--------------------------Above the method admits WPI all OK I use the grammar which the integrity installsOFFICE-------------------------------------------------Setup=msiexec.exe /i PRO11.MSI ADDLOCAL=ALL PIDKEY=XXXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /PASSIVETempModeSilent=2------------------------------------------------FrontPage--------------------------------------------------Setup=msiexec.exe /i FP11.MSI ADDLOCAL=ALL PIDKEY=XXXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /PASSIVETempModeSilent=2--------------------------------------The single bond installment all may but admit WPI not to be good My deep deep suspicion is reboot.js has the question
book531231 Posted December 6, 2007 Posted December 6, 2007 I use nlite to manufacture the Windows xp conformityWhen I fill again Uses wpi to be able to appear the mistakeTherefore I want to be supposed to be wpi and the xp renewal fileshave the conflictIn particular in FrontPage 2,003 SP3 software
Kelsenellenelvian Posted December 6, 2007 Posted December 6, 2007 read you must.Sticky section answer has.Please try to be a little clearer in your posts.
book531231 Posted December 6, 2007 Posted December 6, 2007 Sorry, my English ability is not good.The first, I use nlite to conformity the renewal files of windows xp 2006,than I fill the computer software(xp). I try to use wpi after I finished these steps.That is ok.But I use nlite to conformity the renewal files of windows xp 2007,wpi will be unable to continue to work.I think they have some questions between the renewal files of windows xp 2007 and wpi.I will try it again and try to find the questions.Your understanding will be my appreciated.
book531231 Posted December 6, 2007 Posted December 6, 2007 I am very sorry !!It's my mistakeWPI is a great softwareThank you very much
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