Windows Installer 3.1 Issues

D

DeeE

I'm hoping someone might have a solution for an issue I have with one of my
applications not installing properly with Windows Installer 3.1.

Every time I try to install the application, in this case Timberline, but it
happened with Blackberry software too, it gets to the part where it is trying
to use the Windows Installer, but then comes up with the following:

Windows ® Installer. V 3.01.4000.1823

msiexec /Option <Required Parameter> [Optional Parameter]

Install Options
</package | /i> <Product.msi>
Installs or configures a product
/a <Product.msi>
Administrative install - Installs a product on the network
/j<u|m> <Product.msi> [/t <Transform List>] [/g <Language ID>]
Advertises a product - m to all users, u to current user
</uninstall | /x> <Product.msi | ProductCode>
Uninstalls the product
Display Options
/quiet
Quiet mode, no user interaction
/passive
Unattended mode - progress bar only
/q[n|b|r|f]
Sets user interface level
n - No UI
b - Basic UI
r - Reduced UI
f - Full UI (default)
/help
Help information
Restart Options
/norestart
Do not restart after the installation is complete
/promptrestart
Prompts the user for restart if necessary
/forcerestart
Always restart the computer after installation
Logging Options
/l[i|w|e|a|r|u|c|m|o|p|v|x|+|!|*] <LogFile>
i - Status messages
w - Nonfatal warnings
e - All error messages
a - Start up of actions
r - Action-specific records
u - User requests
c - Initial UI parameters
m - Out-of-memory or fatal exit information
o - Out-of-disk-space messages
p - Terminal properties
v - Verbose output
x - Extra debugging information
+ - Append to existing log file
! - Flush each line to the log
* - Log all information, except for v and x options
/log <LogFile>
Equivalent of /l* <LogFile>
Update Options
/update <Update1.msp>[;Update2.msp]
Applies update(s)
/uninstall <PatchCodeGuid>[;Update2.msp] /package <Product.msi | ProductCode>
Remove update(s) for a product
Repair Options
/f[p|e|c|m|s|o|d|a|u|v] <Product.msi | ProductCode>
Repairs a product
p - only if file is missing
o - if file is missing or an older version is installed (default)
e - if file is missing or an equal or older version is installed
d - if file is missing or a different version is installed
c - if file is missing or checksum does not match the calculated value
a - forces all files to be reinstalled
u - all required user-specific registry entries (default)
m - all required computer-specific registry entries (default)
s - all existing shortcuts (default)
v - runs from source and recaches local package
Setting Public Properties
[PROPERTY=PropertyValue]

Consult the Windows ® Installer SDK for additional documentation on the
command line syntax.

Copyright © Microsoft Corporation. All rights reserved.
Portions of this software are based in part on the work of the Independent
JPEG Group.


The installation quits. I have tried following some of the information I
found on the Internet such as renaming the various msi files, reinstalling
Windows Installer 3.1, and registering files. Unfortunately nothing worked.
Any and all ideas will be greatly appreciated.

Thanks!
 
G

gsjutla

Download and Install the latest Installer version from
http://support.microsoft.com/?id=893803

If the issue still persists after updating the installer service set the
following registry to enable MSI Logging

1. On the Start menu, click Run .

2. Type REGEDIT .

3. In the Registry Editor window, browse to:

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer.

4. In the results pane, right-click, point to New , and click String Value .

5. Type Logging and then press Enter .

6. Double-click Logging .

7. In the Value data box, type VoiceWarmUp and click OK .

Run the installation again and when the failure happens again, goto %temp%
folder and look into the log file for possible causes of the issue.
--
Regards
Gurpreet Singh


DeeE said:
I'm hoping someone might have a solution for an issue I have with one of my
applications not installing properly with Windows Installer 3.1.

Every time I try to install the application, in this case Timberline, but it
happened with Blackberry software too, it gets to the part where it is trying
to use the Windows Installer, but then comes up with the following:

Windows ® Installer. V 3.01.4000.1823

