Link to home
Start Free TrialLog in
Avatar of andrewl77
andrewl77

asked on

VS2010 Build fails to install

I have created an application in C# visual studio 2010.

The application works fine in debug mode and builds successfully. The application has three aspects to the solution. When i build and deploy the setup file i get an error on the install as soon as i click install in the steps/wizard.

The error says Installation Incomplete, The installer was interuppted before InvoiceProcess could be installed. You need to restart the installer to try again.

When i restart i get the same error.

Both the development machine and machine to deploy on are both 64 bit windows 10.

What could be causing this?
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

you will have to go into the installation logs
https://msdn.microsoft.com/en-us/library/ms228671.aspx
Avatar of andrewl77
andrewl77

ASKER

Here is the xml view of what the event log has:
Log Name:      Application
Source:        MsiInstaller
Date:          15/03/2017 7:13:09 PM
Event ID:      1033
Task Category: None
Level:         Information
Keywords:      Classic
User:          TASKBAYGRP\andrew
Computer:      Taskbay.TASKBAYGRP.local
Description:
Windows Installer installed the product. Product Name: InvoiceProcess. Product Version: 1.0.0. Product Language: 1033. Manufacturer: Default Company Name. Installation success or error status: 1603.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="MsiInstaller" />
    <EventID Qualifiers="0">1033</EventID>
    <Level>4</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2017-03-15T08:13:09.584433200Z" />
    <EventRecordID>9693</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Taskbay.TASKBAYGRP.local</Computer>
    <Security UserID="S-1-5-21-4130631398-1089863894-3256803912-1117" />
  </System>
  <EventData>
    <Data>InvoiceProcess</Data>
    <Data>1.0.0</Data>
    <Data>1033</Data>
    <Data>1603</Data>
    <Data>Default Company Name</Data>
    <Data>(NULL)</Data>
    <Data>
    </Data>
    <Binary>7B37453231453344372D394135332D344437382D424631412D4144423937423243323042377D3030303038613166643732353766333661366538326261343964396336623365663336343030303030393034</Binary>
  </EventData>
</Event>
And the previous event:
Log Name:      Application
Source:        MsiInstaller
Date:          15/03/2017 7:13:09 PM
Event ID:      11708
Task Category: None
Level:         Information
Keywords:      Classic
User:          TASKBAYGRP\andrew
Computer:      Taskbay.TASKBAYGRP.local
Description:
Product: InvoiceProcess -- Installation failed.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="MsiInstaller" />
    <EventID Qualifiers="0">11708</EventID>
    <Level>4</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2017-03-15T08:13:09.584433200Z" />
    <EventRecordID>9692</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Taskbay.TASKBAYGRP.local</Computer>
    <Security UserID="S-1-5-21-4130631398-1089863894-3256803912-1117" />
  </System>
  <EventData>
    <Data>Product: InvoiceProcess -- Installation failed.</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>
    </Data>
    <Binary>7B37453231453344372D394135332D344437382D424631412D4144423937423243323042377D</Binary>
  </EventData>
</Event>
I didn't say the event viewer logs you need the installation log
This is the other log file after turning on install logging.

The following properties have been set:
Property: [AdminUser] = true {boolean}
Property: [InstallMode] = HomeSite {string}
Property: [ProcessorArchitecture] = AMD64 {string}
Property: [VersionNT] = 6.2.0 {version}
Running checks for package 'Windows Installer 3.1', phase BuildList
The following properties have been set for package 'Windows Installer 3.1':
Running checks for command 'WindowsInstaller3_1\WindowsInstaller-KB893803-v2-x86.exe'
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'VersionMsi' and value '3.1': true
Result of checks for command 'WindowsInstaller3_1\WindowsInstaller-KB893803-v2-x86.exe' is 'Bypass'
'Windows Installer 3.1' RunCheck result: No Install Needed
Running checks for package 'Microsoft .NET Framework 4 Client Profile (x86 and x64)', phase BuildList
Reading value 'Version' of registry key 'HKLM\Software\Microsoft\NET Framework Setup\NDP\v4\Client'
Read string value '4.6.01586'
Setting value '4.6.01586 {string}' for property 'DotNet40Client_TargetVersion'
The following properties have been set for package 'Microsoft .NET Framework 4 Client Profile (x86 and x64)':
Property: [DotNet40Client_TargetVersion] = 4.6.01586 {string}
Running checks for command 'DotNetFX40Client\dotNetFx40_Client_x86_x64.exe'
Result of running operator 'ValueEqualTo' on property 'InstallMode' and value 'HomeSite': true
Result of checks for command 'DotNetFX40Client\dotNetFx40_Client_x86_x64.exe' is 'Bypass'
Running checks for command 'DotNetFX40Client\dotNetFx40_Client_setup.exe'
Result of running operator 'ValueNotEqualTo' on property 'InstallMode' and value 'HomeSite': false
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'DotNet40Client_TargetVersion' and value '4.0.30129': true
Result of checks for command 'DotNetFX40Client\dotNetFx40_Client_setup.exe' is 'Bypass'
'Microsoft .NET Framework 4 Client Profile (x86 and x64)' RunCheck result: No Install Needed
Launching Application.
Running command 'C:\Windows\SysWOW64\msiexec.exe' with arguments ' -I "\\TASKBAYSERVER\Shared Folders\Users\andrew\InvoiceProcess.msi" '
Any ideas from anyone?
Still banging my head against the brick wall on this.  I changed setup compiler and appeared to have more success but no.  What i have been able to diagnose is that the install file work when installing on my dev machine but not on the new pc i am deploying.

I checked the redistribution and .net pack and all is the same.  

I changed the setup so that it allows install on 32 and 64 bit OS but still nothing.  Any ideas on what this could be?
This is still not enough information to diagnose the problem. The installation log shows that there was no failure on the prerequisites and your InvoiceProcess.msi was successfully executed. This only tells me that the problem is isolated to the MSI.

