SSISDB package metadata

Hi,
From which system table can I get the .dtsx thats actual XML code of any package deployed to SSIS Intergration services catalog.
Already checked in following tables
select Package_data from Internal.packages But it has null for all rows. ours is peoject based deployment.
Regards,
Navin
Navin.D http://dnavin.wordpress.com

I am referring to SSISDB, MSDB hold the package if I deploy in MSDB.
Navin.D http://dnavin.wordpress.com
@Navin, you marked the reply from Elvis as abusive unjustly. I will monitor how you on the forum.
@Elvis, I needed to delete your post because neither Joost not I could clear the abuse flag otherwise.
Arthur My Blog

Similar Messages

  • Will dynamic Excel commands in a C# Edit Script run ok as a SSISDB Package and a SQL Server Agent Job?

    I've seen some conflicting things in terms of dynamic Excel commands running in a SSISDB Package and a scheduled SQL Server Agent Job...things like that it's not supported...that it won't work...etc...
    It's a pretty simple script...to open up a .xlsx file and save it as a .xls file. I am trying to be proactive here and the reason I did it this way is because I could not source the .xlsx file and then I couldn't use OLE DB sourcing because I think the .xlsx
    file wants you to use Microsoft.ACE.OLEDB.12.0 and that entails installing the 64-bit Microsoft Access Database Engine and I cannot do that because our network version of Microsoft Office 2010 is 32-bit and in order to install the 64-bit Microsoft Access Database
    Engine 2010 it's prompting me to uninstall Microsoft Office 2010 and that is not possible.
    Ugh!
    So I'm hoping that I can promote and deploy this current SSIS Package to Production and create a SQL Server Agent Job that will successfully run this and its dynamic Excel commands.
    Do you know of any hurdles with this? Any anomalies...struggles...
    Thanks for your review and am hopeful for a reply.
    Here's the C# Script...which works perfectly client side...
    string StrFileName = (Dts.Variables["User::FileName"].Value.ToString());
    StrFileName = Path.GetFileNameWithoutExtension(StrFileName);
    string StringSourceFile = (Dts.Variables["User::FilePath"].Value.ToString()) + StrFileName + ".xlsx";
    string StringDestinationFile = (Dts.Variables["User::FilePath"].Value.ToString()) + StrFileName + ".xls";
    // This initiates the Excel Application
    Microsoft.Office.Interop.Excel.Application excelApplication = new Microsoft.Office.Interop.Excel.Application();
    // This Opens the Source .xlsx File from Emdeon ePaySmart
    Workbook workbook = excelApplication.Workbooks.Open(StringSourceFile, XlUpdateLinks.xlUpdateLinksNever, true, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
    // This will Save the Source .xlsx Emdeon ePaySmart File as a .xls File...note xlFileFormat.xlExcel5
    workbook.SaveAs(StringDestinationFile, XlFileFormat.xlExcel8, Type.Missing, Type.Missing, Type.Missing, Type.Missing, XlSaveAsAccessMode.xlExclusive, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
    // This will Close the Source
    workbook.Close(false, Type.Missing, Type.Missing);
    // This shuts down the Excel Application
    excelApplication.Quit();

    This should work if you use a proxy to run this package in the Agent; see:
    http://www.mssqltips.com/sqlservertip/2163/running-a-ssis-package-from-sql-server-agent-using-a-proxy-account/
    Arthur
    MyBlog
    Twitter

  • Missing package metadata

    Hello, I'm trying to install package-query with the command,
    pacman -U http://mir.archlinux.fr/~tuxce/releases … 1.1.tar.gz
    However, it installs and gives the error
    missing package metadata in /var/cache/pacman/pkg/package-query-1.1.tar.gz
    Then it says that that file is corrupted. I tried this for other things in the aur and it does the same thing.I'm running a base install and this is literally the first file I'm downloading, please help.

    First that url is incorrect, I think you mean http://mir.archlinux.fr/~tuxce/releases … 1.1.tar.gz
    Second, even the correct url just gets the source code, not a package. And I suspect anything you tried to get off the AUR was just the compressed files needed to build a package, unless you also ran makepkg to build something.
    I suggest taking a look at the wiki page

  • Content Library Explorer error -error occurred while trying to read the package metadata (can't find package in console)

    I have SCCM 2012 SP1 recently upgraded to R2. I'm currently setting this up to migrate my production 2007 site. However, I'm trying to use Content Library Explorer on my DP's. I have 3 dps. DP2 connects fine but when i try and connect to DP1 +3 i get
    the following error: An error occurred while trying to read the package metadata. The package
    PackageID is invalid and must be redistributed from the Configuration Manger console.
    Now i can't find any trace of this at all in the console. In the SMSPackagesHist table i can see the package ID and the deleted time was 29-07-2013. This most likely was me trying to create software updates back last year when i initially setup the site.
    The package is not listed as content on any of the 3 DPs and i can't find any trace of it at all in the console.
    I'm not very familiar with 2012, so not sure what I've done.
    Any help or advice appreciated.
    Thanks
    Jane

    Hi Torsten,
    thanks for this. I did a search of the WMI key and found this document: http://blogs.technet.com/b/configmgrteam/archive/2012/05/07/troubleshooting-content-mismatch-warnings-on-a-distribution-point-in-system-center-2012-configuration-manager.aspx (does
    this mean it is supported?)
    however, on those 2 DP's in that class, the suspect package ID is not listed!???
    Any more ideas?
    Many thanks
    Jane

  • PL/SQL Packages Metadata in XML

    How can I generate an XML file describing packages metadata (packages/procedures/parameters) ?
    My goal is to develop an utility that would generate some DB access code (in the way OO4O does). And I'm going to use XML/XSLT for it.

    I forgot to mention I was developing agains 8i. I've written OraOLEDB + JavaScript solution that met my needs.
    Thank you anyway.

  • Repkg - update package metadata without full recompilation

    There have been too many trivial metadata bumps of compilation-heavy packages recently, especially with the qt update. In most cases the resulting package is exactly the same. I caught myself redoing the same thing a few times so I wrote a little script and uploaded it.
    Get repkg here.
    The first argument is the path to a build package. The rest are passed through to makepkg (it will only repackage the pkgdir, so most arguments make no sense). If anyone is interested, there is also commented code in the file to use pbget to automatically retrieve the PKGBUILD and related files.
    Caveats: make sure that the PKGBUILD changes really do result in the same files.
    edit: renamed
    Last edited by Xyne (2013-03-01 21:43:42)

    Since pacman 4.1 deletes the pkg folder before building, /bin binaries have been moved to /usr/bin, and I have BUILDDIR set in my makepkg.conf, I think a patch is in order.
    --- repkg.old 2013-06-09 01:42:53.751624522 -0400
    +++ repkg 2013-06-09 01:44:45.291341774 -0400
    @@ -1,4 +1,4 @@
    -#!/bin/bash
    +#!/usr/bin/bash
    # powerpill-2013.2-1-any.pkg.tar.xz
    if [[ -z $1 ]]
    then
    @@ -38,10 +38,14 @@
    package()
    + bsdtar -C "$pkgdir" -xf "$pkgfile"
    msg "repackaging $pkgname..."
    ''' >> PKGBUILD
    -mkdir -p pkg
    -bsdtar -C pkg -xf "$pkgfile"
    +
    +cat <<EOF>> PKGBUILD
    +pkgfile=$pkgfile
    +EOF
    +
    makepkg -fR "$@"
    Last edited by luolimao (2013-06-09 05:51:52)

  • Moving SSIS Package to production

    I have to implement a change where a new column is added to a SQL Server table which is read by a package.
    Is it possible to create the package before the new column is added to the table, or will the package require it?
    I'd like to be able to create the package ahead of time so as soon as the database is updated, I can promote the package.
    But if I have to wait for the column to be added (which cannot be done ahead of time as it will break other applications), it will cause a significant delay.

    Its possible by setting delayvalidation to true in source task but you wont be able to set any mappings using the non existent column, so in any case you need to do some work in the package after column has been added to set mappings etc. Unless column
    actually exists you cant add it to package metadata.
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • [SOLVED] Issue when installing many packages

    I recently installed arch linux and I remember being a bit worried about something: you know that packages that are being installed might remind you about things that you manually have to do in order to archeive this or that, like for example wireshark will tell you that you should put yourself into the wireshark group to be able to dump as a standard user.
    Now, I've seen a lot of those messages for my initial setup that I could not read. For example, when I did pacman -S gnome on the base system, it pulled in a lot of deps and at the same time gave me many of those hints - which basically just flew by (I wasn't smart enough to log a copy of the output of that command).
    Does someone have a script that takes my local pacman database, and throws only the hints for all installed packages back to me? Thx
    Last edited by vvd (2013-03-27 19:54:13)

    vvd wrote:(I wasn't smart enough to log a copy of the output of that command).
    You should be able to find the same output in /var/log/pacman.log
    vvd wrote:Does someone have a script that takes my local pacman database, and throws only the hints for all installed packages back to me? Thx
    I think that's not possible, since those messages aren't stored in any package metadata directly. Those messages come from scripts that are run pre/post install/upgrade/remove of a package.

  • Not able to install some QT-dependant packages after upgrading to QT5

    I ran an updated today, it was a major update, there was a lot of stuff that I got prompted to replace, I said yes of course. One of those was qt, which was a dependancy to some of my apps, like Skype and edb-debugger. So I just, removed those apps, and proceeded with the update, it went alright. After that, I wanted to reinstall those two apps:
    resolving dependencies...
    warning: cannot resolve "lib32-qt", a dependency of "skype"
    :: The following package cannot be upgraded due to unresolvable dependencies:
    skype
    Do you want to skip the above package for this upgrade? [y/N]
    if I give that a yes:
    looking for inter-conflicts...
    there is nothing to do
    No:
    error: failed to prepare transaction (unexpected error)
    For edb, from yaourt:
    error: target not found: qt>=4.5
    It states that it wants a version of qt which is higher than 4.5 right? I already have qt5! so what's up?
    I looked into my /var/cache/pacman/pkg for qt so that I could downgrade, I didn't find that 'literal' package, I found some qt-related stuff.
    sudo pacman -U qt-4.8.4-3-x86_64.pkg.tar.xz
    loading packages...
    resolving dependencies...
    looking for inter-conflicts...
    :: qt and qt4 are in conflict. Remove qt4? [y/N] y
    :: qt and qt5-base are in conflict. Remove qt5-base? [y/N] y
    :: qt and qt5-declarative are in conflict. Remove qt5-declarative? [y/N] y
    :: qt and qt5-imageformats are in conflict. Remove qt5-imageformats? [y/N] y
    :: qt and qt5-multimedia are in conflict. Remove qt5-multimedia? [y/N] y
    :: qt and qt5-quick1 are in conflict. Remove qt5-quick1? [y/N] y
    :: qt and qt5-script are in conflict. Remove qt5-script? [y/N] y
    :: qt and qt5-svg are in conflict. Remove qt5-svg? [y/N] y
    :: qt and qt5-tools are in conflict. Remove qt5-tools? [y/N] y
    :: qt and qt5-translations are in conflict. Remove qt5-translations? [y/N] y
    :: qt and qt5-xmlpatterns are in conflict. Remove qt5-xmlpatterns? [y/N] y
    error: failed to prepare transaction (could not satisfy dependencies)
    :: attica: requires qt4
    :: grantlee: requires qt4
    :: lib32-qt4: requires qt4
    :: libdbusmenu-qt: requires qt4
    :: libqzeitgeist: requires qt4
    :: phonon: requires qt4
    :: polkit-qt: requires qt4
    :: poppler-qt: requires qt4
    :: prison: requires qt4
    :: q4wine: requires qt4
    :: qca: requires qt4
    :: qimageblitz: requires qt4
    :: qjson: requires qt4
    :: qt5-graphicaleffects: requires qt5-declarative
    :: qt5-jsbackend: requires qt5-base
    :: qt5-webkit: requires qt5-declarative
    :: qtwebkit: requires qt4
    :: soprano: requires qt4
    :: strigi: requires qt4
    :: unetbootin: requires qt4
    :: vlc: requires qt4
    :: winestuff: requires qt4
    Are you freckin kiddin me? I'm NOT gonna go over this again, hell no!
    I downloaded skype from its site, did a pacman -U on it:
    error: missing package metadata in skype-4.1.0.20.tar.bz2
    error: 'skype-4.1.0.20.tar.bz2': invalid or corrupted package
    How can I get around this, install Skype and the stuff that I want? anyhelp please?
    Thanks!
    Last edited by VeXe (2013-03-01 11:36:00)

    VeXe wrote:resolving dependencies...
    warning: cannot resolve "lib32-qt", a dependency of "skype"
    :: The following package cannot be upgraded due to unresolvable dependencies:
    skype
    Do you want to skip the above package for this upgrade? [y/N]
    Here you are trying to install skype from multilib, right? Then your mirror is not fully up to date or you need another -Sy. skype in the repos has been updated to depend on (lib32-)qt4 instead of (lib32-)qt.
    edb-debugger in AUR hasn't caught up with this change, you should at least edit the PGKBUILD, changing qt in debs to qt4.
    You can't just downgrade qt to the 4.x branch if you have apps depending on the qt5-* packages.

  • Install package

    Hello i m using mplayer its plays well but it couldnt paly audio for the 3gp files  so i just google and find that i need  opencore-amr for that i download it from
    http://aur.archlinux.org/packages.php?ID=28619
    its in the .tar.gz format but now i dont know how to install it.
    i gave the comman "pacman -U opencore-amr-0.1.1.tar.gz"
    but its not working  it shows the msg
    loading package data...
    error: missing package metadata in opencore-amr-0.1.1(2).tar.gz
    error: 'opencore-amr-0.1.1(2).tar.gz': invalid or corrupted package
    what to do  next.....

    i try that link but there is
    ==> ERROR: PKGBUILD does not exist.
    Last edited by arunix (2009-07-27 02:53:28)

  • Asus eee 901 and wifi

    hi, i'm a total newbie when it comes to linux so i wanted to change this and install arch on my eee pc.
    i used all the guides on wiki but i still don't know how to install wifi.
    now i have arch installed with all the packages from core installation but still when i write
    hwdetect --show-net
    NET : bluetooth
    that's all i get. wifi is on in bios.

    00:00.0 Host bridge: Intel Corporation Mobile 945GME Express Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
    00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
    00:1c.3 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)
    00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
    00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
    00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)
    01:00.0 Network controller: RaLink Device 0781
    i tried installing http://www.ralinktech.com.tw/data/drive … .0.tar.bz2 from sub stick but
    pacman -U /path/to/file/file.tar.bz2
    loading package data...
    error: missing package metadata in /path/to/file/file.tar.bz2
    error: path/to/file/file.tar.bz2 : invalid or corrupted file
    tar unpacks it but i don't know what to do after it is unpacked...

  • Problems creating a Office 2013 combined installation share, bug?

    I have tried to combine Office 2013 x86 (English), with Norwegian Language Pack, and the full Proofing Tools except IMEs. However, I ran in to some problems which might be bugs?
    I create a network share and copy the Office 2013 x86 files to it, the Norwegian LIP, then the Proofing Tools files (without overwrite).
    Setup.exe works fine for the initial Office 2013 installation, however it will not work for the Proofing Tools installation.
    I run the setups like this:
    Office: setup.exe /adminfile admin.msp /config proplus.ww\config.xml
    This works just fine, Office installs without any problem.
    Proofing: setup.exe /config proofkit.ww\config.xml
    This however did not work. The setup crashes with the error:
    Setup halts at the beginning of the installation bar, then breakes out with a an unexpected error, installation failed, rolling back (roughly translated)
    My current workaround is to have one folder on the share for "Office 2013" and one for the "Proofing Tools".
    The "problem" I get then, is that I need to keep both "updates" folder up to date and identical in order to get a fully updated Office installation.
    I have also tried to copy the setup.exe/dll files + catalog from both the LIP iso, and Proofing tools ISO, but non of them gives me a "one installation source to rule them all". They all brake in some way.
    Is it somehow possible to get a fully working "combined" Office installation source on a network share?
    This is the config.xml for the Office 2013 installation, I've skipped a few lines because I have only added 2 lines to the original config.xml
    <Configuration Product="ProPlus">
    <AddLanguage Id="nb-no" ShellTransform="yes"/>
    <AddLanguage Id="en-us" />
    <!-- <Display Level="full" CompletionNotice="yes" SuppressModal="no" AcceptEula="no" /> -->
    <!-- <Logging Type="standard" Path="%temp%" Template="Microsoft Office Professional Plus Setup(*).txt" /> -->
    </Configuration>
    This is the config.xml for the Proofing Tools:
    <Configuration Product="ProofKit">
    <Display Level="Basic" CompletionNotice="No" SuppressModal="Yes" AcceptEula="Yes" /> -->
    <!-- <Logging Type="standard" Path="%temp%" Template="Microsoft Office Proofing Tools Kit Setup(*).txt" /> -->
    <!-- <OptionState Id="OptionID" State="absent" Children="force" /> -->
    <OptionState Id="IMEMain_1028" State="Absent" Children="force"/>
    <OptionState Id="IMEMain_1041" State="Absent" Children="force"/>
    <OptionState Id="IMEMain_1042" State="Absent" Children="force"/>
    <OptionState Id="IMEMain_2052" State="Absent" Children="force"/>
    <OptionState Id="ProofingTools_1025" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1026" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1027" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1028" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1029" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1030" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1031" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1032" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1033" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1035" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1036" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1037" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1038" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1040" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1041" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1042" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1043" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1044" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1045" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1046" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1048" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1049" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1050" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1051" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1053" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1054" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1055" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1056" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1058" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1060" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1061" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1062" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1063" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1069" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1081" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1087" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1094" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1095" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1097" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1099" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1102" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1110" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_2052" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_2068" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_2070" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_2074" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_3076" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_3082" State="Local" Children="force"/>
    <!-- <Setting Id="Setup_Reboot" Value="IfNeeded" /> -->
    </Configuration>
    In my admin.msp file, I have basically just added:
    Organization name
    License (KMS)
    I accept the tems in the License Agreement
    Display level: Basic
    Suppress modal
    No cancel
    Full feature installation, except Microsoft SkyDrive Pro and Microsoft InfoPath
    Anyone know how to get this to work? It worked just fine with Office 2010, how can I get it to work with Office 2013?
    Regards,
    Øistein

    Here is a copy of the SetupError log from when the Proofing Tools installation is run:
    2013/12/22 23:12:53:377::[2084] PERF: TickCount=935312265 Name=OBootStrapper::Run Description=Begin function
    2013/12/22 23:12:53:377::[2084] Terminal Server detected
    2013/12/22 23:12:53:377::[2084] Operating System version: 6.2.9200 . Platform ID: 2
    2013/12/22 23:12:53:377::[2084] Running 32-bit setup on a 64-bit operating system.
    2013/12/22 23:12:53:377::[2084] Command line: "\\server\share\Microsoft\Office 2013 x86 - Copy\setup.exe" /config "\\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml"
    2013/12/22 23:12:53:377::[2084] Parsing command line.
    2013/12/22 23:12:53:377::[2084] Config XML file specified: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml
    2013/12/22 23:12:53:377::[2084] Parsing config.xml at: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml
    2013/12/22 23:12:53:392::[2084] Preferred product specified in config.xml to be: PROOFKIT
    2013/12/22 23:12:53:392::[2084] Display level basic specified in config.xml.
    2013/12/22 23:12:53:392::[2084] Suppression of modal dialogs specified in config.xml.
    2013/12/22 23:12:53:392::[2084] Hide completion notice specified in config.xml.
    2013/12/22 23:12:53:392::[2084] Auto accept license specified in config.xml.
    2013/12/22 23:12:53:877::[2084] Verify file signature in "\\server\share\Microsoft\Office 2013 x86 - Copy\setup.exe"
    2013/12/22 23:12:53:908::[2084] \\server\share\Microsoft\Office 2013 x86 - Copy\setup.exe is trusted.
    2013/12/22 23:12:53:908::[2084] Verify file signature in "\\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\OSETUP.DLL"
    2013/12/22 23:12:54:049::[2084] \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\OSETUP.DLL is trusted.
    2013/12/22 23:12:54:174::[2084] Using setup controller dll at [\\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\OSETUP.DLL].
    2013/12/22 23:12:54:174::[2084] PERF: TickCount=935313062 Name=OBootStrapper::Run Description=Calling RunSetup
    2013/12/22 23:12:54:174::[2084] PERF: TickCount=935313062 Name=RunSetup Description=Begin function
    2013/12/22 23:12:54:174::[2084] WER element [P2] is set to value [OSETUP.DLL]
    2013/12/22 23:12:54:174::[2084] WER element [P3] is set to value [15.0.4481.1001]
    2013/12/22 23:12:54:174::[2084] Terminal Server detected
    2013/12/22 23:12:54:174::[2084] Catalyst execution began: 12/22/2013 23:12:54.
    2013/12/22 23:12:54:174::[2084] Parsing config.xml at: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml
    2013/12/22 23:12:54:174::[2084] Preferred product specified in config.xml to be: PROOFKIT
    2013/12/22 23:12:54:174::[2084] Display level basic specified in config.xml.
    2013/12/22 23:12:54:174::[2084] Suppression of modal dialogs specified in config.xml.
    2013/12/22 23:12:54:174::[2084] Hide completion notice specified in config.xml.
    2013/12/22 23:12:54:174::[2084] Auto accept license specified in config.xml.
    2013/12/22 23:12:54:174::[2084] Setupexe Resiliency Mode is set to [PerformIfApplicable]; thus Resiliency is [disabled] for the [InstallExecutionMode]
    2013/12/22 23:12:54:174::[2084] Searching for updated versions of resource files under the 'updates' folder [\\server\share\Microsoft\Office 2013 x86 - Copy\updates].
    2013/12/22 23:12:54:174::[2084] Found [0] resource files under the update folder.
    2013/12/22 23:12:54:174::[2084] Searching for default versions of resource files under the folder [\\server\share\Microsoft\Office 2013 x86 - Copy].
    2013/12/22 23:12:54:189::[2084] Found [2] resource files under the default folder.
    2013/12/22 23:12:54:189::[2084] Running in [InstallExecutionMode]. Run from TEMP folder at [C:\Users\user\AppData\Local\Temp\Setup00000260].
    2013/12/22 23:12:54:205::[2084] Loaded resource file [C:\Users\user\AppData\Local\Temp\Setup00000260\OSETUPUI.DLL] (CultureTag=nb-NO).
    2013/12/22 23:12:54:205::[2084] WER element [SuppressModal] is set to value [false]
    2013/12/22 23:12:54:205::[2084] WER element [P1] is set to value [15.0.4420.1017]
    2013/12/22 23:12:54:205::[2084] Loaded Dll : \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\OSETUP.DLL.
    2013/12/22 23:12:54:205::[2084] Catalyst version is : 15.0.4481.1001
    2013/12/22 23:12:54:205::[2084] JobExecutionMode is InstallExecutionMode.
    2013/12/22 23:12:54:252::[2084] Check if Office is supported on Windows 6.2.9200
    2013/12/22 23:12:54:502::[3524] Product: PROOFKIT
    2013/12/22 23:12:54:502::[3524] AddOnGroup Culture: en-us
    2013/12/22 23:12:54:502::[3524] AddOnId: PROOFMUI.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnGroup Culture: fr-fr
    2013/12/22 23:12:54:502::[3524] AddOnId: PROOFMUI.FR-FR
    2013/12/22 23:12:54:502::[3524] Product: PROPLUS
    2013/12/22 23:12:54:502::[3524] AddOnGroup Culture: en-us
    2013/12/22 23:12:54:502::[3524] AddOnId: WORD.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OSMUX.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OSM.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: PROOFING.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: ONENOTE.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OFFICE64.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: GROOVE.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OUTLOOK.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: DCF.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: PUBLISHER.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: POWERPOINT.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: EXCEL.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OFFICE.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: LYNC.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: INFOPATH.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: ACCESS.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnGroup Culture: nb-no
    2013/12/22 23:12:54:502::[3524] AddOnId: WORD.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: POWERPOINT.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OUTLOOK.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OSMUX.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OSM.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: PROOFING.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: GROOVE.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: ONENOTE.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: EXCEL.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: ACCESS.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: INFOPATH.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: DCF.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: PUBLISHER.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OFFICE64.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OFFICE.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: LYNC.NB-NO
    2013/12/22 23:12:55:292::[2084] No upgradable applications found
    2013/12/22 23:12:55:292::[2084] Not parsing product config.xml file: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml because one has already been parsed.
    2013/12/22 23:12:55:292::[2084] Found AddOn Culture: CultureTag=[en-us], NativeCltureName=[English].
    2013/12/22 23:12:55:292::[2084] Found AddOn Culture: CultureTag=[fr-fr], NativeCltureName=[français].
    2013/12/22 23:12:55:292::[2084] Product Deployment Mode: PerMachineManaged
    2013/12/22 23:12:55:292::[2084] Target Deployment Account Security Identifier: S-1-5-18
    2013/12/22 23:12:55:292::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofmui.en-us\ProofMUI.xml
    2013/12/22 23:12:55:292::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\ProofKitWW.xml
    2013/12/22 23:12:55:292::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.en\Proof.xml
    2013/12/22 23:12:55:307::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.fr\Proof.xml
    2013/12/22 23:12:55:307::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.es\Proof.xml
    2013/12/22 23:12:55:323::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ar\Proof.xml
    2013/12/22 23:12:55:323::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.zh-tw\Proof.xml
    2013/12/22 23:12:55:339::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ja\Proof.xml
    2013/12/22 23:12:55:339::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ko\Proof.xml
    2013/12/22 23:12:55:339::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.th\Proof.xml
    2013/12/22 23:12:55:354::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.zh-cn\Proof.xml
    2013/12/22 23:12:55:354::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.pt-br\Proof.xml
    2013/12/22 23:12:55:370::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.de\Proof.xml
    2013/12/22 23:12:55:370::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.it\Proof.xml
    2013/12/22 23:12:55:370::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.nl\Proof.xml
    2013/12/22 23:12:55:386::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ca\Proof.xml
    2013/12/22 23:12:55:386::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.eu\Proof.xml
    2013/12/22 23:12:55:401::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.gl\Proof.xml
    2013/12/22 23:12:55:403::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sv\Proof.xml
    2013/12/22 23:12:55:403::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.fi\Proof.xml
    2013/12/22 23:12:55:418::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.cs\Proof.xml
    2013/12/22 23:12:55:418::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.da\Proof.xml
    2013/12/22 23:12:55:418::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.he\Proof.xml
    2013/12/22 23:12:55:434::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.hi\Proof.xml
    2013/12/22 23:12:55:434::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.hu\Proof.xml
    2013/12/22 23:12:55:434::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.mr\Proof.xml
    2013/12/22 23:12:55:451::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.nb\Proof.xml
    2013/12/22 23:12:55:451::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.pa\Proof.xml
    2013/12/22 23:12:55:451::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.pl\Proof.xml
    2013/12/22 23:12:55:466::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ru\Proof.xml
    2013/12/22 23:12:55:466::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.te\Proof.xml
    2013/12/22 23:12:55:482::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.tr\Proof.xml
    2013/12/22 23:12:55:482::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.el\Proof.xml
    2013/12/22 23:12:55:482::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sk\Proof.xml
    2013/12/22 23:12:55:498::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.uk\Proof.xml
    2013/12/22 23:12:55:498::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.nn\Proof.xml
    2013/12/22 23:12:55:513::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.pt\Proof.xml
    2013/12/22 23:12:55:513::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.bg\Proof.xml
    2013/12/22 23:12:55:513::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ro\Proof.xml
    2013/12/22 23:12:55:529::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.hr\Proof.xml
    2013/12/22 23:12:55:529::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sl\Proof.xml
    2013/12/22 23:12:55:529::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.et\Proof.xml
    2013/12/22 23:12:55:545::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.lv\Proof.xml
    2013/12/22 23:12:55:545::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.lt\Proof.xml
    2013/12/22 23:12:55:560::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.gu\Proof.xml
    2013/12/22 23:12:55:560::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ta\Proof.xml
    2013/12/22 23:12:55:560::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.kn\Proof.xml
    2013/12/22 23:12:55:577::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sr\Proof.xml
    2013/12/22 23:12:55:577::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ur\Proof.xml
    2013/12/22 23:12:55:577::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.kk\Proof.xml
    2013/12/22 23:12:55:592::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sr-cyrl-cs\Proof.xml
    2013/12/22 23:12:55:592::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.id\Proof.xml
    2013/12/22 23:12:55:608::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ms\Proof.xml
    2013/12/22 23:12:55:608::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ms-bn\Proof.xml
    2013/12/22 23:12:55:608::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.vi\Proof.xml
    2013/12/22 23:12:55:624::[2084] Searching for patches for the current chained install in: \\server\share\Microsoft\Office 2013 x86 - Copy\updates
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ar-sa.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-bg-bg.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ca-es.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-cs-cz.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-da-dk.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-de-de.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-el-gr.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-en-us.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-es-es.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-et-ee.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-eu-es.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-fi-fi.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-fr-fr.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-gl-es.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-he-il.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-hi-in.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-hr-hr.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-hu-hu.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-it-it.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ja-jp.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ko-kr.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-lt-lt.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-lv-lv.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-nb-no.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-nl-nl.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-nn-no.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-pl-pl.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-pt-br.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-pt-pt.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ro-ro.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ru-ru.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sk-sk.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sl-si.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sr-cyrl-cs.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sr-latn-cs.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sv-se.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-th-th.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-tr-tr.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-uk-ua.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-zh-cn.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-zh-tw.msp
    2013/12/22 23:12:58:038::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\setupexe-x-none.msp
    2013/12/22 23:12:58:492::[2084] Error: Default ProductName not found for 00cc
    2013/12/22 23:12:58:492::[2084] No branding information found, using catalystProductId for ARP DisplayName: PROOFKIT
    2013/12/22 23:12:58:492::[2084] No Visio 15 product is detected
    2013/12/22 23:12:58:492::[2084] No Project 15 product is detected
    2013/12/22 23:12:58:570::[2084] Reading value of unintialized setting!
    2013/12/22 23:12:58:601::[2084] BRANDING: Parsing Branding Data...
    2013/12/22 23:12:58:617::[2128] Error: Unable to set a system restore point
    2013/12/22 23:12:58:617::[2128] Kicking off chained install...
    2013/12/22 23:12:58:617::[2128] Terminal Server detected
    2013/12/22 23:12:58:617::[2128] PERF: TickCount=935317500 Name=Job::DoCacheWork Description=Begin function
    2013/12/22 23:13:00:645::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:00:645::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:00:645::[2128] Running Source Engine process detected
    2013/12/22 23:13:00:645::[2128] Running version: 15.0.4454.1000
    2013/12/22 23:13:00:645::[2128] OSE is running
    2013/12/22 23:13:00:645::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:348::[2128] PERF: TickCount=935321234 Name=Job::DoCacheWork Description=End function
    2013/12/22 23:13:02:348::[2128] Final Option Tree:
    2013/12/22 23:13:02:348::[2128] AlwaysInstalled:local
    2013/12/22 23:13:02:348::[2128] OSpp:local
    2013/12/22 23:13:02:348::[2128] OSpp_Core:local
    2013/12/22 23:13:02:348::[2128] Gimme_OnDemandData:local
    2013/12/22 23:13:02:348::[2128] ProductFiles:local
    2013/12/22 23:13:02:348::[2128] SHAREDFiles:local
    2013/12/22 23:13:02:348::[2128] ProofingTools:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1025:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1025:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1025:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1025:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1026:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1026:local
    2013/12/22 23:13:02:348::[2128] OCR_1026:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1026:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1026:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1027:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1027:local
    2013/12/22 23:13:02:348::[2128] OCR_1027:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1027:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1027:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1028:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1028:local
    2013/12/22 23:13:02:348::[2128] OCR_1028:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1028:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1028:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1029:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1029:local
    2013/12/22 23:13:02:348::[2128] OCR_1029:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1029:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1029:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1030:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1030:local
    2013/12/22 23:13:02:348::[2128] OCR_1030:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1030:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1030:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1031:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1031:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1031:local
    2013/12/22 23:13:02:348::[2128] OCR_1031:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1031:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1031:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1031:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1032:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1032:local
    2013/12/22 23:13:02:348::[2128] OCR_1032:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1032:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1032:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1033:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1033:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1033:local
    2013/12/22 23:13:02:348::[2128] OCR_1033:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1033:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1033:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1035:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1035:local
    2013/12/22 23:13:02:348::[2128] OCR_1035:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1035:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1035:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1036:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1036:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1036:local
    2013/12/22 23:13:02:348::[2128] OCR_1036:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1036:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1036:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1036:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1037:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1037:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1037:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1037:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1037:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1038:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1038:local
    2013/12/22 23:13:02:348::[2128] OCR_1038:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1038:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1038:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1040:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1040:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1040:local
    2013/12/22 23:13:02:348::[2128] OCR_1040:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1040:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1040:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1040:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1041:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1041:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1041:local
    2013/12/22 23:13:02:348::[2128] OCR_1041:local
    2013/12/22 23:13:02:348::[2128] RRLoc_1041:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1041:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1042:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1042:local
    2013/12/22 23:13:02:348::[2128] OCR_1042:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1042:local
    2013/12/22 23:13:02:348::[2128] HangulHanjaConversion:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1042:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1043:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1043:local
    2013/12/22 23:13:02:348::[2128] OCR_1043:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1043:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1043:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1044:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1044:local
    2013/12/22 23:13:02:348::[2128] OCR_1044:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1044:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1044:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1045:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1045:local
    2013/12/22 23:13:02:348::[2128] OCR_1045:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1045:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1045:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1046:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1046:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1046:local
    2013/12/22 23:13:02:348::[2128] OCR_1046:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1046:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1046:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1048:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1048:local
    2013/12/22 23:13:02:348::[2128] OCR_1048:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1048:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1048:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1049:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1049:local
    2013/12/22 23:13:02:348::[2128] OCR_1049:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1049:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1049:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1050:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1050:local
    2013/12/22 23:13:02:348::[2128] OCR_1050:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1050:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1050:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1051:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1051:local
    2013/12/22 23:13:02:348::[2128] OCR_1051:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1051:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1051:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1053:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1053:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1053:local
    2013/12/22 23:13:02:348::[2128] OCR_1053:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1053:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1053:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1054:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1054:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1054:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1055:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1055:local
    2013/12/22 23:13:02:348::[2128] OCR_1055:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1055:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1055:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1056:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1056:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1057:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1057:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1058:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1058:local
    2013/12/22 23:13:02:348::[2128] OCR_1058:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1058:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1058:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1060:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1060:local
    2013/12/22 23:13:02:348::[2128] OCR_1060:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1060:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1060:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1061:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1061:local
    2013/12/22 23:13:02:348::[2128] OCR_1061:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1061:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1061:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1062:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1062:local
    2013/12/22 23:13:02:348::[2128] OCR_1062:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1062:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1062:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1063:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1063:local
    2013/12/22 23:13:02:348::[2128] OCR_1063:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1063:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1063:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1066:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1066:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1069:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1069:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1069:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1081:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1081:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1081:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1086:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1086:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1087:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1087:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1087:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1094:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1094:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1095:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1095:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1097:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1097:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1098:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1098:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1099:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1099:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1102:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1102:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1110:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1110:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1110:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2052:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_2052:local
    2013/12/22 23:13:02:348::[2128] OCR_2052:local
    2013/12/22 23:13:02:348::[2128] RRLoc_2052:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_2052:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2052:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2068:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_2068:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2068:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2070:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_2070:local
    2013/12/22 23:13:02:348::[2128] OCR_2070:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2070:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_2070:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2074:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_2074:local
    2013/12/22 23:13:02:348::[2128] OCR_2074:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2074:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_2074:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2110:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2110:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_3082:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_3082:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_3082:local
    2013/12/22 23:13:02:348::[2128] OCR_3082:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_3082:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_3082:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_3082:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_3098:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_3098:local
    2013/12/22 23:13:02:348::[2128] OCR_3098:absent
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_3098:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_3098:local
    2013/12/22 23:13:02:348::[2128] "Installed" sku component file \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\setup.xml to C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\PROOFKIT\setup.xml.
    2013/12/22 23:13:02:348::[2128] "Installed" sku component file \\server\share\Microsoft\Office 2013 x86 - Copy\proofmui.en-us\setup.xml to C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\ProofMUI.en-us\setup.xml.
    2013/12/22 23:13:02:348::[2128] Determining ARP entry registry values.
    2013/12/22 23:13:02:364::[2128] PERF: TickCount=935321250 Name=Verify MSI local install source Description=Begin function
    2013/12/22 23:13:02:364::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:364::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:380::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:395::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:395::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:411::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:411::[2128] LIS: wait for package "{90150000-00C2-0409-0000-0000000FF1CE}" to complete caching
    2013/12/22 23:13:02:427::[2128] LIS: package "{90150000-00C2-0409-0000-0000000FF1CE}" caching completed
    2013/12/22 23:13:02:427::[2128] PERF: TickCount=935321312 Name=Completed verify local install source Description=End function
    2013/12/22 23:13:02:473::[2128] Executing chained package: ProofMUI.en-us
    2013/12/22 23:13:02:473::[2128] Reading value of unintialized setting!
    2013/12/22 23:13:02:473::[2128] 12/22/2013 23:13:02 Installing chained package: ProofMUI.en-us
    2013/12/22 23:13:02:473::[2128] PERF: TickCount=935321359 Name=Verify MSI local install source Description=Begin function
    2013/12/22 23:13:02:473::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:473::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:505::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:505::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:505::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:536::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:536::[2128] LIS: wait for package "{90150000-00C2-0409-0000-0000000FF1CE}" to complete caching
    2013/12/22 23:13:02:536::[2128] LIS: package "{90150000-00C2-0409-0000-0000000FF1CE}" caching completed
    2013/12/22 23:13:02:536::[2128] PERF: TickCount=935321421 Name=Completed verify local install source Description=End function
    2013/12/22 23:13:02:536::[2128] Catalyst Package Install..
    2013/12/22 23:13:02:536::[2128] Package: ProofMUI.en-us
    2013/12/22 23:13:02:536::[2128] File: C:\MSOCache\All Users\{90150000-00C2-0409-0000-0000000FF1CE}-C\ProofMUI.msi
    2013/12/22 23:13:02:536::[2128] Command Line: ADDLOCAL=PSetupControllerIntl_1033,Gimme_OnDemandData,PSetupController,SetupXmlFiles,ProofKitFiles,SetupControllerFiles,MsoInstalledPackagesScopedIntl_1033 ARPENTRY_UNINSTALLSTRING="""C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\setup.exe"" /uninstall PROOFKIT /dll OSETUP.DLL" ARPENTRY_DISPLAYICON="C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\OSETUP.DLL,1" SETUPEXEINSTALLUICULTURE="nb-NO" ARPENTRY_SHELLUITRANSFORMLANGUAGE="nb-NO" ACCEPTEDEULA="1" REMOVEPREVIOUS="" BRANDING_XML="C:\Users\user\AppData\Local\Temp\Setup00000260\BRANDING.XML" ARPENTRY_MODIFYPATH="""C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\setup.exe"" /modify PROOFKIT /dll OSETUP.DLL" REMOVESAMEVERSION="" COMPANYNAME="Sveio kommune" ARPENTRY_PRODUCTCODES="[~]{90150000-00C2-0409-0000-0000000FF1CE}[~]{90150000-001F-043E-0000-0000000FF1CE}[~]{90150000-001F-0421-0000-0000000FF1CE}[~]{90150000-001F-043F-0000-0000000FF1CE}[~]{90150000-001F-0420-0000-0000000FF1CE}[~]{90150000-001F-044B-0000-0000000FF1CE}[~]{90150000-001F-0449-0000-0000000FF1CE}[~]{90150000-001F-0447-0000-0000000FF1CE}[~]{90150000-001F-0427-0000-0000000FF1CE}[~]{90150000-001F-0426-0000-0000000FF1CE}[~]{90150000-001F-0425-0000-0000000FF1CE}[~]{90150000-001F-0424-0000-0000000FF1CE}[~]{90150000-001F-041A-0000-0000000FF1CE}[~]{90150000-001F-0418-0000-0000000FF1CE}[~]{90150000-001F-0402-0000-0000000FF1CE}[~]{90150000-001F-0422-0000-0000000FF1CE}[~]{90150000-001F-041B-0000-0000000FF1CE}[~]{90150000-001F-0408-0000-0000000FF1CE}[~]{90150000-001F-041F-0000-0000000FF1CE}[~]{90150000-001F-044A-0000-0000000FF1CE}[~]{90150000-001F-0419-0000-0000000FF1CE}[~]{90150000-001F-0415-0000-0000000FF1CE}[~]{90150000-001F-0446-0000-0000000FF1CE}[~]{90150000-001F-0414-0000-0000000FF1CE}[~]{90150000-001F-044E-0000-0000000FF1CE}[~]{90150000-001F-040E-0000-0000000FF1CE}[~]{90150000-001F-0439-0000-0000000FF1CE}[~]{90150000-001F-040D-0000-0000000FF1CE}[~]{90150000-001F-0406-0000-0000000FF1CE}[~]{90150000-001F-0405-0000-0000000FF1CE}[~]{90150000-001F-040B-0000-0000000FF1CE}[~]{90150000-001F-041D-0000-0000000FF1CE}[~]{90150000-001F-0456-0000-0000000FF1CE}[~]{90150000-001F-042D-0000-0000000FF1CE}[~]{90150000-001F-0403-0000-0000000FF1CE}[~]{90150000-001F-0413-0000-0000000FF1CE}[~]{90150000-001F-0410-0000-0000000FF1CE}[~]{90150000-001F-0407-0000-0000000FF1CE}[~]{90150000-001F-0416-0000-0000000FF1CE}[~]{90150000-001F-041E-0000-0000000FF1CE}[~]{90150000-001F-042A-0000-0000000FF1CE}[~]{90150000-001F-0409-0000-0000000FF1CE}[~]{90150000-001F-040C-0000-0000000FF1CE}[~]{90150000-001F-0401-0000-0000000FF1CE}[~]{90150000-001F-0404-0000-0000000FF1CE}[~]{90150000-001F-0411-0000-0000000FF1CE}[~]{90150000-001F-0412-0000-0000000FF1CE}[~]{90150000-001F-0C1A-0000-0000000FF1CE}[~]{90150000-001F-0C0A-0000-0000000FF1CE}[~]{90150000-001F-083E-0000-0000000FF1CE}[~]{90150000-001F-081A-0000-0000000FF1CE}[~]{90150000-001F-0816-0000-0000000FF1CE}[~]{90150000-001F-0814-0000-0000000FF1CE}[~]{90150000-001F-0804-0000-0000000FF1CE}[~]{90150000-00CC-0000-0000-0000000FF1CE}[~]" INSTALLLOCATION="C:\Program Files (x86)\Microsoft Office\" SLD_TRIALTYPE="0" ACIDS="86E17AEA-A932-42C4-8651-95DE6CB37A08" USERNAME="" SLD_PKU="0" SLD_PID="00216-60000-00000-AA472" SLD_DPID="#xF804000004000000380032003500300033002D00300032003100360036002D003000300030002D003000300030003000300030002D00300030002D0031003000340034002D0039003200300030002E0030003000300030002D0033003500360032003000310033000000000000000000000000000000000000000000000000000000000000000000380036006500310037006100650061002D0061003900330032002D0034003200630034002D0038003600350031002D00390035006400650036006300620033003700610030003800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500054004B004E006F006E006500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007608000000000C660646ED6028DB0800F963228D4DF4D7E66DCE6300666E5DC7BBCA3F62F099E5D16D5D54B8B14A0D4F7E634B904BD5706748E3B01FB3C58876B96CD63C0AF6DD9263D20EF6D7FAA5335800310038002D00330033003300320034000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520065007400610069006C0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006C00740046007200650065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" SLD_SUPPORTSBYPASS="0" SLD_OEMPIDKEY="0" SLD_LICENSETYPE="0" SLD_ACID="86E17AEA-A932-42C4-8651-95DE6CB37A08" USERINITIALS="" NOUSERNAME="1" ARPENTRY_SPPSKUID="[~]86E17AEA-A932-42C4-8651-95DE6CB37A08[~]" ARPENTRY_URLINFOABOUT="" ARPENTRY_CONTACT="" ARPENTRY_NOREMOVE="#0" ARPENTRY_NOMODIFY="#0" ARPENTRY_NOELEVATEONMODIFY="#0" ARPENTRY_NOREPAIR="#1" ARPENTRY_URLUPDATEINFO="" ARPENTRY_HELPLINK="" ARPENTRY_INSTALLLOCATION="C:\Program Files (x86)\Microsoft Office\" ARPENTRY_HELPTELEPHONE="" ARPENTRY_DISPLAYNAME="Microsoft Office Proofing Tools Kit Compilation 2013" ARPENTRY_DISPLAYVERSION="15.0.4481.1005" ARPENTRY_VERSIONMAJOR="#15" ARPENTRY_VERSIONMINOR="#0" ARPENTRY_CACHELOCATION="C:\MSOCache\All Users" ARPENTRY_SKUCOMPONENTS="[~]C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\PROOFKIT\setup.xml[~]C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\ProofMUI.en-us\setup.xml[~]" ARPENTRY_PACKAGEREFS="[~]ProofMUI.en-us[~]Proof.ar-sa[~]Proof.et-ee[~]Proof.pt-pt[~]Proof.vi-vn[~]Proof.eu-es[~]Proof.en-us[~]Proof.es-es[~]Proof.fr-fr[~]Proof.cs-cz[~]Proof.it-it[~]Proof.ko-kr[~]Proof.zh-tw[~]Proof.ja-jp[~]Proof.th-th[~]Proof.ms-my[~]Proof.zh-cn[~]Proof.pt-br[~]Proof.id-id[~]Proof.gu-in[~]Proof.de-de[~]Proof.sv-se[~]Proof.nl-nl[~]Proof.ca-es[~]Proof.pl-pl[~]Proof.gl-es[~]Proof.el-gr[~]Proof.fi-fi[~]Proof.da-dk[~]Proof.he-il[~]Proof.hi-in[~]Proof.hu-hu[~]Proof.ms-bn[~]Proof.mr-in[~]Proof.nn-no[~]Proof.nb-no[~]Proof.pa-in[~]Proof.ru-ru[~]Proof.ur-pk[~]Proof.ta-in[~]Proof.te-in[~]Proof.tr-tr[~]Proof.uk-ua[~]Proof.sk-sk[~]Proof.bg-bg[~]Proof.kk-kz[~]Proof.ro-ro[~]Proof.lv-lv[~]Proof.hr-hr[~]Proof.sl-si[~]Proof.lt-lt[~]Proof.sr-cyrl-cs[~]Proof.kn-in[~]Proof.sr-latn-cs[~]ProofKitWW[~]" SETUPEXE_DOARPWRITE="1" REBOOT=ReallySuppress LAUNCHEDBYSETUPEXE=1 MSIRESTARTMANAGERCONTROL="Disable" SETUPEXEINSTALLUILANGUAGE=1044 SETUPINTLDLLDIRECTORY="C:\Users\user\AppData\Local\Temp\Setup00000260\" ARPSYSTEMCOMPONENT=1 ALLUSERS="1"
    2013/12/22 23:13:02:536::[2128] PERF: TickCount=935321421 Name=MsiPackage::Install Description=Calling OMsiInstaller::InstallProduct for package file "C:\MSOCache\All Users\{90150000-00C2-0409-0000-0000000FF1CE}-C\ProofMUI.msi"
    2013/12/22 23:13:03:583::[2128] PERF: TickCount=935322468 Name=MsiPackage::Install Description=Returned from OMsiInstaller::InstallProduct
    2013/12/22 23:13:03:583::[2128] Successfully installed package: ProofMUI.en-us path:C:\MSOCache\All Users\{90150000-00C2-0409-0000-0000000FF1CE}-C\ProofMUI.msi
    2013/12/22 23:13:03:598::[2128] Executing chained package: Proof.vi-vn
    2013/12/22 23:13:03:598::[2128] Reading value of unintialized setting!
    2013/12/22 23:13:03:598::[2128] 12/22/2013 23:13:03 Installing chained package: Proof.vi-vn
    2013/12/22 23:13:03:598::[2128] PERF: TickCount=935322484 Name=Verify MSI local install source Description=Begin function
    2013/12/22 23:13:03:598::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:598::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:645::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:03:661::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:661::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:708::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:03:724::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:724::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:786::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:03:802::[2128] LIS: wait for package "{90150000-00CC-0000-0000-0000000FF1CE}" to complete caching
    2013/12/22 23:13:34:771::[2128] LIS failed to cache download "{90150000-00CC-0000-0000-0000000FF1CE}-C" resource "setup.dll". Cache Error 0x80070017
    2013/12/22 23:13:34:771::[2128] SupressModal flag is set. Skip showing Source Resolution Dialog
    2013/12/22 23:13:34:771::[2128] Source Resolution aborted
    2013/12/22 23:13:43:576::[2128] LIS failed to cache download "{90150000-00CC-0000-0000-0000000FF1CE}-C" resource "setup.exe". Cache Error 0x80070017
    2013/12/22 23:13:43:576::[2128] SupressModal flag is set. Skip showing Source Resolution Dialog
    2013/12/22 23:13:43:576::[2128] Source Resolution aborted
    2013/12/22 23:13:47:466::[2128] LIS failed to cache download "{90150000-00CC-0000-0000-0000000FF1CE}-C" resource "setup.dll". Cache Error 0x80070017
    2013/12/22 23:13:47:466::[2128] SupressModal flag is set. Skip showing Source Resolution Dialog
    2013/12/22 23:13:47:466::[2128] Source Resolution aborted
    2013/12/22 23:13:47:466::[2128] WER element [SuppressModal] is set to value [true]
    2013/12/22 23:13:47:466::[2128] WER element [P4] is set to value [0x80070017]
    2013/12/22 23:13:47:466::[2128] WER element [P7] is set to value [0x80070017]
    2013/12/22 23:13:47:466::[2128] WER element [P6] is set to value [LIS: Failed to cache download "%s" resource "%s".]
    2013/12/22 23:13:47:466::[2128] WER element [P6] is converted to [FB4645EA]
    2013/12/22 23:13:47:466::[2128] Error: LIS: Failed to cache download "{90150000-00CC-0000-0000-0000000FF1CE}-C" resource "setup.dll". HResult: 0x80070017.
    2013/12/22 23:13:47:466::[2128] Log level changed from: Standard to: Verbose
    2013/12/22 23:13:47:466::[2128] Rolling back chain
    2013/12/22 23:13:47:466::[2128] Error attaching to OSE, error 0x00000000
    2013/12/22 23:13:47:466::[2128] Stopping running ose
    2013/12/22 23:13:48:158::[2128] LIS: start uncaching for download "{90150000-00C2-0409-0000-0000000FF1CE}-C"
    2013/12/22 23:13:49:264::[2128] LIS: finished uncaching for download "{90150000-00C2-0409-0000-0000000FF1CE}-C"
    2013/12/22 23:13:49:264::[2128] LIS: start uncaching for download "{90150000-00CC-0000-0000-0000000FF1CE}-C"
    2013/12/22 23:13:49:420::[2128] LIS: finished uncaching for download "{90150000-00CC-0000-0000-0000000FF1CE}-C"
    2013/12/22 23:13:49:420::[2128] Error attaching to OSE, error 0x00000000
    2013/12/22 23:13:49:420::[2128] Stopping running ose
    2013/12/22 23:13:49:998::[2128] 12/22/2013 23:13:49 Rolling back MSI transaction.
    2013/12/22 23:13:49:998::[2128] MSI(INITIALIZE): '<NULL>'
    2013/12/22 23:13:49:998::[2128] MSI(COMMONDATA): '1: 2 2: 0 '
    2013/12/22 23:13:49:998::[2128] MSI(COMMONDATA): '1: 2 2: 0 '
    2013/12/22 23:13:49:998::[2128] MSI(COMMONDATA): '1: 0 2: 1033 3: 65001 '
    2013/12/22 23:13:49:998::[2128] MSI(COMMONDATA): '1: 1 2: Microsoft Office ProofMUI (English) 2013 '
    2013/12/22 23:13:50:045::[2128] MSI(COMMONDATA): '1: 2 2: 1 '
    2013/12/22 23:13:50:045::[2128] MSI(COMMONDATA): '1: 2 2: 1 '
    2013/12/22 23:13:50:061::[2128] MSI(TERMINATE): '<NULL>'
    2013/12/22 23:13:50:061::[2128] 12/22/2013 23:13:49 MSI transaction rolled back.
    2013/12/22 23:13:50:061::[2128] Unable to cancel a system restore point.
    2013/12/22 23:13:50:061::[2084] Not showing completion dialog because it was not requested.
    2013/12/22 23:13:50:061::[2084] Reboot requested if needed.
    2013/12/22 23:13:50:061::[2084] No reboot is needed.
    2013/12/22 23:13:50:061::[2084] Catalyst execution finished: 12/22/2013 23:13:50. Return code: -2147024873.
    2013/12/22 23:13:50:061::[2084] PERF: TickCount=935368953 Name=RunSetup Description=End function
    Hopefully it could help someone to detect and solve the problem.

  • Project 2010 SP1 Installation Crashes

    I'm trying to create a package that will handle both brand new installations for Project 2010 as well as upgrade installations for those running Project 2007, the latter of which represents a large population in our environment.
    I basically followed the same process I used when creating packages for Office 2007, Office 2010, Project 2007 and Visio 2007, all of which work today:
    run setup.exe /admin
    create a new .msp
    make my adjustments (very few)
    save into Updates directory
    customized PrjPro.WW\config.xml (after first creating a backup!)
    run setup.exe
    I'm testing the package on a machine that previously had Project 2007, but after running for a short time, setup crashes.  I thought maybe the problem was with the config.xml so I undid the changes one at a time, then moved up to restoring the orignal
    config.xml file but it continues to crash.
    There's a setup log in %temp% that contains what may be the core issue
    PERF: TickCount=2427515 Name=OBootStrapper::Run Description=Begin function
    Operating System version: 6.1.7601 Service Pack 1. Platform ID: 2
    Running 32-bit setup on a 32-bit operating system.
    Command line: "\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\setup.exe"
    No command line arguments given
    Verify file signature in "\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\setup.exe"
    \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\setup.exe is trusted.
    Verify file signature in "\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\OSETUP.DLL"
    \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\OSETUP.DLL is trusted.
    Using setup controller dll at [\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\OSETUP.DLL].
    PERF: TickCount=2428342 Name=OBootStrapper::Run Description=Calling RunSetup
    PERF: TickCount=2428342 Name=RunSetup Description=Begin function
    Catalyst execution began: 03/07/2014 13:30:43.
    Setupexe Resiliency Mode is set to [PerformIfApplicable]; thus Resiliency is [disabled] for the [InstallExecutionMode]
    Searching for updated versions of resource files under the 'updates' folder [\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\updates].
    Found [0] resource files under the update folder.
    Searching for default versions of resource files under the folder [\\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660].
    Found [1] resource files under the default folder.
    Running in [InstallExecutionMode]. Run from TEMP folder at [C:\Users\myuserid\AppData\Local\Temp\Setup00001fb8].
    Loaded resource file [C:\Users\myuserid\AppData\Local\Temp\Setup00001fb8\OSETUPUI.DLL] (CultureTag=en-US).
    Loaded Dll : \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\OSETUP.DLL.
    Catalyst version is : 14.0.4755.1000
    JobExecutionMode is InstallExecutionMode.
    Check if Office is supported on Windows 6.1.7601
    Checking if CLSID_DOMDocument60 can be created.
    Checking the version of MSXML6.
    MSXML version check passed. Minimum required version is [6.10.1129], installed Version is [6.30.7601.17988].
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-0115-0409-0000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-0116-0409-1000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-003B-0000-0000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-00B4-0409-0000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-002C-0409-0000-0000000FF1CE}"
    LIS: start parsing setup xml
    LIS: finished parsing LIS package "{90140000-0010-0409-0000-0000000FF1CE}"
    Product: PRJPRO
    AddOnGroup Culture: en-us
    AddOnId: OFFICE.EN-US
    AddOnId: PROJECT.EN-US
    AddOnId: PROOFING.EN-US
    No upgradable applications found
    Parsing config.xml at: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\config.xml
    Preferred product specified in config.xml to be: PRJPRO
    Parsed setting: SETUP_REBOOT with value: Never in config.xml.
    Logging type verbose specified in config.xml.
    Log directory: C:\Users\myuserid\AppData\Local\Temp specified in config.xml
    Log file template: Microsoft Office Project Professional Setup(*).txt specified in config.xml
    COMPANYNAME specified in config.xml.
    USERNAME specified in config.xml.
    Product Deployment Mode: PerMachineManaged
    Target Deployment Account Security Identifier: S-1-5-18
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Office.en-us\OfficeMUI.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Office.en-us\OfficeMUISet.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Proofing.en-us\Proof.es\Proof.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Proofing.en-us\Proof.fr\Proof.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Proofing.en-us\Proof.en\Proof.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Proofing.en-us\Proofing.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\Project.en-us\ProjectMUI.xml
    Loading package metadata: \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\PrjProWW.xml
    Reading value of unintialized setting!
    BRANDING: Parsing Branding Data...
    BRANDING: Parsing Branding Data...
    Pidkey specified in config.xml or setup.xml file. Skipping PidKey view.
    Kicking off chained install...
    PERF: TickCount=2434333 Name=Job::DoCacheWork Description=Begin function
    OSE is detected as a registered service. Service binary is reported at location: C:\Program Files\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    OSE service binary is detected at location: C:\Program Files\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    OSE is avaliable at C:\Program Files\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    This OSE has version: 12.0.4518.1014. Skip using this version of OSE because its version is too low.
    Running Source Engine process detected
    Running version: 12.0.4518.1014
    Error checking already running ose version. Error code 0x00000000
    Stopping running the problematic Source Engine process
    Error attaching to OSE, error 0x00000000
    Cannot start standalone OSE. from \\path\to\Microsoft Project 2010\SW_DVD5_Project_Pro_2010w_SP1_W32_English_MLF_X17-76660\PrjPro.WW\ose.exe. Error code: 0x80070102
    Error: Unable to select Source Engine process to start, see debug level logs for detail Type: 88::UnexpectedError.
    Error: Unable to select Source Engine process to start, see debug level logs for detail Type: 88::UnexpectedError.
    Error: Unable to select Source Engine process to start, see debug level logs for detail Type: 88::UnexpectedError.
    Error: Unable to select Source Engine process to start, see debug level logs for detail Type: 88::UnexpectedError.
    Catalyst execution finished: 03/07/2014 13:32:07. Return code: 30088. Exception caught: UnexpectedError.
    PERF: TickCount=2511881 Name=RunSetup Description=End function
    I've checked a few things but I can't figure this out
    restored config.xml
    used no msp
    Office Source Engine (OSE) service startup type is set to 'Manual'
    copied ose.exe again from DVD
    copied entire DVD over again
    I'm beginning to wonder if there's an issue with the existing Project 2007 installation, or the way it was uninstalled [by the Project 2010 setup] - but maybe its something altogether different.
    Any advice is greatly appreciated.

    My point above is that Project 2007 was extremely buggy and unless files are saved using Project 2007 SP3 first you are likely to experience problems with the files when opening in project 2010. Project 2007 to 2010 with no service packs is problematic.
    With SPs applied you should have far fewer problems.
    Doesn't look like a exe with SP2 is available yet so you need to add the service pack separately, probably in the updates folder.
    If all Project 2007 installs are already at SP3 then no need for this.
    Rod Gill
    Author of the one and only Project VBA Book
    www.project-systems.co.nz

  • Ovmapi_4004e server failed error while creating a PVM from  FTP network pat

    Hi,
    I'm trying to create a PVM on OVM 3.0.3 using an ftp server to use an ISO for a Linux 5 installation.
    In the create virtual machine wizard for the network path (in boot options) I am specifying:
    ftp://oracle:[email protected]/home/oracle/iso/OEL56/
    The above link opens up in a browser and I can see the mounted iso.
    I mounted the iso as:
    cd /home/oracle
    mkdir /iso/OEL56/
    mount -o ro,loop /ovm_iso/linux/Enterprise-R5-U6-Server-x86_64-dvd.iso /home/oracle/iso/OEL56/
    But Starting the VM fails with "ovmapi_4004e server failed" and "Boot loader didn't return any data". I'm assuming it can't read from the iso during boot.
    Is there anything wrong with the ftp path . Are non-anonymous ftp users (oracle in this case) allowed or do I need to use anonymous logon.
    Regards,
    Shahab.

    Hi ,
    I went a step further by using anyonymous ftp in the network path . (rather than user : password) and the VM started .
    The VM boots OK from the staged iso (also tried full DVD contents) and brings up linux installation in text mode only , but for ftp installation mode after asking for the ftp server and directory (which it doesn't take on first attempt) it gives an error "Unable to read package metadata . This may be due to a missing repository directory. Please ensure your install tree has been correctly generated" . It seems its not finding the ftp directory path , although initially it was able to boot from the same ftp path specified in the Network path of the VM configuration wizard.
    Regards,
    Shahab.

  • XBMC freezes on exit

    Hi, I have XMBC installed on my arch system and everytime I want to exit it, it entirely freezes and I have to kill it from system monitor (it happens every time so now I run it in windowed mode so I wont have to restart comp every time I test something).
    program isnt laggy or anything while Im at it, its just when I exit that it totally freezes, the log states its a python or pulseaudio error of some kind but I have no idea on how to proceed.
    Here is the final lines of log:
    02:06:51 T:139798811465760 M:7237722112 ERROR: PulseAudio: Waited for the Context but it failed
    02:06:51 T:139798811465760 M:7237722112 ERROR: PulseAudio: Failed to create context
    02:06:51 T:139798811465760 M:7237476352 WARNING: Failed to find previously selected audio sink
    02:06:51 T:139798811465760 M:7237476352 ERROR: PulseAudio: Waited for the Context but it failed
    02:06:51 T:139798811465760 M:7237476352 ERROR: PulseAudio: Failed to create context
    02:06:51 T:139798811465760 M:7237730304 WARNING: Failed to find previously selected audio sink
    02:06:51 T:139798811465760 M:7237689344 ERROR: PulseAudio: Waited for the Context but it failed
    02:06:51 T:139798811465760 M:7237689344 ERROR: PulseAudio: Failed to create context
    02:06:51 T:139798811465760 M:7237689344 WARNING: Failed to find previously selected audio sink
    02:06:51 T:139798811465760 M:7237689344 ERROR: PulseAudio: Waited for the Context but it failed
    02:06:51 T:139798811465760 M:7237689344 ERROR: PulseAudio: Failed to create context
    02:06:51 T:139798811465760 M:7237689344 WARNING: Failed to find previously selected audio sink
    02:06:54 T:139798498129664 M:7237787648 WARNING: FillBuffer: curl failed with code 28
    02:06:54 T:139798498129664 M:7237787648 ERROR: CFileCurl::CReadState::Open, didn't get any data from stream.
    02:07:09 T:139798498129664 M:7237672960 ERROR: DeleteFile - cant delete file </home/x1r1/.xbmc/addons/packages/metadata.common.themoviedb.org-1.1.0.zip>. trying lower case </home/x1r1/.xbmc/addons/packages/metadata.common.themoviedb.org-1.1.0.zip>
    02:07:29 T:139798498129664 M:7233556480 ERROR: DeleteFile - cant delete file </home/x1r1/.xbmc/addons/packages/script.recentlyadded-2.0.5.zip>. trying lower case </home/x1r1/.xbmc/addons/packages/script.recentlyadded-2.0.5.zip>
    02:07:29 T:139798811465760 M:7233556480 NOTICE: Storing total System Uptime
    02:07:29 T:139798811465760 M:7233556480 NOTICE: Saving settings
    02:07:29 T:139798811465760 M:7233556480 NOTICE: stop all
    02:07:29 T:139798811465760 M:7233556480 NOTICE: ES: Stopping event server
    02:07:30 T:139798458251008 M:7233593344 NOTICE: ES: UDP Event server stopped
    02:07:30 T:139798475036416 M:7233593344 NOTICE: DS: DBUS server stopped
    02:07:30 T:139798811465760 M:7233593344 NOTICE: stop dvd detect media
    02:07:30 T:139798811465760 M:7233593344 NOTICE: stop sap announcement listener
    02:07:30 T:139798811465760 M:7233593344 NOTICE: clean cached files!
    02:07:30 T:139798811465760 M:7233593344 NOTICE: unload skin
    02:07:30 T:139798811465760 M:7233593344 NOTICE: stop python
    Is pulseaudio a requirement for XBMC? Im using alsa only
    Also important note, I am using the nouveau drivers
    hope you guys can help!
    cheers

    UPDATE
    Just been messing aroud and I have discovered this:
    I installed Xbmc on my main desktop and exit/shutdown/restart all worked perfectly.
    Thinking it may have been a corrupt download I did the following on my media box:
    pacman -Rs xbmc
    pacman -Scc
    pacman -S xbmc
    Removing Xbmc and purging my package cache to force a download when I re-installed it
    Still no go.
    So then I tried on my netbook.
    Xbmc installed and locked up on exit/shutdown/reboot as on my media box.
    The main difference I could come up with between my netbook/media box and the main desktop is the first 2 are intel video chips (xf86-video-intel), whereas my main desktop is nvidia (closed drivers).
    So I uninstalled xf86-video-intel from the media box and replaced it with xf86-video-vesa. Upon booting Xbmc, exit/shutdown/reboot are now working.
    So it appears to be an intel driver or X combined with intel issue - at least for me.
    Hopefully this can promt someone with some more know-how into a solution.
    Cheers.
    UPDATE
    A little more investigation and it seems to be DRI (in my case) disabling DRI solves the problem, but of course, everything slows to a crawl. And it does make sense that it is the intel driver, as in my media box, all was well until I got the 16 June update to the driver. Since then, it went pear shaped.
    Still investigating........
    Last edited by Padfoot (2011-07-09 08:55:47)

Maybe you are looking for