msiexec /Option <Required Parameter> [Optional Parameter]

Install Options
</package | /i> <Product.msi>
Installs or configures a product
/a <Product.msi>
Administrative install - Installs a product on the network
/j<u|m> <Product.msi> [/t <Transform List>] [/g <Language ID>]
Advertises a product - m to all users, u to current user
</uninstall | /x> <Product.msi | ProductCode>
Uninstalls the product
Display Options
/quiet
Quiet mode, no user interaction
/passive
Unattended mode - progress bar only
/q[n|b|r|f]
Sets user interface level
n - No UI
b - Basic UI
r - Reduced UI
f - Full UI (default)
/help
Help information
Restart Options
/norestart
Do not restart after the installation is complete
/promptrestart
Prompts the user for restart if necessary
/forcerestart
Always restart the computer after installation
Logging Options
/l[i|w|e|a|r|u|c|m|o|p|v|x|+|!|*] <LogFile>
i - Status messages
w - Nonfatal warnings
e - All error messages
a - Start up of actions
r - Action-specific records
u - User requests
c - Initial UI parameters
m - Out-of-memory or fatal exit information
o - Out-of-disk-space messages
p - Terminal properties
v - Verbose output
x - Extra debugging information
+ - Append to existing log file
! - Flush each line to the log
* - Log all information, except for v and x options
/log <LogFile>
Equivalent of /l* <LogFile>
Update Options
/update <Update1.msp>[;Update2.msp]
Applies update(s)
/uninstall <PatchCodeGuid>[;Update2.msp] /package <Product.msi | ProductCode>
Remove update(s) for a product
Repair Options
/f[p|e|c|m|s|o|d|a|u|v] <Product.msi | ProductCode>
Repairs a product
p - only if file is missing
o - if file is missing or an older version is installed (default)
e - if file is missing or an equal or older version is installed
d - if file is missing or a different version is installed
c - if file is missing or checksum does not match the calculated value
a - forces all files to be reinstalled
u - all required user-specific registry entries (default)
m - all required computer-specific registry entries (default)
s - all existing shortcuts (default)
v - runs from source and recaches local package
Setting Public Properties
[PROPERTY=PropertyValue]

Consult the Windows ® Installer SDK for additional documentation on the
command line syntax.

Copyright © Microsoft Corporation. All rights reserved.
Portions of this software are based in part on the work of the Independent
JPEG Group.


The installation quits. I have tried following some of the information I
found on the Internet such as renaming the various msi files, reinstalling
Windows Installer 3.1, and registering files. Unfortunately nothing worked.
Any and all ideas will be greatly appreciated.

Thanks!
 
D

DeeE

gsjutla said:
Download and Install the latest Installer version from
http://support.microsoft.com/?id=893803

If the issue still persists after updating the installer service set the
following registry to enable MSI Logging

1. On the Start menu, click Run .

2. Type REGEDIT .

3. In the Registry Editor window, browse to:

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer.

4. In the results pane, right-click, point to New , and click String Value .

5. Type Logging and then press Enter .

6. Double-click Logging .

7. In the Value data box, type VoiceWarmUp and click OK .

Run the installation again and when the failure happens again, goto %temp%
folder and look into the log file for possible causes of the issue.
Gurpreet Singh

Thanks so much for your quick response! Unfortunately, the 3.1 install did
not work, and I'm not sure what to make of the log file. I'm going to list
its contents here. Hopefully, you'll be able to tell me what I'm missing. I
did notice the MsiOpenPackageEx is returning 0 line, but I'm not sure how to
resolve that, and my research did not give me enough information. As always,
all help is very appreciated!!

=== Verbose logging started: 12/28/2007 8:42:04 Build type: SHIP UNICODE
3.01.4000.4039 Calling process:
O:\acctg\Timber\WININST\Prerequisites\Setup.exe ===
MSI (c) (A0:98) [08:42:04:875]: Cloaking enabled.
MSI (c) (A0:98) [08:42:04:875]: Attempting to enable all disabled priveleges
before calling Install on Server
MSI (c) (A0:98) [08:42:04:890]: End dialog not enabled
MSI (c) (A0:98) [08:42:04:890]: Incrementing counter to disable shutdown.
Counter after increment: 1
MSI (c) (A0:98) [08:42:04:890]: Original package ==>
O:\acctg\Timber\WININST\client\Timberline Accounting Client.msi
MSI (c) (A0:98) [08:42:04:890]: Package we're running from ==>
O:\acctg\Timber\WININST\client\Timberline Accounting Client.msi
MSI (c) (A0:98) [08:42:05:000]: APPCOMPAT: looking for appcompat database
entry with ProductCode '{5FA238B8-8AD0-4492-BE5A-1E0375B67BB4}'.
MSI (c) (A0:98) [08:42:05:000]: APPCOMPAT: no matching ProductCode found in
database.
MSI (c) (A0:98) [08:42:05:000]: MSCOREE not loaded loading copy from system32
MSI (c) (A0:98) [08:42:05:031]: APPCOMPAT: looking for appcompat database
entry with ProductCode '{5FA238B8-8AD0-4492-BE5A-1E0375B67BB4}'.
MSI (c) (A0:98) [08:42:05:031]: APPCOMPAT: no matching ProductCode found in
database.
MSI (c) (A0:98) [08:42:05:031]: Transforms are not secure.
MSI (c) (A0:98) [08:42:05:031]: No Command Line.
MSI (c) (A0:98) [08:42:05:031]: PROPERTY CHANGE: Adding PackageCode
property. Its value is '{6D7990FD-7006-4abb-937A-D075DB7D92FB}'.
MSI (c) (A0:98) [08:42:05:031]: Product Code passed to Engine.Initialize:
'(none)'
MSI (c) (A0:98) [08:42:05:031]: Product Code from property table before
transforms: '{5FA238B8-8AD0-4492-BE5A-1E0375B67BB4}'
MSI (c) (A0:98) [08:42:05:031]: Product Code from property table after
transforms: '{5FA238B8-8AD0-4492-BE5A-1E0375B67BB4}'
MSI (c) (A0:98) [08:42:05:031]: Product not registered: beginning first-time
install
MSI (c) (A0:98) [08:42:05:031]: PROPERTY CHANGE: Adding ProductState
property. Its value is '-1'.
MSI (c) (A0:98) [08:42:05:125]: Entering
CMsiConfigurationManager::SetLastUsedSource.
MSI (c) (A0:98) [08:42:05:125]: User policy value 'SearchOrder' is 'nmu'
MSI (c) (A0:98) [08:42:05:125]: Adding new sources is allowed.
MSI (c) (A0:98) [08:42:05:125]: Machine policy value 'DisableUserInstalls'
is 0
MSI (c) (A0:98) [08:42:05:125]: PROPERTY CHANGE: Adding PackagecodeChanging
property. Its value is '1'.
MSI (c) (A0:98) [08:42:05:125]: Package name extracted from package path:
'Timberline Accounting Client.msi'
MSI (c) (A0:98) [08:42:05:140]: Package to be registered: 'Timberline
Accounting Client.msi'
MSI (c) (A0:98) [08:42:05:140]: Note: 1: 2729
MSI (c) (A0:98) [08:42:05:140]: Note: 1: 2729
MSI (c) (A0:98) [08:42:05:140]: Note: 1: 2262 2: AdminProperties 3:
-2147287038
MSI (c) (A0:98) [08:42:05:140]: TRANSFORMS property is now:
MSI (c) (A0:98) [08:42:05:140]: PROPERTY CHANGE: Adding VersionDatabase
property. Its value is '200'.
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Application Data
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Favorites
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\NetHood
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\My Documents
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\PrintHood
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Recent
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\SendTo
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Templates
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\All Users\Application Data
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Local Settings\Application Data
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\My Documents\My Pictures
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\All Users\Start Menu\Programs\Administrative Tools
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\All Users\Start Menu\Programs\Startup
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\All Users\Start Menu\Programs
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\All Users\Start Menu
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\All Users\Desktop
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Start Menu\Programs\Administrative Tools
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Start Menu\Programs\Startup
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Start Menu\Programs
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Start Menu
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\admindae\Desktop
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\Documents and Settings\All Users\Templates
MSI (c) (A0:98) [08:42:05:140]: SHELL32::SHGetFolderPath returned:
C:\WINDOWS\Fonts
MSI (c) (A0:98) [08:42:05:140]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans
Serif 4: 0 5: 20
MSI (c) (A0:98) [08:42:05:140]: PROPERTY CHANGE: Adding Privileged property.
Its value is '1'.
MSI (c) (A0:98) [08:42:05:140]: PROPERTY CHANGE: Adding USERNAME property.
Its value is ' '.
MSI (c) (A0:98) [08:42:05:140]: PROPERTY CHANGE: Adding COMPANYNAME
property. Its value is ' '.
MSI (c) (A0:98) [08:42:05:140]: PROPERTY CHANGE: Adding DATABASE property.
Its value is 'O:\acctg\Timber\WININST\client\Timberline Accounting
Client.msi'.
MSI (c) (A0:98) [08:42:05:140]: PROPERTY CHANGE: Adding OriginalDatabase
property. Its value is 'O:\acctg\Timber\WININST\client\Timberline Accounting
Client.msi'.
=== Logging started: 12/28/2007 8:42:05 ===
MSI (c) (A0:98) [08:42:05:140]: Machine policy value 'DisableRollback' is 0
MSI (c) (A0:98) [08:42:05:140]: User policy value 'DisableRollback' is 0
MSI (c) (A0:98) [08:42:05:140]: PROPERTY CHANGE: Adding UILevel property.
Its value is '3'.
MSI (c) (A0:98) [08:42:05:140]: MsiOpenPackageEx is returning 0
MSI (c) (A0:98) [08:42:05:140]: Doing action: AppSearch
Action 8:42:05: AppSearch. Searching for installed applications
Action start 8:42:05: AppSearch.
AppSearch: Property: ACCOUNTINGPATH, Signature: NewSignature16
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Timberline\General 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: DOCUMENTSPATH, Signature: NewSignature120
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Timberline\General 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: PSQL_SPATH, Signature: sigPSQL_SPath
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Pervasive Software\Products\Pervasive.SQL NT
Server\InstallInfo 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: PSQL_WPATH, Signature: sigPSQL_WPath
MSI (c) (A0:98) [08:42:05:156]: PROPERTY CHANGE: Adding PSQL_WPATH property.
Its value is 'C:\PVSW\'.
AppSearch: Property: SHAREDPATH, Signature: NewSignature111
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Timberline\General 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: CASPOL_EXE.52C935D7_2FD2_421E_AE0A_A676DCCA462C,
Signature: NewSignature1.52C935D7_2FD2_421E_AE0A_A676DCCA462C
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:156]: PROPERTY CHANGE: Adding
CASPOL_EXE.52C935D7_2FD2_421E_AE0A_A676DCCA462C property. Its value is
'C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CasPol.exe'.
AppSearch: Property: DOTNET11FOUND.EBCC2300_7E17_474F_BE3F_9E74424EA873,
Signature: sigDotNet1_1.EBCC2300_7E17_474F_BE3F_9E74424EA873
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:156]: PROPERTY CHANGE: Adding
DOTNET11FOUND.EBCC2300_7E17_474F_BE3F_9E74424EA873 property. Its value is
'C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorcfg.dll'.
AppSearch: Property: CRYSTALCOMMONFOLDER, Signature:
RLCrystal10.0.NET.EmbeddedReporting.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Crystal Reports 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: CRYSTALCOMMONFOLDER, Signature:
RLgdiplus.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Crystal Reports 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: CRYSTALCOMMONFOLDER, Signature:
RLimplode_dll.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Crystal Reports 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: CRYSTALCOMMONFOLDER, Signature:
RLkeycode.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Crystal Reports 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: CRYSTALCOMMONFOLDER, Signature:
RLSACommonControls.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Crystal Reports 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: CRYSTALCOMMONFOLDER, Signature:
RLsscsdk32_dll.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Crystal Reports 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: CRYSTALCOMMONFOLDER, Signature:
RLu2frtf.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Crystal Reports 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.51C7A60C_AD31_495B_9913_7077386357F0,
Signature: RLVerDir.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:156]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: SYSTEMWEBMOBILE.51C7A60C_AD31_495B_9913_7077386357F0,
Signature: SystemWebIni.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.CC660BB4_BEA9_4C7A_8BA8_C72113A1AAFD,
Signature: RLVerDir.CC660BB4_BEA9_4C7A_8BA8_C72113A1AAFD
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.9EEF3408_6D73_4CDA_9C48_00AC83DAE200,
Signature: RLVerDir.9EEF3408_6D73_4CDA_9C48_00AC83DAE200
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.99C9CDC9_40CF_11D3_BE94_0090273469B4,
Signature: RLVerDir.99C9CDC9_40CF_11D3_BE94_0090273469B4
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.600E3EC4_B069_4421_9656_596E9023B60A,
Signature: RLVerDir.600E3EC4_B069_4421_9656_596E9023B60A
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.433E4F02_962A_4EF7_9D97_D65543BF4804,
Signature: RLVerDir.433E4F02_962A_4EF7_9D97_D65543BF4804
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.2211651F_4AC8_48A6_BBFF_91174F084A41,
Signature: RLVerDir.2211651F_4AC8_48A6_BBFF_91174F084A41
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: FOUNDVS7SP1.51C7A60C_AD31_495B_9913_7077386357F0,
Signature: FindVS7SP1.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\7.1\Setup\VS 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property:
FINDEVENTLOGMSGDLL.51C7A60C_AD31_495B_9913_7077386357F0, Signature:
EventLogMessagesDLL.51C7A60C_AD31_495B_9913_7077386357F0
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.68FCF676_98BE_41AD_8EC9_E806EEC940CB,
Signature: RLVerDir.68FCF676_98BE_41AD_8EC9_E806EEC940CB
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: RL_VERDIR.A127ECCD_B172_4848_94B6_1BEC879F83F3,
Signature: RLVerDir.A127ECCD_B172_4848_94B6_1BEC879F83F3
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Shared 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: BEUIFOUND, Signature: sigBEUI
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\nbf 3: 2
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: CLIENT_TXTFILE, Signature: sigClientTxt
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1322 2:
AppSearch: Property: COUNTRY_TXTFILE, Signature: sigCountryTxt
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:171]: Note: 1: 1322 2:
AppSearch: Property: DOTNETPATH, Signature: sigdotNet
MSI (c) (A0:98) [08:42:05:171]: PROPERTY CHANGE: Adding DOTNETPATH property.
Its value is 'C:\WINDOWS\Microsoft.NET\Framework\'.
AppSearch: Property: EC_SAMPLEDATAFOLDERFOUND, Signature: NewSignature113
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 1324 2: Electrical Contractor
Sample Data 3: 1
AppSearch: Property: EC_SAMPLEDATA_FOUND, Signature: NewSignature117
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: ESTIMATINGPATH, Signature: NewSignature1
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Timberline\General 3: 2
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: GC_SAMPLEDATAFOLDERFOUND, Signature: NewSignature112
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 1324 2: Construction Sample Data 3:
1
AppSearch: Property: GC_SAMPLEDATA_FOUND, Signature: NewSignature116
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: HB_SAMPLEDATAFOLDERFOUND, Signature: NewSignature114
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 1324 2: Home Builder Sample Data 3:
1
AppSearch: Property: HB_SAMPLEDATA_FOUND, Signature: NewSignature118
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: IE6FOUND, Signature: sigShdocvw
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:187]: PROPERTY CHANGE: Adding IE6FOUND property.
Its value is 'C:\WINDOWS\system32\shdocvw.dll'.
AppSearch: Property: IPXFOUND, Signature: sigIPX
MSI (c) (A0:98) [08:42:05:187]: PROPERTY CHANGE: Adding IPXFOUND property.
Its value is 'NWLink IPX/SPX/NetBIOS Compatible Transport Protocol'.
AppSearch: Property: MDACFOUND, Signature: sigMDAC271
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:187]: PROPERTY CHANGE: Adding MDACFOUND property.
Its value is 'C:\Program Files\Common Files\System\Ole DB\msdadc.dll'.
AppSearch: Property: MSI2FOUND, Signature: sigMSI2
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:187]: PROPERTY CHANGE: Adding MSI2FOUND property.
Its value is 'C:\WINDOWS\system32\msi.dll'.
AppSearch: Property: NET11FOUND, Signature: sigDOTNet11
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:187]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:203]: PROPERTY CHANGE: Adding NET11FOUND property.
Its value is 'C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorlib.dll'.
AppSearch: Property: OLDACCOUNTING, Signature: NewSignature14
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
AppSearch: Property: OLDESTIMATING, Signature: NewSignature11
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Precision Collection 3: 2
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: OLDESTIMATING, Signature: NewSignature110
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{BB2CAE62-2318-4B09-838C-B1ACD0DF3C38} 3: 2
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: OLDESTIMATING, Signature: NewSignature12
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Precision Collection 6.2 3: 2
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: OLDESTIMATING, Signature: NewSignature13
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{668D95BC-1116-4DF9-8388-4A9499DB6A3E} 3: 2
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: OLDESTIMATING, Signature: NewSignature15
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{057F6076-DE86-4E73-B344-7E79EE84073A} 3: 2
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: PM_SAMPLEDATAFOLDERFOUND, Signature: NewSignature115
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1324 2: PM Sample Data 3: 1
AppSearch: Property: PM_SAMPLEDATA_FOUND, Signature: NewSignature119
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
AppSearch: Property: PSQL_FOUND, Signature: sigPSQL_S8
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
AppSearch: Property: PSQL_FOUND, Signature: sigPSQL_W8
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:203]: PROPERTY CHANGE: Adding PSQL_FOUND property.
Its value is 'C:\PVSW\Bin\w3mkde.dll'.
AppSearch: Property: PSQL_SERVER_FOUND, Signature: NewSignature121
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
AppSearch: Property: PSQL_WORKSTATION_FOUND, Signature: NewSignature122
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:203]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:218]: PROPERTY CHANGE: Adding
PSQL_WORKSTATION_FOUND property. Its value is 'C:\PVSW\Bin\w3mkde.dll'.
AppSearch: Property: SPECIALTY_TXTFILE, Signature: sigSpecialtyTxt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1325 2: Specialty.txt
AppSearch: Property: TCPFOUND, Signature: sigTCPIP
MSI (c) (A0:98) [08:42:05:218]: PROPERTY CHANGE: Adding TCPFOUND property.
Its value is 'TCP/IP Protocol Driver'.
AppSearch: Property: TOO_OLDACCOUNTING, Signature: NewSignature17
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1322 2:
AppSearch: Property: TS_OPR_FOUND, Signature: sigTsOpr
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1322 2:
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1322 2:
AppSearch: Property: USERS_COUNTRY_CODE, Signature: NewSignature19
MSI (c) (A0:98) [08:42:05:218]: PROPERTY CHANGE: Adding USERS_COUNTRY_CODE
property. Its value is '1'.
AppSearch: Property: WORKSTATIONPATH, Signature: NewSignature18
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\SOFTWARE\Timberline\General 3: 2
MSI (c) (A0:98) [08:42:05:218]: Note: 1: 2262 2: IniLocator 3: -2147287038
Action ended 8:42:05: AppSearch. Return value 1.
=== Verbose logging stopped: 12/28/2007 8:42:05 ===
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top