list of note's numbers
Hi Appdeploy forum users,
I am looking for list which contain responsible text for notes numbers.
e.g.(1) here is log file:
MSI (s) (EC:EC) [21:23:05:129]: Transforming table Registry.
MSI (s) (EC:EC) [21:23:05:129]: Note: 1: 2262 2: MoveFile 3: -2147287038
MSI (s) (EC:EC) [21:23:05:129]: Note: 1: 2262 2: DuplicateFile 3: -2147287038
Action start 21:23:05: FileCost.
question(1) what does mean Note: 1: 2262 and what does mean -2147287038
e.g.(2) here is another part
MSI (s) (EC:EC) [21:23:05:129]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
MSI (s) (EC:EC) [21:23:05:129]: Note: 1: 2205 2: 3: Patch
MSI (s) (EC:EC) [21:23:05:129]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
question(2) what does mean Note: 1: 2205
Thank you.[;)]
I am looking for list which contain responsible text for notes numbers.
e.g.(1) here is log file:
MSI (s) (EC:EC) [21:23:05:129]: Transforming table Registry.
MSI (s) (EC:EC) [21:23:05:129]: Note: 1: 2262 2: MoveFile 3: -2147287038
MSI (s) (EC:EC) [21:23:05:129]: Note: 1: 2262 2: DuplicateFile 3: -2147287038
Action start 21:23:05: FileCost.
question(1) what does mean Note: 1: 2262 and what does mean -2147287038
e.g.(2) here is another part
MSI (s) (EC:EC) [21:23:05:129]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
MSI (s) (EC:EC) [21:23:05:129]: Note: 1: 2205 2: 3: Patch
MSI (s) (EC:EC) [21:23:05:129]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
question(2) what does mean Note: 1: 2205
Thank you.[;)]
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
anonymous_9363
15 years ago
All the entries are Windows Installer "errors" which you can look up at AppDeploy. For example 2262
The -2147287038 is a decimal representation of a hex error number.
- Start up Calc
- Switch to 'Scientific' view
- Select the 'Decimal' option
- Enter 2147287038
- Click the '+-' button
- Select the 'Hex' option.
- The result will be FFFFFFFF80030002
The salient part of that number is everything to the right of the final 'F', i.e. 80030002. That's equivalent to DOS error 2. Google that error and you'll find that it's 'File Not Found'. Your package is trying to move a file which the MSI can't find. Ditto for the file duplication.
The -2147287038 is a decimal representation of a hex error number.
- Start up Calc
- Switch to 'Scientific' view
- Select the 'Decimal' option
- Enter 2147287038
- Click the '+-' button
- Select the 'Hex' option.
- The result will be FFFFFFFF80030002
The salient part of that number is everything to the right of the final 'F', i.e. 80030002. That's equivalent to DOS error 2. Google that error and you'll find that it's 'File Not Found'. Your package is trying to move a file which the MSI can't find. Ditto for the file duplication.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.