If there is more information the please provide. Without any more information, I would suggest creating a new installer and try again.
Hi Richard,  I tried that last night.  The part I find interesting is that the installer works and executes fine on the dev machine but not on the deploying machine.

Any ways to get better logging on where the failure is beyond what has been done?
Try this command to get verbose logging:

misexec /i mysetup.msi /l*v mylog.txt

Open in new window


Reference: https://msdn.microsoft.com/en-us/library/kz0ke5xt(v=vs.100).aspx
here is what it gave me as the log:

=== Verbose logging started: 29/03/2017  23:17:05  Build type: SHIP UNICODE 5.00.10011.00  Calling process: C:\Windows\system32\msiexec.exe ===
MSI (c) (5C:B4) [23:17:05:376]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg

MSI (c) (5C:B4) [23:17:05:376]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg

MSI (c) (5C:0C) [23:17:05:392]: Resetting cached policy values
MSI (c) (5C:0C) [23:17:05:392]: Machine policy value 'Debug' is 0
MSI (c) (5C:0C) [23:17:05:392]: ******* RunEngine:
           ******* Product: invoiceprocess.msi
           ******* Action:
           ******* CommandLine: **********
MSI (c) (5C:0C) [23:17:05:407]: Machine policy value 'DisableUserInstalls' is 0
MSI (c) (5C:0C) [23:17:05:423]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
MSI (c) (5C:0C) [23:17:05:423]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi' against software restriction policy
MSI (c) (5C:0C) [23:17:05:438]: Note: 1: 2262 2: DigitalSignature 3: -2147287038
MSI (c) (5C:0C) [23:17:05:438]: SOFTWARE RESTRICTION POLICY: C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi is not digitally signed
MSI (c) (5C:0C) [23:17:05:438]: SOFTWARE RESTRICTION POLICY: C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi is permitted to run at the 'unrestricted' authorization level.
MSI (c) (5C:0C) [23:17:05:454]: Cloaking enabled.
MSI (c) (5C:0C) [23:17:05:454]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (5C:0C) [23:17:05:454]: End dialog not enabled
MSI (c) (5C:0C) [23:17:05:454]: Original package ==> C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi
MSI (c) (5C:0C) [23:17:05:454]: Package we're running from ==> C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi
MSI (c) (5C:0C) [23:17:05:454]: APPCOMPAT: Compatibility mode property overrides found.
MSI (c) (5C:0C) [23:17:05:470]: APPCOMPAT: looking for appcompat database entry with ProductCode '{7E21E3D7-9A53-4D78-BF1A-ADB97B2C20B7}'.
MSI (c) (5C:0C) [23:17:05:470]: APPCOMPAT: no matching ProductCode found in database.
MSI (c) (5C:0C) [23:17:05:470]: MSCOREE not loaded loading copy from system32
MSI (c) (5C:0C) [23:17:05:485]: Machine policy value 'TransformsSecure' is 0
MSI (c) (5C:0C) [23:17:05:485]: User policy value 'TransformsAtSource' is 0
MSI (c) (5C:0C) [23:17:05:485]: Note: 1: 2205 2:  3: MsiFileHash
MSI (c) (5C:0C) [23:17:05:485]: Machine policy value 'DisablePatch' is 0
MSI (c) (5C:0C) [23:17:05:485]: Machine policy value 'AllowLockdownPatch' is 0
MSI (c) (5C:0C) [23:17:05:485]: Machine policy value 'DisableMsi' is 0
MSI (c) (5C:0C) [23:17:05:485]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (c) (5C:0C) [23:17:05:485]: User policy value 'AlwaysInstallElevated' is 0
MSI (c) (5C:0C) [23:17:05:485]: Running product '{7E21E3D7-9A53-4D78-BF1A-ADB97B2C20B7}' with user privileges: It's not assigned.
MSI (c) (5C:0C) [23:17:05:485]: Machine policy value 'DisableLUAPatching' is 0
MSI (c) (5C:0C) [23:17:05:485]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (c) (5C:0C) [23:17:05:485]: APPCOMPAT: looking for appcompat database entry with ProductCode '{7E21E3D7-9A53-4D78-BF1A-ADB97B2C20B7}'.
MSI (c) (5C:0C) [23:17:05:485]: APPCOMPAT: no matching ProductCode found in database.
MSI (c) (5C:0C) [23:17:05:485]: Transforms are not secure.
MSI (c) (5C:0C) [23:17:05:485]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\andrew.TASKBAYGRP\Documents\Install\mylog.txt'.
MSI (c) (5C:0C) [23:17:05:485]: Command Line: CURRENTDIRECTORY=C:\Users\andrew.TASKBAYGRP\Documents\Install CLIENTUILEVEL=0 CLIENTPROCESSID=9564
MSI (c) (5C:0C) [23:17:05:485]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{039A1507-3EF0-4824-92B9-F77F9C5FEB7A}'.
MSI (c) (5C:0C) [23:17:05:485]: Product Code passed to Engine.Initialize:           ''
MSI (c) (5C:0C) [23:17:05:485]: Product Code from property table before transforms: '{7E21E3D7-9A53-4D78-BF1A-ADB97B2C20B7}'
MSI (c) (5C:0C) [23:17:05:485]: Product Code from property table after transforms:  '{7E21E3D7-9A53-4D78-BF1A-ADB97B2C20B7}'
MSI (c) (5C:0C) [23:17:05:485]: Product not registered: beginning first-time install
MSI (c) (5C:0C) [23:17:05:485]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
MSI (c) (5C:0C) [23:17:05:485]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (c) (5C:0C) [23:17:05:485]: User policy value 'SearchOrder' is 'nmu'
MSI (c) (5C:0C) [23:17:05:485]: Adding new sources is allowed.
MSI (c) (5C:0C) [23:17:05:501]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
MSI (c) (5C:0C) [23:17:05:501]: Package name extracted from package path: 'invoiceprocess.msi'
MSI (c) (5C:0C) [23:17:05:501]: Package to be registered: 'InvoiceProcess.msi'
MSI (c) (5C:0C) [23:17:05:501]: Note: 1: 2262 2: AdminProperties 3: -2147287038
MSI (c) (5C:0C) [23:17:05:501]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (c) (5C:0C) [23:17:05:501]: User policy value 'AlwaysInstallElevated' is 0
MSI (c) (5C:0C) [23:17:05:501]: Running product '{7E21E3D7-9A53-4D78-BF1A-ADB97B2C20B7}' with user privileges: It's not assigned.
MSI (c) (5C:0C) [23:17:05:501]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\andrew.TASKBAYGRP\Documents\Install'.
MSI (c) (5C:0C) [23:17:05:501]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '0'.
MSI (c) (5C:0C) [23:17:05:501]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '9564'.
MSI (c) (5C:0C) [23:17:05:501]: PROPERTY CHANGE: Adding MsiSystemRebootPending property. Its value is '1'.
MSI (c) (5C:0C) [23:17:05:501]: TRANSFORMS property is now:
MSI (c) (5C:0C) [23:17:05:501]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\Favorites
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Network Shortcuts
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\Documents
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Recent
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\SendTo
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Templates
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\ProgramData
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Local
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\Pictures
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\andrew.TASKBAYGRP\Desktop
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
MSI (c) (5C:0C) [23:17:05:501]: SHELL32::SHGetFolderPath returned: C:\WINDOWS\Fonts
MSI (c) (5C:0C) [23:17:05:517]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
MSI (c) (5C:0C) [23:17:05:517]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (c) (5C:0C) [23:17:05:517]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'officewoks'.
MSI (c) (5C:0C) [23:17:05:517]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (c) (5C:0C) [23:17:05:517]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi'.
MSI (c) (5C:0C) [23:17:05:517]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi'.
MSI (c) (5C:0C) [23:17:05:517]: Machine policy value 'MsiDisableEmbeddedUI' is 0
MSI (c) (5C:0C) [23:17:05:517]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\andrew.TASKBAYGRP\Documents\Install\'.
MSI (c) (5C:0C) [23:17:05:517]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\andrew.TASKBAYGRP\Documents\Install\'.
MSI (c) (5C:B4) [23:17:05:532]: PROPERTY CHANGE: Adding VersionHandler property. Its value is '5.00'.
=== Logging started: 29/03/2017  23:17:05 ===
MSI (c) (5C:0C) [23:17:05:548]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (c) (5C:0C) [23:17:05:548]: Machine policy value 'DisableRollback' is 0
MSI (c) (5C:0C) [23:17:05:548]: User policy value 'DisableRollback' is 0
MSI (c) (5C:0C) [23:17:05:548]: PROPERTY CHANGE: Adding UILevel property. Its value is '5'.
MSI (c) (5C:0C) [23:17:05:563]: Note: 1: 2203 2: C:\WINDOWS\Installer\inprogressinstallinfo.ipi 3: -2147287038
MSI (c) (5C:0C) [23:17:05:563]: APPCOMPAT: [DetectVersionLaunchCondition] Launch condition already passes.
MSI (c) (5C:0C) [23:17:05:563]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (c) (5C:0C) [23:17:05:563]: Doing action: INSTALL
Action 23:17:05: INSTALL.
Action start 23:17:05: INSTALL.
MSI (c) (5C:0C) [23:17:05:563]: UI Sequence table 'InstallUISequence' is present and populated.
MSI (c) (5C:0C) [23:17:05:563]: Running UISequence
MSI (c) (5C:0C) [23:17:05:563]: PROPERTY CHANGE: Adding EXECUTEACTION property. Its value is 'INSTALL'.
MSI (c) (5C:0C) [23:17:05:579]: Doing action: AI_SET_INSTALL
Action 23:17:05: AI_SET_INSTALL.
Action start 23:17:05: AI_SET_INSTALL.
MSI (c) (5C:0C) [23:17:05:579]: PROPERTY CHANGE: Adding AI_INSTALL property. Its value is '1'.
Action ended 23:17:05: AI_SET_INSTALL. Return value 1.
MSI (c) (5C:0C) [23:17:05:579]: Skipping action: AI_SET_MAINT (condition is false)
MSI (c) (5C:0C) [23:17:05:579]: Skipping action: AI_SET_RESUME (condition is false)
MSI (c) (5C:0C) [23:17:05:579]: Skipping action: AI_SET_PATCH (condition is false)
MSI (c) (5C:0C) [23:17:05:579]: Skipping action: AI_CORRECT_INSTALL (condition is false)
MSI (c) (5C:0C) [23:17:05:579]: Doing action: AI_DETECT_MODERNWIN
Action 23:17:05: AI_DETECT_MODERNWIN.
Action start 23:17:05: AI_DETECT_MODERNWIN.
MSI (c) (5C:D0) [23:17:05:579]: Invoking remote custom action. DLL: C:\Users\ANDREW~1.TAS\AppData\Local\Temp\MSIE78B.tmp, Entrypoint: DetectModernWindows
MSI (c) (5C:E0) [23:17:05:579]: Cloaking enabled.
MSI (c) (5C:E0) [23:17:05:579]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (5C:E0) [23:17:05:579]: Connected to service for CA interface.
MSI (c) (5C!74) [23:17:05:938]: PROPERTY CHANGE: Modifying VersionNT property. Its current value is '603'. Its new value: '1000'.
MSI (c) (5C!74) [23:17:05:938]: PROPERTY CHANGE: Modifying VersionNT64 property. Its current value is '603'. Its new value: '1000'.
MSI (c) (5C!74) [23:17:05:938]: PROPERTY CHANGE: Modifying WindowsBuild property. Its current value is '9600'. Its new value: '14393'.
Action ended 23:17:05: AI_DETECT_MODERNWIN. Return value 1.
MSI (c) (5C:0C) [23:17:05:938]: Doing action: AI_EnableDebugLog
Action 23:17:05: AI_EnableDebugLog.
Action start 23:17:05: AI_EnableDebugLog.
MSI (c) (5C:74) [23:17:05:938]: Invoking remote custom action. DLL: C:\Users\ANDREW~1.TAS\AppData\Local\Temp\MSIE8F4.tmp, Entrypoint: EnableDebugLog
AI_EnableDebugLog: Log disabled
Action ended 23:17:06: AI_EnableDebugLog. Return value 1.
MSI (c) (5C:0C) [23:17:06:126]: Doing action: AI_DpiContentScale
Action 23:17:06: AI_DpiContentScale.
Action start 23:17:06: AI_DpiContentScale.
MSI (c) (5C:28) [23:17:06:126]: Invoking remote custom action. DLL: C:\Users\ANDREW~1.TAS\AppData\Local\Temp\MSIE9B0.tmp, Entrypoint: DpiContentScale
MSI (c) (5C!B0) [23:17:06:298]: PROPERTY CHANGE: Adding AI_SYSTEM_DPI property. Its value is '96'.
MSI (c) (5C!B0) [23:17:06:298]: PROPERTY CHANGE: Adding AI_SYSTEM_DPI_SCALE property. Its value is '100'.
Action ended 23:17:06: AI_DpiContentScale. Return value 1.
MSI (c) (5C:0C) [23:17:06:298]: Doing action: AI_ResolveKnownFolders
Action 23:17:06: AI_ResolveKnownFolders.
Action start 23:17:06: AI_ResolveKnownFolders.
MSI (c) (5C:80) [23:17:06:313]: Invoking remote custom action. DLL: C:\Users\ANDREW~1.TAS\AppData\Local\Temp\MSIEA6D.tmp, Entrypoint: AI_ResolveKnownFolders
MSI (c) (5C!F8) [23:17:06:517]: PROPERTY CHANGE: Adding SavedGamesFolder property. Its value is 'C:\Users\andrew.TASKBAYGRP\Saved Games\'.
MSI (c) (5C!F8) [23:17:06:532]: PROPERTY CHANGE: Adding WindowsLibrariesFolder property. Its value is 'C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Libraries\'.
MSI (c) (5C!F8) [23:17:06:532]: PROPERTY CHANGE: Adding PublicDocumentsFolder property. Its value is 'C:\Users\Public\Documents\'.
MSI (c) (5C!F8) [23:17:06:532]: PROPERTY CHANGE: Adding PublicFolder property. Its value is 'C:\Users\Public\'.
Action ended 23:17:06: AI_ResolveKnownFolders. Return value 1.
MSI (c) (5C:0C) [23:17:06:532]: Doing action: PrepareDlg
Action 23:17:06: PrepareDlg.
Action start 23:17:06: PrepareDlg.
Info 2898. For VerdanaBold13 textstyle, the system created a 'Verdana' font, in 0 character set.
Info 2898. For DlgFont8 textstyle, the system created a 'Tahoma' font, in 0 character set.
Info 2826. Control BottomLine on dialog PrepareDlg extends beyond the boundaries of the dialog to the right by 3 pixels.
Action 23:17:06: PrepareDlg. Dialog created
Action ended 23:17:06: PrepareDlg. Return value 1.
MSI (c) (5C:0C) [23:17:06:610]: Doing action: AI_POP_UP
Action 23:17:06: AI_POP_UP.
Action start 23:17:06: AI_POP_UP.
MSI (c) (5C:00) [23:17:06:626]: Invoking remote custom action. DLL: C:\Users\ANDREW~1.TAS\AppData\Local\Temp\MSIEB96.tmp, Entrypoint: TrialMessage
This package was created with a trial version of Advanced Installer. You may use it for evaluation purposes only.
Action ended 23:17:08: AI_POP_UP. Return value 1.
MSI (c) (5C:0C) [23:17:08:501]: Doing action: AppSearch
Action 23:17:08: AppSearch. Searching for installed applications
Action start 23:17:08: AppSearch.
MSI (c) (5C:0C) [23:17:08:501]: Note: 1: 2205 2:  3: AppSearch
MSI (c) (5C:0C) [23:17:08:501]: Note: 1: 2228 2:  3: AppSearch 4: SELECT `Property`, `Signature_` FROM `AppSearch`
Action ended 23:17:08: AppSearch. Return value 0.
MSI (c) (5C:0C) [23:17:08:501]: Doing action: FindRelatedProducts
Action 23:17:08: FindRelatedProducts. Searching for related applications
Action start 23:17:08: FindRelatedProducts.
Action ended 23:17:08: FindRelatedProducts. Return value 1.
MSI (c) (5C:0C) [23:17:08:501]: Skipping action: AI_DOWNGRADE (condition is false)
MSI (c) (5C:0C) [23:17:08:501]: Doing action: LaunchConditions
Action 23:17:08: LaunchConditions. Evaluating launch conditions
Action start 23:17:08: LaunchConditions.
Action ended 23:17:08: LaunchConditions. Return value 1.
MSI (c) (5C:0C) [23:17:08:517]: Doing action: AI_SETMIXINSTLOCATION
Action 23:17:08: AI_SETMIXINSTLOCATION.
Action start 23:17:08: AI_SETMIXINSTLOCATION.
MSI (c) (5C:50) [23:17:08:517]: Invoking remote custom action. DLL: C:\Users\ANDREW~1.TAS\AppData\Local\Temp\MSIF30A.tmp, Entrypoint: MixedAllUsersInstallLocation
MSI (c) (5C!2C) [23:17:08:735]: PROPERTY CHANGE: Adding AI_UserProgramFiles property. Its value is 'C:\Users\andrew.TASKBAYGRP\AppData\Local\Programs\'.
Action ended 23:17:08: AI_SETMIXINSTLOCATION. Return value 1.
MSI (c) (5C:0C) [23:17:08:751]: Doing action: AI_RESTORE_LOCATION
Action 23:17:08: AI_RESTORE_LOCATION.
Action start 23:17:08: AI_RESTORE_LOCATION.
MSI (c) (5C:84) [23:17:08:767]: Invoking remote custom action. DLL: C:\Users\ANDREW~1.TAS\AppData\Local\Temp\MSIF3F5.tmp, Entrypoint: RestoreLocation
Action ended 23:17:08: AI_RESTORE_LOCATION. Return value 1.
MSI (c) (5C:0C) [23:17:08:938]: Doing action: SET_APPDIR
Action 23:17:08: SET_APPDIR.
Action start 23:17:08: SET_APPDIR.
MSI (c) (5C:0C) [23:17:08:954]: PROPERTY CHANGE: Adding APPDIR property. Its value is 'C:\Program Files\Easy AP\InvoiceProcess'.
Action ended 23:17:08: SET_APPDIR. Return value 1.
MSI (c) (5C:0C) [23:17:08:954]: Doing action: SET_SHORTCUTDIR
Action 23:17:08: SET_SHORTCUTDIR.
Action start 23:17:08: SET_SHORTCUTDIR.
MSI (c) (5C:0C) [23:17:08:954]: PROPERTY CHANGE: Adding SHORTCUTDIR property. Its value is 'C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\InvoiceProcess'.
Action ended 23:17:08: SET_SHORTCUTDIR. Return value 1.
MSI (c) (5C:0C) [23:17:08:954]: Doing action: CostInitialize
Action 23:17:08: CostInitialize. Computing space requirements
Action start 23:17:08: CostInitialize.
MSI (c) (5C:0C) [23:17:08:970]: Machine policy value 'MaxPatchCacheSize' is 10
MSI (c) (5C:0C) [23:17:09:001]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'D:\'.
MSI (c) (5C:0C) [23:17:09:001]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
Action ended 23:17:09: CostInitialize. Return value 1.
MSI (c) (5C:0C) [23:17:09:001]: Doing action: FileCost
Action 23:17:09: FileCost. Computing space requirements
Action start 23:17:09: FileCost.
MSI (c) (5C:0C) [23:17:09:017]: Note: 1: 2205 2:  3: Class
MSI (c) (5C:0C) [23:17:09:017]: Note: 1: 2205 2:  3: Extension
MSI (c) (5C:0C) [23:17:09:017]: Note: 1: 2205 2:  3: TypeLib
Action ended 23:17:09: FileCost. Return value 1.
MSI (c) (5C:0C) [23:17:09:017]: Doing action: CostFinalize
Action 23:17:09: CostFinalize. Computing space requirements
Action start 23:17:09: CostFinalize.
MSI (c) (5C:0C) [23:17:09:032]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
MSI (c) (5C:0C) [23:17:09:032]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
MSI (c) (5C:0C) [23:17:09:032]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
MSI (c) (5C:0C) [23:17:09:032]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
MSI (c) (5C:0C) [23:17:09:032]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
MSI (c) (5C:0C) [23:17:09:032]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (c) (5C:0C) [23:17:09:032]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (c) (5C:0C) [23:17:09:032]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'D:\'.
MSI (c) (5C:0C) [23:17:09:032]: PROPERTY CHANGE: Modifying APPDIR property. Its current value is 'C:\Program Files\Easy AP\InvoiceProcess'. Its new value: 'C:\Program Files\Easy AP\InvoiceProcess\'.
MSI (c) (5C:0C) [23:17:09:032]: PROPERTY CHANGE: Adding C__C92723309D29CF0091ED1FD9B6BA213A_Dir property. Its value is 'C:\Program Files\Easy AP\InvoiceProcess\'.
MSI (c) (5C:0C) [23:17:09:032]: Target path resolution complete. Dumping Directory table...
MSI (c) (5C:0C) [23:17:09:032]: Note: target paths subject to change (via custom actions or browsing)
MSI (c) (5C:0C) [23:17:09:032]: Dir (target): Key: TARGETDIR      , Object: D:\
MSI (c) (5C:0C) [23:17:09:032]: Dir (target): Key: WindowsFolder      , Object: C:\WINDOWS\
MSI (c) (5C:0C) [23:17:09:032]: Dir (target): Key: APPDIR      , Object: C:\Program Files\Easy AP\InvoiceProcess\
MSI (c) (5C:0C) [23:17:09:032]: Dir (target): Key: C__C92723309D29CF0091ED1FD9B6BA213A_Dir      , Object: C:\Program Files\Easy AP\InvoiceProcess\
Action ended 23:17:09: CostFinalize. Return value 1.
MSI (c) (5C:0C) [23:17:09:048]: Doing action: MigrateFeatureStates
Action 23:17:09: MigrateFeatureStates. Migrating feature states from related applications
Action start 23:17:09: MigrateFeatureStates.
Action ended 23:17:09: MigrateFeatureStates. Return value 0.
MSI (c) (5C:0C) [23:17:09:048]: Doing action: WelcomeDlg
Action 23:17:09: WelcomeDlg.
Action start 23:17:09: WelcomeDlg.
Info 2826. Control BottomLine on dialog WelcomeDlg extends beyond the boundaries of the dialog to the right by 3 pixels.
Action 23:17:09: WelcomeDlg. Dialog created
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: _RemoveFilePath
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: MsiFileHash
MSI (c) (5C:64) [23:17:09:095]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: BindImage
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: ProgId
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: PublishComponent
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: SelfReg
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: Extension
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: Font
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: Shortcut
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: Class
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: Icon
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2205 2:  3: TypeLib
MSI (c) (5C:64) [23:17:09:095]: Note: 1: 2727 2:  
Info 2898. For DlgFontBold8 textstyle, the system created a 'Tahoma' font, in 0 character set.
Info 2826. Control BottomLine on dialog FolderDlg extends beyond the boundaries of the dialog to the right by 3 pixels.
Info 2826. Control BannerLine on dialog FolderDlg extends beyond the boundaries of the dialog to the right by 3 pixels.
Action 23:17:10: FolderDlg. Dialog created
MSI (c) (5C:B4) [23:17:11:314]: Note: 1: 2727 2:  
MSI (c) (5C:B4) [23:17:11:814]: Note: 1: 2727 2:  
Info 2826. Control BottomLine on dialog VerifyReadyDlg extends beyond the boundaries of the dialog to the right by 3 pixels.
Info 2826. Control BannerLine on dialog VerifyReadyDlg extends beyond the boundaries of the dialog to the right by 3 pixels.
Action 23:17:12: VerifyReadyDlg. Dialog created
MSI (c) (5C:B4) [23:17:12:657]: Note: 1: 2727 2:  
MSI (c) (5C:B4) [23:17:13:157]: Note: 1: 2727 2:  
Action ended 23:17:13: WelcomeDlg. Return value 1.
MSI (c) (5C:0C) [23:17:13:439]: Skipping action: ResumeDlg (condition is false)
MSI (c) (5C:0C) [23:17:13:439]: Skipping action: MaintenanceWelcomeDlg (condition is false)
MSI (c) (5C:0C) [23:17:13:439]: Skipping action: PatchWelcomeDlg (condition is false)
MSI (c) (5C:0C) [23:17:13:439]: Doing action: ProgressDlg
Action 23:17:13: ProgressDlg.
Action start 23:17:13: ProgressDlg.
Info 2826. Control BottomLine on dialog ProgressDlg extends beyond the boundaries of the dialog to the right by 3 pixels.
Info 2826. Control BannerLine on dialog ProgressDlg extends beyond the boundaries of the dialog to the right by 3 pixels.
Action 23:17:13: ProgressDlg. Dialog created
Action ended 23:17:13: ProgressDlg. Return value 1.
MSI (c) (5C:0C) [23:17:13:517]: Doing action: ExecuteAction
Action 23:17:13: ExecuteAction.
Action start 23:17:13: ExecuteAction.
MSI (c) (5C:0C) [23:17:13:532]: PROPERTY CHANGE: Adding SECONDSEQUENCE property. Its value is '1'.
MSI (c) (5C:0C) [23:17:13:532]: Grabbed execution mutex.
MSI (c) (5C:0C) [23:17:13:532]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (c) (5C:0C) [23:17:13:532]: Switching to server: APPDIR="C:\Program Files\Easy AP\InvoiceProcess\" TARGETDIR="D:\" AI_INSTALL="1" SHORTCUTDIR="C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\InvoiceProcess" CURRENTDIRECTORY="C:\Users\andrew.TASKBAYGRP\Documents\Install" CLIENTUILEVEL="0" CLIENTPROCESSID="9564" USERNAME="officewoks" SOURCEDIR="C:\Users\andrew.TASKBAYGRP\Documents\Install\" ACTION="INSTALL" EXECUTEACTION="INSTALL" AI_SYSTEM_DPI="96" AI_SYSTEM_DPI_SCALE="100" SECONDSEQUENCE="1" ROOTDRIVE="D:\"  ADDLOCAL=DefaultFeature,MainFeature  
MSI (s) (6C:70) [23:17:13:564]: Running installation inside multi-package transaction C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi
MSI (s) (6C:70) [23:17:13:564]: Grabbed execution mutex.
MSI (s) (6C:3C) [23:17:13:564]: MainEngineThread is returning 1603
MSI (s) (6C:70) [23:17:13:579]: User policy value 'DisableRollback' is 0
MSI (s) (6C:70) [23:17:13:579]: Machine policy value 'DisableRollback' is 0
MSI (s) (6C:70) [23:17:13:579]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (6C:70) [23:17:13:610]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (6C:70) [23:17:13:610]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (6C:70) [23:17:13:610]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (c) (5C:0C) [23:17:13:626]: Back from server. Return value: 1603
MSI (c) (5C:0C) [23:17:13:626]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (c) (5C:0C) [23:17:13:626]: PROPERTY CHANGE: Deleting SECONDSEQUENCE property. Its current value is '1'.
Action ended 23:17:13: ExecuteAction. Return value 3.
MSI (c) (5C:0C) [23:17:13:626]: Doing action: FatalError
Action 23:17:13: FatalError.
Action start 23:17:13: FatalError.
Info 2826. Control BottomLine on dialog FatalError extends beyond the boundaries of the dialog to the right by 3 pixels.
Action 23:17:13: FatalError. Dialog created
MSI (c) (5C:B4) [23:17:18:548]: Doing action: AI_SHOW_LOG
Action 23:17:18: AI_SHOW_LOG.
Action start 23:17:18: AI_SHOW_LOG.
MSI (c) (5C:20) [23:17:18:548]: Invoking remote custom action. DLL: C:\Users\ANDREW~1.TAS\AppData\Local\Temp\MSI1A3B.tmp, Entrypoint: LaunchLogFile
Action ended 23:17:18: AI_SHOW_LOG. Return value 1.
Action ended 23:17:18: FatalError. Return value 2.
Action ended 23:17:18: INSTALL. Return value 3.
MSI (c) (5C:0C) [23:17:18:892]: Destroying RemoteAPI object.
MSI (c) (5C:E0) [23:17:18:907]: Custom Action Manager thread ending.
Property(C): AppsShutdownOption = All
Property(C): APPDIR = C:\Program Files\Easy AP\InvoiceProcess\
Property(C): DiskPrompt = [1]
Property(C): C__C92723309D29CF0091ED1FD9B6BA213A_Dir = C:\Program Files\Easy AP\InvoiceProcess\
Property(C): PROMPTROLLBACKCOST = P
Property(C): ButtonText_Repair = &Repair
Property(C): ProductLanguage = 1033
Property(C): ProductVersion = 1.0.0
Property(C): DialogBitmap = dialog
Property(C): SecureCustomProperties = OLDPRODUCTS;AI_NEWERPRODUCTFOUND
Property(C): ButtonText_OK = OK
Property(C): ErrorDialog = ErrorDlg
Property(C): EnableUserControl = 1
Property(C): ButtonText_Back = < &Back
Property(C): Progress2 = installs
Property(C): INSTALLLEVEL = 3
Property(C): AI_ThemeStyle = default
Property(C): ButtonText_Decline = &Decline
Property(C): AI_CommitButton = ButtonText_Install
Property(C): ButtonText_Install = &Install
Property(C): ButtonText_Browse = Br&owse...
Property(C): ButtonText_Cancel = Cancel
Property(C): Progress1 = Installing
Property(C): ButtonText_Exit = &Exit
Property(C): ButtonText_Accept = &Accept
Property(C): ButtonText_Ignore = &Ignore
Property(C): AI_FrameColor = steelblue
Property(C): ButtonText_Finish = &Finish
Property(C): RemoveIcon = removico
Property(C): CompleteSetupIcon = completi
Property(C): InstallerIcon = insticon
Property(C): CtrlEvtRemoving = Removing
Property(C): ButtonText_No = &No
Property(C): ButtonText_Remove = &Remove
Property(C): ButtonText_Reset = &Reset
Property(C): Text_Next = Next
Property(C): ButtonText_Resume = &Resume
Property(C): ButtonText_Retry = &Retry
Property(C): AI_TRIAL_MESSAGE_BODY = This package was created with a trial version of Advanced Installer. You may use it for evaluation purposes only.
Property(C): AiPrerequisitesColums = PrereqLabel,PrereqReq,PrereqFound,PrereqAction
Property(C): WindowsType9X = Windows 9x/ME
Property(C): ButtonText_Return = &Return
Property(C): ButtonText_Yes = &Yes
Property(C): InfoIcon = info
Property(C): CtrlEvtChanging = Changing
Property(C): CtrlEvtchanges = changes
Property(C): CtrlEvtRepairing = Repairing
Property(C): CtrlEvtremoves = removes
Property(C): ExclamationIcon = exclamic
Property(C): CtrlEvtrepairs = repairs
Property(C): InstallMode = Typical
Property(C): InstallModeComplete = Complete
Property(C): InstallModeCustom = Custom
Property(C): NewDirIcon = New
Property(C): InstallModeTypical = Typical
Property(C): Setup = Setup
Property(C): ButtonText_Next = &Next >
Property(C): Wizard = Setup Wizard
Property(C): Text_Install = Install
Property(C): AI_CF_TITLE_TEXT_STYLE = {\CfTitleFont}
Property(C): CustomSetupIcon = custicon
Property(C): DefaultUIFont = DlgFont8
Property(C): DlgTitleFont = {\DlgFontBold8}
Property(C): RepairIcon = repairic
Property(C): UpDirIcon = Up
Property(C): BannerBitmap = banner
Property(C): AI_LOG_CHECKBOX = 1
Property(C): AiStyleConditions =  
Property(C): TabBackground = tabback
Property(C): ARPCOMMENTS = This installer database contains the logic and data required to install InvoiceProcess.
Property(C): AI_BITMAP_DISPLAY_MODE = 0
Property(C): WindowsType9XDisplay = Windows 9x/ME
Property(C): WindowsTypeNT40 = Windows NT 4.0
Property(C): ARPCONTACT = Easy AP
Property(C): WindowsTypeNT40Display = Windows NT 4.0
Property(C): WindowsTypeNT50 = Windows 2000
Property(C): WindowsTypeNT50Display = Windows 2000
Property(C): WindowsTypeNT5X = Windows XP/2003 RTM, Windows XP/2003 SP1, Windows XP SP2 x86
Property(C): WindowsTypeNT5XDisplay = Windows XP/2003 RTM, Windows XP/2003 SP1, Windows XP SP2 x86
Property(C): ProductName = InvoiceProcess
Property(C): ProductCode = {7E21E3D7-9A53-4D78-BF1A-ADB97B2C20B7}
Property(C): UpgradeCode = {AB48B174-910E-4E61-AA49-344AC808E6DC}
Property(C): AspNetVersion = 4.0.30319.0
Property(C): Manufacturer = Easy AP
Property(C): AI_BUILD_NAME = Release
Property(C): AI_PACKAGE_TYPE = x64
Property(C): AI_BOOTSTRAPPERLANGS = 1033;
Property(C): AI_BOOTSTRAPPERORIGINALLANG = 1033
Property(C): TARGETDIR = D:\
Property(C): SourceDir = C:\Users\andrew.TASKBAYGRP\Documents\Install\
Property(C): AI_INSTALL = 1
Property(C): VersionNT = 1000
Property(C): SHORTCUTDIR = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\InvoiceProcess
Property(C): RedirectedDllSupport = 2
Property(C): MsiLogFileLocation = C:\Users\andrew.TASKBAYGRP\Documents\Install\mylog.txt
Property(C): PackageCode = {039A1507-3EF0-4824-92B9-F77F9C5FEB7A}
Property(C): ProductState = -1
Property(C): PackagecodeChanging = 1
Property(C): CURRENTDIRECTORY = C:\Users\andrew.TASKBAYGRP\Documents\Install
Property(C): CLIENTUILEVEL = 0
Property(C): CLIENTPROCESSID = 9564
Property(C): MsiSystemRebootPending = 1
Property(C): VersionDatabase = 200
Property(C): VersionMsi = 5.00
Property(C): VersionNT64 = 1000
Property(C): WindowsBuild = 14393
Property(C): ServicePackLevel = 0
Property(C): ServicePackLevelMinor = 0
Property(C): MsiNTProductType = 1
Property(C): WindowsFolder = C:\WINDOWS\
Property(C): WindowsVolume = C:\
Property(C): System64Folder = C:\WINDOWS\system32\
Property(C): SystemFolder = C:\WINDOWS\SysWOW64\
Property(C): RemoteAdminTS = 1
Property(C): TempFolder = C:\Users\ANDREW~1.TAS\AppData\Local\Temp\
Property(C): ProgramFilesFolder = C:\Program Files (x86)\
Property(C): CommonFilesFolder = C:\Program Files (x86)\Common Files\
Property(C): ProgramFiles64Folder = C:\Program Files\
Property(C): CommonFiles64Folder = C:\Program Files\Common Files\
Property(C): AppDataFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\
Property(C): FavoritesFolder = C:\Users\andrew.TASKBAYGRP\Favorites\
Property(C): NetHoodFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(C): PersonalFolder = C:\Users\andrew.TASKBAYGRP\Documents\
Property(C): PrintHoodFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(C): RecentFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Recent\
Property(C): SendToFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\SendTo\
Property(C): TemplateFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Templates\
Property(C): CommonAppDataFolder = C:\ProgramData\
Property(C): LocalAppDataFolder = C:\Users\andrew.TASKBAYGRP\AppData\Local\
Property(C): MyPicturesFolder = C:\Users\andrew.TASKBAYGRP\Pictures\
Property(C): AdminToolsFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(C): StartupFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\
Property(C): ProgramMenuFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\
Property(C): StartMenuFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Start Menu\
Property(C): DesktopFolder = C:\Users\andrew.TASKBAYGRP\Desktop\
Property(C): FontsFolder = C:\WINDOWS\Fonts\
Property(C): GPTSupport = 1
Property(C): OLEAdvtSupport = 1
Property(C): ShellAdvtSupport = 1
Property(C): MsiAMD64 = 6
Property(C): Msix64 = 6
Property(C): Intel = 6
Property(C): PhysicalMemory = 3979
Property(C): VirtualMemory = 3114
Property(C): LogonUser = andrew
Property(C): UserSID = S-1-5-21-4130631398-1089863894-3256803912-1117
Property(C): UserLanguageID = 3081
Property(C): ComputerName = TASKBAY
Property(C): SystemLanguageID = 3081
Property(C): ScreenX = 1680
Property(C): ScreenY = 1050
Property(C): CaptionHeight = 23
Property(C): BorderTop = 1
Property(C): BorderSide = 1
Property(C): TextHeight = 16
Property(C): TextInternalLeading = 3
Property(C): ColorBits = 32
Property(C): TTCSupport = 1
Property(C): Time = 23:17:18
Property(C): Date = 29/03/2017
Property(C): MsiNetAssemblySupport = 4.6.1586.0
Property(C): MsiWin32AssemblySupport = 6.3.14393.0
Property(C): USERNAME = officewoks
Property(C): DATABASE = C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi
Property(C): OriginalDatabase = C:\Users\andrew.TASKBAYGRP\Documents\Install\invoiceprocess.msi
Property(C): SOURCEDIR = C:\Users\andrew.TASKBAYGRP\Documents\Install\
Property(C): VersionHandler = 5.00
Property(C): UILevel = 5
Property(C): ACTION = INSTALL
Property(C): EXECUTEACTION = INSTALL
Property(C): AI_SYSTEM_DPI = 96
Property(C): AI_SYSTEM_DPI_SCALE = 100
Property(C): SavedGamesFolder = C:\Users\andrew.TASKBAYGRP\Saved Games\
Property(C): WindowsLibrariesFolder = C:\Users\andrew.TASKBAYGRP\AppData\Roaming\Microsoft\Windows\Libraries\
Property(C): PublicDocumentsFolder = C:\Users\Public\Documents\
Property(C): PublicFolder = C:\Users\Public\
Property(C): ROOTDRIVE = D:\
Property(C): AI_UserProgramFiles = C:\Users\andrew.TASKBAYGRP\AppData\Local\Programs\
Property(C): CostingComplete = 1
Property(C): OutOfDiskSpace = 0
Property(C): OutOfNoRbDiskSpace = 0
Property(C): PrimaryVolumeSpaceAvailable = 0
Property(C): PrimaryVolumeSpaceRequired = 0
Property(C): PrimaryVolumeSpaceRemaining = 0
=== Logging stopped: 29/03/2017  23:17:18 ===
MSI (c) (5C:0C) [23:17:18:939]: Note: 1: 1708
MSI (c) (5C:0C) [23:17:18:939]: Product: InvoiceProcess -- Installation failed.

MSI (c) (5C:0C) [23:17:18:939]: Windows Installer installed the product. Product Name: InvoiceProcess. Product Version: 1.0.0. Product Language: 1033. Manufacturer: Easy AP. Installation success or error status: 1603.

MSI (c) (5C:0C) [23:17:18:939]: Grabbed execution mutex.
MSI (c) (5C:0C) [23:17:18:939]: Cleaning up uninstalled install packages, if any exist
MSI (c) (5C:0C) [23:17:18:939]: MainEngineThread is returning 1603
=== Verbose logging stopped: 29/03/2017  23:17:18 ===
Just did some reading into error 1603 and its not system as my log in is the domain administrator with full access
I tried to install to C:\ and got the same error
ASKER CERTIFIED SOLUTION
Avatar of Avodah
Avodah
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial