/build/static/layout/Breadcrumb_cap_w.png

JDK-6u17

Hi
(JDK 1.6 Update 17)
I have got the msi and the related cab files in the APP Data Folder , msi works fine with normal Install but not a silent Install.
Any one who worked on this package please give some tips to create the mst with Silent Install.

TNK

0 Comments   [ + ] Show comments

Answers (26)

Posted by: AngelD 14 years ago
Red Belt
0
What is not working during silent install?
Posted by: anonymous_9363 14 years ago
Red Belt
0
These scenarios usually pan out to be due to Custom Actions which are in the UI sequence but not in the Execute sequence. JREs are usually pretty clean in that regard, though.

As usual, take a verbose log of both installs and compare.
Posted by: Newsy 14 years ago
Senior Yellow Belt
0
Alright to be clear, who worked on this package know well about the installation.
it has got 3 parts
Basic JDK - C:\Program files\Java\jdk_1.6.0_17\
Jre - C:\ProgramFiles\Java\Jre
JavaDB - C:\ProgramFiles\Sun\JavaDB
First part(Basic JDK) Installation works fine, but the Jre and JavaDB fails on silent Install of the msi ( msi and cab files picked from the App Data Folder of the Setup Install)

and I tried to compare both the logs, but there is some difference which I'm not able figure out.
and at Jre & JavaDB installation I could see the message " can not extract the compressed files"

please can anyone help me with this issue
Posted by: anonymous_9363 14 years ago
Red Belt
0
Sounds like you omitted to copy the CAB file(s) along with the MSI...
Posted by: Newsy 14 years ago
Senior Yellow Belt
0
If I Omit the cab files it would have not even installed the Base JDK,
or would have poped a message asking for the cab files
Posted by: nheim 14 years ago
10th Degree Black Belt
0
Hi Newsy,
this is a well known problem for the 1.6.x JRE MSI, see the package KB.
And: Not all silent switches seems to be affected.
Maybe, the other MSI has the same problems as well.
Regards, Nick
Posted by: Newsy 14 years ago
Senior Yellow Belt
0
could you please send the link to the solution you found ?
Posted by: nheim 14 years ago
10th Degree Black Belt
0
http://itninja.com/link/download-here
Posted by: Newsy 14 years ago
Senior Yellow Belt
0
Thanks for the link
But that doesn't seems to be working
I'll appreciate if you can share more ideas

Thank you
Posted by: bunfried 14 years ago
Senior Yellow Belt
0
Hi,
has anyone installed Java 1.6u17 WITH transform file successfully via group policy?

I made an mst file with some changes, but they seemed to be ignored. :-(

When I open the java applet in the control panel I can see the update panel and all update settings activated. [:(]

regards,
Bernhard

Transform file changes:
AUTOUPDATECHECK 0
IEXPLORER 1
JAVAUPDATE 0
JU 0
MODIFYREMOVE remove
MOZILLA 1
Posted by: anonymous_9363 14 years ago
Red Belt
0
has anyone installed Java 1.6u17 WITH transform file successfully via group policy? Yes.

Enable the WI logging policy, set to verbose (voicewarmup). Logs get written to %SystemRoot%\temp, prefixed with 'MSI' and named with a random 4 to 6 alphanumeric filename. You'll need to search for the relevant log (as the policy causes all WI activity to be logged). I generally use DOS FIND and seach for the ProductCode:FIND /C /I %SystemRoot%\temp\MSI*.LOG "ProductCode_goes_here"The log will show you whether or not the transform was processed.

Of course, you *did* remember that you have to add the transform using the 'Modifications' tab when adding the package to GP?
Posted by: bunfried 14 years ago
Senior Yellow Belt
0
Enable the WI logging policy, set to verbose (voicewarmup). Logs get written to %SystemRoot%\temp, prefixed with 'MSI' and named with a random 4 to 6 alphanumeric filename. You'll need to search for the relevant log (as the policy causes all WI activity to be logged). I generally use DOS FIND and seach for the ProductCode:FIND /C /I %SystemRoot%\temp\MSI*.LOG "ProductCode_goes_here"The log will show you whether or not the transform was processed.


Thanks a lot for the information where I can find the log files!!! I´ve been searching for them a lot of time. [:D]

I´ll check out if I can find the right one, too.


Of course, you *did* remember that you have to add the transform using the 'Modifications' tab when adding the package to GP?


Of course. I also use "Always install with elevated privileges" and iweapcrv logging. [8D]
Posted by: anonymous_9363 14 years ago
Red Belt
0
- Please use the CODE tag when posting lengthy text such as log files. You can edit your post to add the tag.
- Your log doesn't seem to feature the 'deployment.config' and 'deployment.properties' files mentioned in the Package KB. I've found using those to be the most fool-proof way of disabling updates andthe Control Panel items.
Posted by: bunfried 14 years ago
Senior Yellow Belt
0
ORIGINAL: VBScab

- Please use the CODE tag when posting lengthy text such as log files. You can edit your post to add the tag.


sorry. I have overlooked the code button.[X(]

- Your log doesn't seem to feature the 'deployment.config' and 'deployment.properties' files mentioned in the Package KB. I've found using those to be the most fool-proof way of disabling updates andthe Control Panel items.


I´m not sure what you mean. I searched for deployment.config and found only this: deployment.config

But is the deployment.config file relevant for 1.6, too? Normaly I use for software-deployment via ad only a msi and mst file. Is anything else necessary to deploy jre 1.6u17 via AD?
Posted by: anonymous_9363 14 years ago
Red Belt
0
Check post # 9 for a link to the Package KB article. Open the 'Notes' section and search that. Alternatively, you can create your own files using the 'Java' Control Panel applet.

Once you have those files, include them with your transform. Remember that files added to a transform applied to an MSI with embedded CABs will create an external CAB file which you will need to include alongside the MSI/MST.
Posted by: bunfried 14 years ago
Senior Yellow Belt
0
So it´s not enought to make a mst file with changed properties? That´s a lot of work for a small application.
Posted by: Bobo 14 years ago
Orange Belt
0
If you check in the Notes section VBScab mentioned, you have some registry values you can set in a CA, that works for me with Java 1.6.0.12.
Posted by: bunfried 14 years ago
Senior Yellow Belt
0
Does it mean, that using a msi and mst file won´t be enough for deploying java?
Posted by: Bobo 14 years ago
Orange Belt
0
No, it just mean that you have to do a little more with the mst file, CA = Custom Action.
Posted by: anonymous_9363 14 years ago
Red Belt
0
You don't need a CA to set registry values. That's what the Registry table is for! :)
Posted by: Bobo 14 years ago
Orange Belt
0
ORIGINAL: VBScab

You don't need a CA to set registry values. That's what the Registry table is for! :)

Yes, I know, but for some reason I did it through a CA instead of the Registry table, and I don't use CA's if I don't need to.

Perhaps Java wipes the values in the Registry table, I actually don't remember, just had a quick look at the mst file.
Posted by: bunfried 14 years ago
Senior Yellow Belt
0
Ok. I think I got it now. I will make the changes in the registry table, too.

But is it really necessary to make the property changes when I also have to add some reg values????
Posted by: nheim 14 years ago
10th Degree Black Belt
0
Hi folks,
do not reinvent the wheel...
Even if it is really, really hard to believe, but SUN has made some real progress in the latest versions. ;-)
See the latest notes (scroll down to the bottom) in the Package KB: http://itninja.com/link/download-here
The most wanted things are adjustable by public properties now and they work.
Be aware of the different behavior of the Update Tab in Admin and Standard User mode.
Regards, Nick
Posted by: bunfried 14 years ago
Senior Yellow Belt
0
I left the EULA setting on 0, but did the same way. It´s true, that the update settings seems to be only accessible with admin rights, but I felt, that something was missing.

For JRE 6_17 follow these steps:
------------------------------------------------------------
-Download from:
"https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=jre-6u17-oth-JPR@CDS-CDS_Developer"
------------------------------------------------------------
-Extract MSI + CAB from "%USERPROFILE%\Application Data\Sun\Java\jre1.6.0_17"
------------------------------------------------------------
-Create MST or command line with property's:
AUTOUPDATECHECK=0
EULA=1
IEXPLORER=1
JAVAUPDATE=0
JU=0
MOZILLA=1
REBOOT=ReallySuppress
SYSTRAY=0
------------------------------------------------------------
- Add the EULA user info by adding the RegKey/value:
HKCU\Software\JavaSoft\Java Runtime Environment\1.6.0_17\
EULA=1 (REG_DWORD)
I did this by using Active Setup, learn more about this technique on "http://www.etlengineering.com/installer/activesetup.txt"
------------------------------------------------------------
Enjoy


Posted by: joedown 14 years ago
Third Degree Brown Belt
0
I noticed with this new version that Sun has included a tranform (sp1033.mst). A fairly large one at that. Do I need to apply this or is it just a language transform?

Also saw this in the package KB. Anyone able to get this to work? The install fails when I move the write reg action to after the InstallJava action.

This is for Java 1.6.0_07. Will probably work for other versions also.

After about an hour of testing, I have found a really REALLY easy way to configure Java.

All of the public properties will work this way.

Set:
[HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy]
"EnableJavaUpdate"=dword:00000000
"EnableAutoUpdateCheck"=dword:00000000

[HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Plug-in\1.6.0_07]
"UseJava2IExplorer"=dword:00000000
"HideSystemTrayIcon"=dword:00000001
"JavaHome"="C:\\Program Files\\Java\\jre1.6.0_07"

Now simply goto your install execute sequence and move "WriteRegistryValues" so it sits after the "InstallJava" custom action.


The reason why people have hit brick walls with registry mods and have had to resort to vbscripts, is because the custom action "InstallJava" overwrites your reg settings. This method allow Java to install correctly, and also allows your registry settings to still apply in a simple and clean way.
Posted by: bunfried 14 years ago
Senior Yellow Belt
-1
I also found a java_install_reg.log and java_install.log file????

Now, I´ve found the proper log file and some lines, which may be helpful. It seems to be that the mst file was found successfully and the desired changes were made.
=== Verbose logging started: 06.12.2009 23:35:05 Build type: SHIP UNICODE 5.00.7600.00 Calling process: C:\Windows\system32\svchost.exe ===
MSI (c) (04:30) [23:35:05:723]: Resetting cached policy values
MSI (c) (04:30) [23:35:05:723]: Machine policy value 'Debug' is 0
MSI (c) (04:30) [23:35:05:723]: ******* RunEngine:
******* Product: {26a24ae4-039d-4ca4-87b4-2f83216017ff}
******* Action:
******* CommandLine: **********
MSI (c) (04:30) [23:35:05:723]: Client-side and UI is none or basic: Running entire install on the server.
MSI (c) (04:30) [23:35:05:723]: Grabbed execution mutex.
MSI (c) (04:30) [23:35:05:723]: Cloaking enabled.
MSI (c) (04:30) [23:35:05:723]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (04:30) [23:35:05:723]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (2C:38) [23:35:05:734]: Running installation inside multi-package transaction {26a24ae4-039d-4ca4-87b4-2f83216017ff}
MSI (s) (2C:38) [23:35:05:734]: Grabbed execution mutex.
MSI (s) (2C:28) [23:35:05:734]: Resetting cached policy values
MSI (s) (2C:28) [23:35:05:734]: Machine policy value 'Debug' is 0
MSI (s) (2C:28) [23:35:05:734]: ******* RunEngine:
******* Product: {26a24ae4-039d-4ca4-87b4-2f83216017ff}
******* Action:
******* CommandLine: **********
MSI (s) (2C:28) [23:35:05:734]: Machine policy value 'DisableUserInstalls' is 0
MSI (s) (2C:28) [23:35:05:734]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (2C:28) [23:35:05:734]: User policy value 'DisableMedia' is 0
MSI (s) (2C:28) [23:35:05:734]: Machine policy value 'AllowLockdownMedia' is 0
MSI (s) (2C:28) [23:35:05:734]: SOURCEMGMT: Media enabled only if package is safe.
MSI (s) (2C:28) [23:35:05:734]: SOURCEMGMT: Looking for sourcelist for product {26a24ae4-039d-4ca4-87b4-2f83216017ff}
MSI (s) (2C:28) [23:35:05:734]: SOURCEMGMT: Adding {26a24ae4-039d-4ca4-87b4-2f83216017ff}; to potential sourcelist list (pcode;disk;relpath).
MSI (s) (2C:28) [23:35:05:734]: SOURCEMGMT: Now checking product {26a24ae4-039d-4ca4-87b4-2f83216017ff}
MSI (s) (2C:28) [23:35:05:734]: SOURCEMGMT: Media is enabled for product.
MSI (s) (2C:28) [23:35:05:734]: SOURCEMGMT: Attempting to use LastUsedSource from source list.
MSI (s) (2C:28) [23:35:05:734]: SOURCEMGMT: Processing net source list.
MSI (s) (2C:28) [23:35:05:734]: SOURCEMGMT: Trying source \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\.
MSI (s) (2C:28) [23:35:05:734]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
MSI (s) (2C:28) [23:35:05:800]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (2C:28) [23:35:05:811]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (s) (2C:28) [23:35:05:811]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (2C:28) [23:35:05:811]: Specifed source is already in a list.
MSI (s) (2C:28) [23:35:05:811]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (2C:28) [23:35:05:811]: Machine policy value 'DisableBrowse' is 0
MSI (s) (2C:28) [23:35:05:811]: Machine policy value 'AllowLockdownBrowse' is 0
MSI (s) (2C:28) [23:35:05:811]: Adding new sources is allowed.
MSI (s) (2C:28) [23:35:05:811]: Set LastUsedSource to: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\.
MSI (s) (2C:28) [23:35:05:811]: Set LastUsedType to: n.
MSI (s) (2C:28) [23:35:05:811]: Set LastUsedIndex to: 1.
MSI (s) (2C:28) [23:35:05:811]: SOURCEMGMT: Resolved source to: '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\'
MSI (s) (2C:28) [23:35:05:811]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (2C:28) [23:35:05:811]: SRSetRestorePoint skipped for this transaction.
MSI (s) (2C:28) [23:35:05:811]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (s) (2C:28) [23:35:05:811]: File will have security applied from OpCode.
MSI (s) (2C:28) [23:35:05:899]: SOFTWARE RESTRICTION POLICY: Verifying package --> '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.msi' against software restriction policy
MSI (s) (2C:28) [23:35:05:899]: SOFTWARE RESTRICTION POLICY: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.msi has a digital signature
MSI (s) (2C:28) [23:35:05:899]: SOFTWARE RESTRICTION POLICY: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.msi is permitted to run because the user token authorizes execution (system or service token).
MSI (s) (2C:28) [23:35:05:899]: End dialog not enabled
MSI (s) (2C:28) [23:35:05:899]: Original package ==> \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.msi
MSI (s) (2C:28) [23:35:05:899]: Package we're running from ==> C:\Windows\Installer\1363f.msi
MSI (s) (2C:28) [23:35:05:899]: APPCOMPAT: looking for appcompat database entry with ProductCode '{26A24AE4-039D-4CA4-87B4-2F83216017FF}'.
MSI (s) (2C:28) [23:35:05:899]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (2C:28) [23:35:05:899]: MSCOREE not loaded loading copy from system32
MSI (s) (2C:28) [23:35:05:910]: Machine policy value 'DisablePatch' is 0
MSI (s) (2C:28) [23:35:05:910]: Machine policy value 'AllowLockdownPatch' is 0
MSI (s) (2C:28) [23:35:05:910]: Machine policy value 'DisableLUAPatching' is 0
MSI (s) (2C:28) [23:35:05:910]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (s) (2C:28) [23:35:05:910]: Looking for secure file transform:
MSI (s) (2C:28) [23:35:05:910]: Note: 1: 2343
MSI (s) (2C:28) [23:35:05:910]: Unable to create a temp copy of transform '.
MSI (s) (2C:28) [23:35:05:910]: Note: 1: 2203 2: 3: -2147287037
MSI (s) (2C:28) [23:35:05:910]: Couldn't find cached transform . Looking for it at the source.
MSI (s) (2C:28) [23:35:05:910]: Resolving source.
MSI (s) (2C:28) [23:35:05:910]: Resolving source to launched-from source.
MSI (s) (2C:28) [23:35:05:910]: Setting launched-from source as last-used.
MSI (s) (2C:28) [23:35:05:910]: SOURCEDIR ==> \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\
MSI (s) (2C:28) [23:35:05:910]: SOURCEDIR product ==> {26A24AE4-039D-4CA4-87B4-2F83216017FF}
MSI (s) (2C:28) [23:35:05:910]: Looking for secure file transform:
MSI (s) (2C:28) [23:35:05:910]: Note: 1: 2343
MSI (s) (2C:28) [23:35:05:910]: Unable to create a temp copy of transform '.
MSI (s) (2C:28) [23:35:05:910]: Note: 1: 2203 2: 3: -2147287037
MSI (s) (2C:28) [23:35:05:910]: Couldn't find cached transform . Looking for it at the source.
MSI (s) (2C:28) [23:35:05:910]: Looking for secure file transform: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst
MSI (s) (2C:28) [23:35:05:910]: File will have security applied from OpCode.
MSI (s) (2C:28) [23:35:05:943]: Original transform ==> \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst
MSI (s) (2C:28) [23:35:05:943]: Transform we're running from ==> C:\Windows\Installer\13640.mst
MSI (s) (2C:28) [23:35:05:943]: Found missing cached transform \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst. Adding it to re-cache list.
MSI (s) (2C:28) [23:35:05:943]: SOFTWARE RESTRICTION POLICY: Verifying transform --> '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst' against software restriction policy
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: DigitalSignature 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: SOFTWARE RESTRICTION POLICY: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst is not digitally signed
MSI (s) (2C:28) [23:35:05:943]: SOFTWARE RESTRICTION POLICY: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst is permitted to run because the user token authorizes execution (system or service token).
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: File 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: TRANSFORM: 'PatchPackage' table is missing or empty. No pre-transform fixup necessary.
MSI (s) (2C:28) [23:35:05:943]: TRANSFORM: Applying regular transform to database.
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: AdminExecuteSequence 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: AdminUISequence 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: AdvtExecuteSequence 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: AppId 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: AppSearch 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: BBControl 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Billboard 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Feature 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: BindImage 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: File 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: CCPSearch 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: CheckBox 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Component 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ProgId 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ComboBox 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Complus 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Directory 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Control 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Dialog 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ControlCondition 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ControlEvent 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: DrLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: DuplicateFile 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Environment 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: EventMapping 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: MIME 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: FeatureComponents 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: FileSFPCatalog 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: SFPCatalog 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Font 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: IniFile 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: InstallUISequence 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: IsolatedComponent 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: LaunchCondition 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ListBox 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ListView 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: LockPermissions 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ModuleComponents 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: MoveFile 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: MsiAssemblyName 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: MsiDigitalCertificate 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: MsiDigitalSignature 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ODBCAttribute 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ODBCDriver 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ODBCDataSource 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ODBCSourceAttribute 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ODBCTranslator 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: RadioButton 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Registry 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: RegLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: RemoveFile 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: RemoveIniFile 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ReserveCost 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: SelfReg 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ServiceControl 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: ServiceInstall 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Signature 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: TextStyle 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: UIText 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Upgrade 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: Verb 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: _Validation 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: _MsiPatchTransformView 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: #_BaselineCost 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: #_BaselineFile 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: #_BaselineData 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: #_PatchCache 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: APPCOMPAT: looking for appcompat database entry with ProductCode '{26A24AE4-039D-4CA4-87B4-2F83216017FF}'.
MSI (s) (2C:28) [23:35:05:943]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (2C:28) [23:35:05:943]: Transforms are relative secure.
MSI (s) (2C:28) [23:35:05:943]: Transforming table Property.

MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Windows\TEMP\MSI122ef.LOG'.
MSI (s) (2C:28) [23:35:05:943]: Command Line: CURRENTDIRECTORY=C:\Windows\system32 CLIENTUILEVEL=3 CLIENTPROCESSID=772
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{8C68C66E-7600-41BF-8B69-F3931F962AE3}'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding RecacheTransforms property. Its value is '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding TRANSFORMS property. Its value is '@jre1.6.0_17.mst'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding TRANSFORMSSECURE property. Its value is '1'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding TRANSFORMSATSOURCE property. Its value is '1'.
MSI (s) (2C:28) [23:35:05:943]: Product Code passed to Engine.Initialize: '{26a24ae4-039d-4ca4-87b4-2f83216017ff}'
MSI (s) (2C:28) [23:35:05:943]: Product Code from property table before transforms: '{26A24AE4-039D-4CA4-87B4-2F83216017FF}'
MSI (s) (2C:28) [23:35:05:943]: Product Code from property table after transforms: '{26A24AE4-039D-4CA4-87B4-2F83216017FF}'
MSI (s) (2C:28) [23:35:05:943]: Product not registered: beginning first-time install
MSI (s) (2C:28) [23:35:05:943]: Determined that existing product (either this product or the product being upgraded with a patch) is installed per-machine.
MSI (s) (2C:28) [23:35:05:943]: Product {26A24AE4-039D-4CA4-87B4-2F83216017FF} is admin assigned: LocalSystem owns the publish key.
MSI (s) (2C:28) [23:35:05:943]: Product {26A24AE4-039D-4CA4-87B4-2F83216017FF} is managed.
MSI (s) (2C:28) [23:35:05:943]: MSI_LUA: Credential prompt not required, user is an admin
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding ProductState property. Its value is '1'.
MSI (s) (2C:28) [23:35:05:943]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (2C:28) [23:35:05:943]: Specifed source is already in a list.
MSI (s) (2C:28) [23:35:05:943]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (2C:28) [23:35:05:943]: Adding new sources is allowed.
MSI (s) (2C:28) [23:35:05:943]: Package name retrieved from configuration data: 'jre1.6.0_17.msi'
MSI (s) (2C:28) [23:35:05:943]: Note: 1: 2262 2: AdminProperties 3: -2147287038
MSI (s) (2C:28) [23:35:05:943]: Machine policy value 'DisableMsi' is 0
MSI (s) (2C:28) [23:35:05:943]: Machine policy value 'AlwaysInstallElevated' is 1
MSI (s) (2C:28) [23:35:05:943]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (2C:28) [23:35:05:943]: Product {26A24AE4-039D-4CA4-87B4-2F83216017FF} is admin assigned: LocalSystem owns the publish key.
MSI (s) (2C:28) [23:35:05:943]: Product {26A24AE4-039D-4CA4-87B4-2F83216017FF} is managed.
MSI (s) (2C:28) [23:35:05:943]: Running product '{26A24AE4-039D-4CA4-87B4-2F83216017FF}' with elevated privileges: Product is assigned.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Windows\system32'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '772'.
MSI (s) (2C:28) [23:35:05:943]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
MSI (s) (2C:28) [23:35:05:943]: RESTART MANAGER: Disabled by MSIRESTARTMANAGERCONTROL property; Windows Installer will use the built-in FilesInUse functionality.
MSI (s) (2C:28) [23:35:05:943]: TRANSFORMS property is now: @jre1.6.0_17.mst
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding PRODUCTLANGUAGE property. Its value is '0'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding SourceDir property. Its value is '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{26A24AE4-039D-4CA4-87B4-2F83216017FF}'.
MSI (s) (2C:28) [23:35:05:943]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Favorites
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Network Shortcuts
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Documents
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\SendTo
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Templates
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\ProgramData
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Local
MSI (s) (2C:28) [23:35:05:954]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Pictures
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
MSI (s) (2C:28) [23:35:05:965]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu
MSI (s) (2C:28) [23:35:05:976]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Desktop
MSI (s) (2C:28) [23:35:05:976]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
MSI (s) (2C:28) [23:35:05:976]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
MSI (s) (2C:28) [23:35:05:976]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
MSI (s) (2C:28) [23:35:05:976]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
MSI (s) (2C:28) [23:35:05:976]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
MSI (s) (2C:28) [23:35:05:976]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (s) (2C:28) [23:35:05:976]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (s) (2C:28) [23:35:05:976]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'admin'.
MSI (s) (2C:28) [23:35:05:976]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (s) (2C:28) [23:35:05:976]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\1363f.msi'.
MSI (s) (2C:28) [23:35:05:976]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.msi'.
MSI (s) (2C:28) [23:35:05:976]: Machine policy value 'MsiDisableEmbeddedUI' is 0
MSI (s) (2C:28) [23:35:05:976]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
MSI (s) (2C:28) [23:35:05:976]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (2C:28) [23:35:05:976]: Machine policy value 'DisableRollback' is 0
MSI (s) (2C:28) [23:35:05:976]: User policy value 'DisableRollback' is 0
MSI (s) (2C:28) [23:35:05:976]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
MSI (s) (2C:28) [23:35:05:976]: Note: 1: 2262 2: Font 3: -2147287038
=== Logging started: 06.12.2009 23:35:05 ===
MSI (s) (2C:28) [23:35:05:976]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (s) (2C:28) [23:35:05:976]: Doing action: INSTALL
Action start 23:35:05: INSTALL.
MSI (s) (2C:28) [23:35:05:976]: Running ExecuteSequence
MSI (s) (2C:28) [23:35:05:976]: Doing action: AppSearch
Action start 23:35:05: AppSearch.
MSI (s) (2C:28) [23:35:05:976]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:976]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Runtime Environment\NA 3: 2
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: PROPERTY CHANGE: Adding ITANIUM property. Its value is 'Intel(R) Pentium(R) M processor 1200MHz'.
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: PROPERTY CHANGE: Modifying MSVCRT property. Its current value is '0'. Its new value: 'C:\Windows\system32\msvcrt.dll'.
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Runtime Environment\1.6.0_17\MSI 3: 2
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Runtime Environment 3: 2
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: IniLocator 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: Skipping action: SetJDK_VERSIONtoPatchedVersion (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Skipping action: SetINSTALLDIR (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Skipping action: SetExists (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Doing action: LaunchConditions
Action ended 23:35:05: AppSearch. Return value 1.
Action start 23:35:05: LaunchConditions.
MSI (s) (2C:28) [23:35:05:987]: Skipping action: GetKernelReady (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Doing action: FindRelatedProducts
Action ended 23:35:05: LaunchConditions. Return value 1.
Action start 23:35:05: FindRelatedProducts.
MSI (s) (2C:28) [23:35:05:987]: Skipping action: NewerConsumerVersionInstalled (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Skipping action: SameVersionAlreadyInstalledAsStatic (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Skipping action: CCPSearch (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Skipping action: RMCCPSearch (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Doing action: ValidateProductID
Action ended 23:35:05: FindRelatedProducts. Return value 1.
Action start 23:35:05: ValidateProductID.
MSI (s) (2C:28) [23:35:05:987]: Doing action: setUserProfileNT
Action ended 23:35:05: ValidateProductID. Return value 1.
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'setUserProfileNT'
MSI (s) (2C:28) [23:35:05:987]: PROPERTY CHANGE: Adding USERPROFILE property. Its value is 'C:\Users\Default'.
Action start 23:35:05: setUserProfileNT.
MSI (s) (2C:28) [23:35:05:987]: Skipping action: SetAllUsersProfileNT (condition is false)
MSI (s) (2C:28) [23:35:05:987]: Doing action: setAllUsersProfile2K
Action ended 23:35:05: setUserProfileNT. Return value 1.
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'setAllUsersProfile2K'
MSI (s) (2C:28) [23:35:05:987]: PROPERTY CHANGE: Adding ALLUSERSPROFILE property. Its value is 'C:\ProgramData'.
Action start 23:35:05: setAllUsersProfile2K.
MSI (s) (2C:28) [23:35:05:987]: Doing action: CostInitialize
Action ended 23:35:05: setAllUsersProfile2K. Return value 1.
MSI (s) (2C:28) [23:35:05:987]: Machine policy value 'MaxPatchCacheSize' is 10
MSI (s) (2C:28) [23:35:05:987]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'C:\'.
MSI (s) (2C:28) [23:35:05:987]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2205 2: 3: MsiPatchHeaders
MSI (s) (2C:28) [23:35:05:987]: Note: 1: 2205 2: 3: __MsiPatchFileList
Action start 23:35:05: CostInitialize.
MSI (s) (2C:28) [23:35:05:998]: Doing action: FileCost
Action ended 23:35:05: CostInitialize. Return value 1.
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: MoveFile 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: DuplicateFile 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: IniFile 3: -2147287038
Action start 23:35:05: FileCost.
MSI (s) (2C:28) [23:35:05:998]: Doing action: IsolateComponents
Action ended 23:35:05: FileCost. Return value 1.
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: BindImage 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2262 2: IsolatedComponent 3: -2147287038
MSI (s) (2C:28) [23:35:05:998]: Note: 1: 2728 2: Patch
Action start 23:35:05: IsolateComponents.
MSI (s) (2C:28) [23:35:05:998]: Doing action: CostFinalize
Action ended 23:35:05: IsolateComponents. Return value 1.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Modifying USERPROFILE property. Its current value is 'C:\Users\Default'. Its new value: 'C:\Users\Default\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding System64Folder property. Its value is 'C:\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding ProgramFiles64Folder property. Its value is 'C:\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding GlobalAssemblyCache property. Its value is 'C:\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding CommonFiles64Folder property. Its value is 'C:\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Modifying ALLUSERSPROFILE property. Its current value is 'C:\ProgramData'. Its new value: 'C:\ProgramData\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding JAVA property. Its value is 'C:\Program Files\Java\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding INSTALLDIR property. Its value is 'C:\Program Files\Java\jre6\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding bin property. Its value is 'C:\Program Files\Java\jre6\bin\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding new_plugin property. Its value is 'C:\Program Files\Java\jre6\bin\new_plugin\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding client property. Its value is 'C:\Program Files\Java\jre6\bin\client\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding binkernel property. Its value is 'C:\Program Files\Java\jre6\bin\kernel\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding lib property. Its value is 'C:\Program Files\Java\jre6\lib\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding servicetag property. Its value is 'C:\Program Files\Java\jre6\lib\servicetag\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding security property. Its value is 'C:\Program Files\Java\jre6\lib\security\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding management property. Its value is 'C:\Program Files\Java\jre6\lib\management\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding im property. Its value is 'C:\Program Files\Java\jre6\lib\im\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding i386 property. Its value is 'C:\Program Files\Java\jre6\lib\i386\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding fonts property. Its value is 'C:\Program Files\Java\jre6\lib\fonts\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding ext property. Its value is 'C:\Program Files\Java\jre6\lib\ext\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding images property. Its value is 'C:\Program Files\Java\jre6\lib\images\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding cursors property. Its value is 'C:\Program Files\Java\jre6\lib\images\cursors\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding cmm property. Its value is 'C:\Program Files\Java\jre6\lib\cmm\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding bundles property. Its value is 'C:\Program Files\Java\jre6\lib\bundles\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding tmp property. Its value is 'C:\Program Files\Java\jre6\lib\bundles\tmp\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding tmplib property. Its value is 'C:\Program Files\Java\jre6\lib\bundles\tmp\lib\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding tmplibi386 property. Its value is 'C:\Program Files\Java\jre6\lib\bundles\tmp\lib\i386\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding tmplibext property. Its value is 'C:\Program Files\Java\jre6\lib\bundles\tmp\lib\ext\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding audio property. Its value is 'C:\Program Files\Java\jre6\lib\audio\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding applet property. Its value is 'C:\Program Files\Java\jre6\lib\applet\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding zi property. Its value is 'C:\Program Files\Java\jre6\lib\zi\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding SystemV property. Its value is 'C:\Program Files\Java\jre6\lib\zi\SystemV\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Pacific property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Pacific\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Indian property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Indian\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Europe property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Europe\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Etc property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Etc\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Australia property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Australia\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Atlantic property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Atlantic\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Asia property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Asia\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Antarctica property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Antarctica\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding America property. Its value is 'C:\Program Files\Java\jre6\lib\zi\America\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding North_Dakota property. Its value is 'C:\Program Files\Java\jre6\lib\zi\America\North_Dakota\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Kentucky property. Its value is 'C:\Program Files\Java\jre6\lib\zi\America\Kentucky\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Indiana property. Its value is 'C:\Program Files\Java\jre6\lib\zi\America\Indiana\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Argentina property. Its value is 'C:\Program Files\Java\jre6\lib\zi\America\Argentina\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding Africa property. Its value is 'C:\Program Files\Java\jre6\lib\zi\Africa\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding deploy property. Its value is 'C:\Program Files\Java\jre6\lib\deploy\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding jqs property. Its value is 'C:\Program Files\Java\jre6\lib\deploy\jqs\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding ie property. Its value is 'C:\Program Files\Java\jre6\lib\deploy\jqs\ie\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding ff property. Its value is 'C:\Program Files\Java\jre6\lib\deploy\jqs\ff\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding chrome property. Its value is 'C:\Program Files\Java\jre6\lib\deploy\jqs\ff\chrome\'.
MSI (s) (2C:28) [23:35:05:998]: PROPERTY CHANGE: Adding content property. Its value is 'C:\Program Files\Java\jre6\lib\deploy\jqs\ff\chrome\content\'.
MSI (s) (2C:28) [23:35:05:998]: Target path resolution complete. Dumping Directory table...
MSI (s) (2C:28) [23:35:05:998]: Note: target paths subject to change (via custom actions or browsing)
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: TARGETDIR , Object: C:\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: WindowsFolder , Object: C:\Windows\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: USERPROFILE , Object: C:\Users\Default\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: TemplateFolder , Object: C:\ProgramData\Microsoft\Windows\Templates\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: TempFolder , Object: C:\Windows\TEMP\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: SystemFolder , Object: C:\Windows\system32\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: System64Folder , Object: C:\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: System16Folder , Object: C:\Windows\system\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: ProgramFiles64Folder , Object: C:\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: LocalAppDataFolder , Object: C:\Windows\system32\config\systemprofile\AppData\Local\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: GlobalAssemblyCache , Object: C:\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: CommonFilesFolder , Object: C:\Program Files\Common Files\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: CommonFiles64Folder , Object: C:\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: CommonAppDataFolder , Object: C:\ProgramData\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: AppDataFolder , Object: C:\Windows\system32\config\systemprofile\AppData\Roaming\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: AdminToolsFolder , Object: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: ALLUSERSPROFILE , Object: C:\ProgramData\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: ProgramFilesFolder , Object: C:\Program Files\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: JAVA , Object: C:\Program Files\Java\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: INSTALLDIR , Object: C:\Program Files\Java\jre6\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: bin , Object: C:\Program Files\Java\jre6\bin\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: new_plugin , Object: C:\Program Files\Java\jre6\bin\new_plugin\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: client , Object: C:\Program Files\Java\jre6\bin\client\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: binkernel , Object: C:\Program Files\Java\jre6\bin\kernel\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: lib , Object: C:\Program Files\Java\jre6\lib\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: servicetag , Object: C:\Program Files\Java\jre6\lib\servicetag\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: security , Object: C:\Program Files\Java\jre6\lib\security\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: management , Object: C:\Program Files\Java\jre6\lib\management\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: im , Object: C:\Program Files\Java\jre6\lib\im\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: i386 , Object: C:\Program Files\Java\jre6\lib\i386\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: fonts , Object: C:\Program Files\Java\jre6\lib\fonts\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: ext , Object: C:\Program Files\Java\jre6\lib\ext\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: images , Object: C:\Program Files\Java\jre6\lib\images\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: cursors , Object: C:\Program Files\Java\jre6\lib\images\cursors\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: cmm , Object: C:\Program Files\Java\jre6\lib\cmm\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: bundles , Object: C:\Program Files\Java\jre6\lib\bundles\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: tmp , Object: C:\Program Files\Java\jre6\lib\bundles\tmp\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: tmplib , Object: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: tmplibi386 , Object: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\i386\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: tmplibext , Object: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\ext\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: audio , Object: C:\Program Files\Java\jre6\lib\audio\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: applet , Object: C:\Program Files\Java\jre6\lib\applet\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: zi , Object: C:\Program Files\Java\jre6\lib\zi\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: SystemV , Object: C:\Program Files\Java\jre6\lib\zi\SystemV\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Pacific , Object: C:\Program Files\Java\jre6\lib\zi\Pacific\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Indian , Object: C:\Program Files\Java\jre6\lib\zi\Indian\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Europe , Object: C:\Program Files\Java\jre6\lib\zi\Europe\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Etc , Object: C:\Program Files\Java\jre6\lib\zi\Etc\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Australia , Object: C:\Program Files\Java\jre6\lib\zi\Australia\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Atlantic , Object: C:\Program Files\Java\jre6\lib\zi\Atlantic\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Asia , Object: C:\Program Files\Java\jre6\lib\zi\Asia\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Antarctica , Object: C:\Program Files\Java\jre6\lib\zi\Antarctica\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: America , Object: C:\Program Files\Java\jre6\lib\zi\America\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: North_Dakota , Object: C:\Program Files\Java\jre6\lib\zi\America\North_Dakota\
MSI (s) (2C:28) [23:35:05:998]: Dir (target): Key: Kentucky , Object: C:\Program Files\Java\jre6\lib\zi\America\Kentucky\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: Indiana , Object: C:\Program Files\Java\jre6\lib\zi\America\Indiana\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: Argentina , Object: C:\Program Files\Java\jre6\lib\zi\America\Argentina\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: Africa , Object: C:\Program Files\Java\jre6\lib\zi\Africa\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: deploy , Object: C:\Program Files\Java\jre6\lib\deploy\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: jqs , Object: C:\Program Files\Java\jre6\lib\deploy\jqs\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: ie , Object: C:\Program Files\Java\jre6\lib\deploy\jqs\ie\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: ff , Object: C:\Program Files\Java\jre6\lib\deploy\jqs\ff\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: chrome , Object: C:\Program Files\Java\jre6\lib\deploy\jqs\ff\chrome\
MSI (s) (2C:28) [23:35:06:009]: Dir (target): Key: content , Object: C:\Program Files\Java\jre6\lib\deploy\jqs\ff\chrome\content\
Action start 23:35:05: CostFinalize.
MSI (s) (2C:28) [23:35:06:009]: Doing action: SetARPReadme
Action ended 23:35:06: CostFinalize. Return value 1.
MSI (s) (2C:28) [23:35:06:009]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetARPReadme'
MSI (s) (2C:28) [23:35:06:009]: PROPERTY CHANGE: Modifying ARPREADME property. Its current value is '[INSTALLDIR]README.txt'. Its new value: 'C:\Program Files\Java\jre6\README.txt'.
Action start 23:35:06: SetARPReadme.
MSI (s) (2C:28) [23:35:06:009]: Doing action: CheckPendingFileRenameOperations
Action ended 23:35:06: SetARPReadme. Return value 1.
MSI (s) (2C:28) [23:35:06:009]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'CheckPendingFileRenameOperations'
MSI (s) (2C:5C) [23:35:06:009]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID3EC.tmp, Entrypoint: MSICheckPendingFileRenameOperations
MSI (s) (2C:00) [23:35:06:009]: Generating random cookie.
MSI (s) (2C:00) [23:35:06:009]: Created Custom Action Server with PID 920 (0x398).
MSI (s) (2C:34) [23:35:06:141]: Running as a service.
MSI (s) (2C:34) [23:35:06:141]: Hello, I'm your 32bit Elevated custom action server.
Action start 23:35:06: CheckPendingFileRenameOperations.
MSI (s) (2C:28) [23:35:06:174]: Doing action: SetODBCFolders
Action ended 23:35:06: CheckPendingFileRenameOperations. Return value 1.
MSI (s) (2C:28) [23:35:06:174]: Note: 1: 2262 2: ODBCDriver 3: -2147287038
MSI (s) (2C:28) [23:35:06:174]: Note: 1: 2262 2: ODBCTranslator 3: -2147287038
Action start 23:35:06: SetODBCFolders.
MSI (s) (2C:28) [23:35:06:174]: Doing action: MigrateFeatureStates
Action ended 23:35:06: SetODBCFolders. Return value 1.
Action start 23:35:06: MigrateFeatureStates.
MSI (s) (2C:28) [23:35:06:185]: Skipping action: UnInstallJUpdate (condition is false)
MSI (s) (2C:28) [23:35:06:185]: Doing action: SetARPINSTALLLOCATION
Action ended 23:35:06: MigrateFeatureStates. Return value 0.
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetARPINSTALLLOCATION'
MSI (s) (2C:28) [23:35:06:185]: PROPERTY CHANGE: Adding ARPINSTALLLOCATION property. Its value is 'C:\Program Files\Java\jre6\'.
Action start 23:35:06: SetARPINSTALLLOCATION.
MSI (s) (2C:28) [23:35:06:185]: Doing action: InstallValidate
Action ended 23:35:06: SetARPINSTALLLOCATION. Return value 1.
Action start 23:35:06: InstallValidate.
MSI (s) (2C:28) [23:35:06:185]: Feature: both; Installed: Advertise; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Feature: IE; Installed: Absent; Request: Null; Action: Null
MSI (s) (2C:28) [23:35:06:185]: Feature: IESUB; Installed: Advertise; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Feature: MOZILLASUB; Installed: Advertise; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Feature: jrecore; Installed: Absent; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: jz; Installed: Absent; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: jr; Installed: Absent; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: jp; Installed: Absent; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: consumer; Installed: Absent; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz65; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz66; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz67; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz68; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz69; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz70; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz71; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz72; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz73; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz74; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz75; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz76; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz77; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz78; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz79; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz80; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz81; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz82; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz83; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz84; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz85; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz86; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz87; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz88; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz89; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz90; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz91; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz92; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz93; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz94; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz95; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz96; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz97; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz98; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz99; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz100; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz101; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz102; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz103; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz104; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz105; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz106; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz107; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz108; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz109; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz110; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __consumer65; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Component: __jz111; Installed: Null; Request: Local; Action: Local
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: BindImage 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: ProgId 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: SelfReg 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: Font 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2205 2: 3: _RemoveFilePath
MSI (s) (2C:28) [23:35:06:185]: Note: 1: 2262 2: DuplicateFile 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: BindImage 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: ProgId 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: SelfReg 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: Font 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2727 2:
MSI (s) (2C:28) [23:35:06:207]: Note: 1: 2727 2:
MSI (s) (2C:28) [23:35:06:207]: Doing action: RemoveExistingProducts
Action ended 23:35:06: InstallValidate. Return value 1.
Action start 23:35:06: RemoveExistingProducts.
MSI (s) (2C:28) [23:35:06:207]: Doing action: InstallInitialize
Action ended 23:35:06: RemoveExistingProducts. Return value 1.
MSI (s) (2C:28) [23:35:06:207]: Machine policy value 'AlwaysInstallElevated' is 1
MSI (s) (2C:28) [23:35:06:207]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (2C:28) [23:35:06:207]: BeginTransaction: Locking Server
MSI (s) (2C:28) [23:35:06:207]: Transforming table Property.

MSI (s) (2C:28) [23:35:06:207]: SRSetRestorePoint skipped for this transaction.
MSI (s) (2C:28) [23:35:06:207]: Server not locked: locking for product {26A24AE4-039D-4CA4-87B4-2F83216017FF}
Action start 23:35:06: InstallInitialize.
MSI (s) (2C:28) [23:35:07:616]: Skipping action: RemoveJREMSICache (condition is false)
MSI (s) (2C:28) [23:35:07:616]: Skipping action: UninstallJRE (condition is false)
MSI (s) (2C:28) [23:35:07:616]: Skipping action: FilesInUseDialog (condition is false)
MSI (s) (2C:28) [23:35:07:616]: Skipping action: CheckFIUCancel (condition is false)
MSI (s) (2C:28) [23:35:07:616]: Doing action: AllocateRegistrySpace
Action ended 23:35:07: InstallInitialize. Return value 1.
Action start 23:35:07: AllocateRegistrySpace.
MSI (s) (2C:28) [23:35:07:616]: Doing action: ProcessComponents
Action ended 23:35:07: AllocateRegistrySpace. Return value 1.
Action start 23:35:07: ProcessComponents.
MSI (s) (2C:28) [23:35:07:627]: Doing action: UnpublishComponents
Action ended 23:35:07: ProcessComponents. Return value 1.
MSI (s) (2C:28) [23:35:07:627]: Note: 1: 2262 2: PublishComponent 3: -2147287038
Action start 23:35:07: UnpublishComponents.
MSI (s) (2C:28) [23:35:07:627]: Doing action: MsiUnpublishAssemblies
Action ended 23:35:07: UnpublishComponents. Return value 1.
Action start 23:35:07: MsiUnpublishAssemblies.
MSI (s) (2C:28) [23:35:07:638]: Doing action: UnpublishFeatures
Action ended 23:35:07: MsiUnpublishAssemblies. Return value 1.
Action start 23:35:07: UnpublishFeatures.
MSI (s) (2C:28) [23:35:07:638]: Doing action: StopServices
Action ended 23:35:07: UnpublishFeatures. Return value 1.
Action start 23:35:07: StopServices.
MSI (s) (2C:28) [23:35:07:638]: Doing action: DeleteServices
Action ended 23:35:07: StopServices. Return value 1.
Action start 23:35:07: DeleteServices.
MSI (s) (2C:28) [23:35:07:638]: Doing action: UnregisterComPlus
Action ended 23:35:07: DeleteServices. Return value 1.
MSI (s) (2C:28) [23:35:07:638]: Note: 1: 2262 2: Complus 3: -2147287038
Action start 23:35:07: UnregisterComPlus.
MSI (s) (2C:28) [23:35:07:638]: Doing action: SelfUnregModules
Action ended 23:35:07: UnregisterComPlus. Return value 1.
MSI (s) (2C:28) [23:35:07:638]: Note: 1: 2262 2: SelfReg 3: -2147287038
Action start 23:35:07: SelfUnregModules.
MSI (s) (2C:28) [23:35:07:638]: Doing action: UnregisterTypeLibraries
Action ended 23:35:07: SelfUnregModules. Return value 1.
Action start 23:35:07: UnregisterTypeLibraries.
MSI (s) (2C:28) [23:35:07:638]: Doing action: RemoveODBC
Action ended 23:35:07: UnregisterTypeLibraries. Return value 1.
MSI (s) (2C:28) [23:35:07:638]: Note: 1: 2262 2: ODBCDataSource 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: ODBCDataSource 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: ODBCTranslator 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: ODBCTranslator 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: ODBCDriver 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: ODBCDriver 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2711 2: ODBCDriverManager
Action start 23:35:07: RemoveODBC.
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2711 2: ODBCDriverManager64
MSI (s) (2C:28) [23:35:07:649]: Doing action: RemoveRegistryValues
Action ended 23:35:07: RemoveODBC. Return value 1.
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
Action start 23:35:07: RemoveRegistryValues.
MSI (s) (2C:28) [23:35:07:649]: Doing action: UnregisterClassInfo
Action ended 23:35:07: RemoveRegistryValues. Return value 1.
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: Class 3: -2147287038
Action start 23:35:07: UnregisterClassInfo.
MSI (s) (2C:28) [23:35:07:649]: Doing action: UnregisterExtensionInfo
Action ended 23:35:07: UnregisterClassInfo. Return value 1.
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: Extension 3: -2147287038
Action start 23:35:07: UnregisterExtensionInfo.
MSI (s) (2C:28) [23:35:07:649]: Doing action: UnregisterProgIdInfo
Action ended 23:35:07: UnregisterExtensionInfo. Return value 1.
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: ProgId 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: ProgId 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: Extension 3: -2147287038
Action start 23:35:07: UnregisterProgIdInfo.
MSI (s) (2C:28) [23:35:07:649]: Doing action: UnregisterMIMEInfo
Action ended 23:35:07: UnregisterProgIdInfo. Return value 1.
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: MIME 3: -2147287038
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: Extension 3: -2147287038
Action start 23:35:07: UnregisterMIMEInfo.
MSI (s) (2C:28) [23:35:07:649]: Doing action: RemoveIniValues
Action ended 23:35:07: UnregisterMIMEInfo. Return value 1.
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: RemoveIniFile 3: -2147287038
Action start 23:35:07: RemoveIniValues.
MSI (s) (2C:28) [23:35:07:649]: Doing action: RemoveShortcuts
Action ended 23:35:07: RemoveIniValues. Return value 1.
Action start 23:35:07: RemoveShortcuts.
MSI (s) (2C:28) [23:35:07:649]: Doing action: RemoveEnvironmentStrings
Action ended 23:35:07: RemoveShortcuts. Return value 1.
MSI (s) (2C:28) [23:35:07:649]: Note: 1: 2262 2: Environment 3: -2147287038
Action start 23:35:07: RemoveEnvironmentStrings.
MSI (s) (2C:28) [23:35:07:649]: Doing action: RemoveDuplicateFiles
Action ended 23:35:07: RemoveEnvironmentStrings. Return value 1.
Action start 23:35:07: RemoveDuplicateFiles.
MSI (s) (2C:28) [23:35:07:660]: Skipping action: InstallExecute (condition is false)
MSI (s) (2C:28) [23:35:07:660]: Doing action: RemoveFiles
Action ended 23:35:07: RemoveDuplicateFiles. Return value 1.
Action start 23:35:07: RemoveFiles.
MSI (s) (2C:28) [23:35:07:660]: Counted 6 foreign folders to be removed.
MSI (s) (2C:28) [23:35:07:660]: Removing child folder of C:\Program Files\Java\jre6\lib\bundles\ (child: C:\Program Files\Java\jre6\lib\bundles\tmp\)
MSI (s) (2C:28) [23:35:07:660]: Removing child folder of C:\Program Files\Java\jre6\lib\bundles\tmp\ (child: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\)
MSI (s) (2C:28) [23:35:07:660]: Removing child folder of C:\Program Files\Java\jre6\lib\bundles\tmp\lib\ (child: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\ext\)
MSI (s) (2C:28) [23:35:07:660]: Removing foreign folder: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\ext\
MSI (s) (2C:28) [23:35:07:660]: Removing child folder of C:\Program Files\Java\jre6\lib\bundles\tmp\lib\ (child: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\i386\)
MSI (s) (2C:28) [23:35:07:660]: Removing foreign folder: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\i386\
MSI (s) (2C:28) [23:35:07:660]: Removing foreign folder: C:\Program Files\Java\jre6\lib\bundles\tmp\lib\
MSI (s) (2C:28) [23:35:07:660]: Removing foreign folder: C:\Program Files\Java\jre6\lib\bundles\tmp\
MSI (s) (2C:28) [23:35:07:660]: Removing foreign folder: C:\Program Files\Java\jre6\lib\bundles\
MSI (s) (2C:28) [23:35:07:660]: Removing foreign folder: C:\Program Files\Java\jre6\bin\kernel\
MSI (s) (2C:28) [23:35:07:660]: Doing action: RemoveFolders
Action ended 23:35:07: RemoveFiles. Return value 1.
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2262 2: LockPermissions 3: -2147287038
Action start 23:35:07: RemoveFolders.
MSI (s) (2C:28) [23:35:07:660]: Doing action: CreateFolders
Action ended 23:35:07: RemoveFolders. Return value 1.
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2262 2: LockPermissions 3: -2147287038
Action start 23:35:07: CreateFolders.
MSI (s) (2C:28) [23:35:07:660]: Doing action: MoveFiles
Action ended 23:35:07: CreateFolders. Return value 1.
Action start 23:35:07: MoveFiles.
MSI (s) (2C:28) [23:35:07:660]: Doing action: InstallFiles
Action ended 23:35:07: MoveFiles. Return value 1.
Action start 23:35:07: InstallFiles.
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2262 2: LockPermissions 3: -2147287038
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2235 2: 3: StreamRef_ 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence`
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2205 2: 3: MsiPatchOldAssemblyFile
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2228 2: 3: MsiPatchOldAssemblyFile 4: SELECT `MsiPatchOldAssemblyFile`.`Assembly_` FROM `MsiPatchOldAssemblyFile` WHERE `MsiPatchOldAssemblyFile`.`File_` = ?
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2205 2: 3: MsiSFCBypass
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2228 2: 3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ?
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2205 2: 3: MsiPatchHeaders
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2228 2: 3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ?
MSI (s) (2C:28) [23:35:07:660]: Using well known SID for System
MSI (s) (2C:28) [23:35:07:660]: Finished allocating new user SID
MSI (s) (2C:28) [23:35:07:660]: Note: 1: 2205 2: 3: MsiPatchHeaders
MSI (s) (2C:28) [23:35:07:671]: Doing action: PatchFiles
Action ended 23:35:07: InstallFiles. Return value 1.
Action start 23:35:07: PatchFiles.
MSI (s) (2C:28) [23:35:07:671]: Doing action: DuplicateFiles
Action ended 23:35:07: PatchFiles. Return value 1.
Action start 23:35:07: DuplicateFiles.
MSI (s) (2C:28) [23:35:07:671]: Doing action: BindImage
Action ended 23:35:07: DuplicateFiles. Return value 1.
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: BindImage 3: -2147287038
Action start 23:35:07: BindImage.
MSI (s) (2C:28) [23:35:07:671]: Doing action: CreateShortcuts
Action ended 23:35:07: BindImage. Return value 1.
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2235 2: 3: DisplayResourceDLL 4: SELECT `Shortcut`,`Name`, `FileName`, `Component`.`Directory_`, `Arguments`, `WkDir`, `Icon_`, `IconIndex`, `Hotkey`, `ShowCmd`, `Shortcut`.`Description`, `Shortcut`.`Directory_`, `Component`.`RuntimeFlags`, `Component`.`Action`, `Target`, `ComponentId`, `Feature`.`Action`, `Component`.`Installed`, `DisplayResourceDLL`, `DisplayResourceId`, `DescriptionResourceDLL`, `DescriptionResourceId` From `Shortcut`, `Feature`, `Component`, `File` WHERE `Target` = `Feature` AND `Shortcut`.`Component_` = `Component` AND `Component`.`KeyPath` = `File`.`File` AND ((`Feature`.`Action` = 1 OR `Feature`.`Action` = 2) OR (`Feature`.`Action` = 4 AND `Feature`.`Installed` = 0) OR ((`Feature`.`Action` = NULL OR `Feature`.`Action` = 3 OR `Feature`.`Action` = `Feature`.`Installed`) AND (`Feature`.`Installed` = 1 OR `Feature`.`Installed` = 2 OR `Feature`.`Installed` = 4)) OR (`Feature`.`Action` = NULL AND (`Component`.`Action` = 1 OR `Component`.`Action` = 2) AND (`Feature`.`Installed` = 1 OR `Feature`.`Installed` = 2 OR `Feature
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2205 2: 3: MsiShortcutProperty
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2235 2: 3: DisplayResourceDLL 4: SELECT `Shortcut`,`Name`, `Target`, null, `Arguments`, `WkDir`, `Icon_`, `IconIndex`, `Hotkey`, `ShowCmd`, `Shortcut`.`Description`, `Shortcut`.`Directory_`, `Component`.`RuntimeFlags`, null, null, null, null, null, `DisplayResourceDLL`, `DisplayResourceId`, `DescriptionResourceDLL`, `DescriptionResourceId` From `Shortcut`, `Component` WHERE `Shortcut`.`Component_` = `Component` AND (`Component`.`Action` = 1 OR `Component`.`Action` = 2)
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2205 2: 3: MsiShortcutProperty
Action start 23:35:07: CreateShortcuts.
MSI (s) (2C:28) [23:35:07:671]: Doing action: RegisterClassInfo
Action ended 23:35:07: CreateShortcuts. Return value 1.
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: Class 3: -2147287038
Action start 23:35:07: RegisterClassInfo.
MSI (s) (2C:28) [23:35:07:671]: Doing action: RegisterExtensionInfo
Action ended 23:35:07: RegisterClassInfo. Return value 1.
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: Extension 3: -2147287038
Action start 23:35:07: RegisterExtensionInfo.
MSI (s) (2C:28) [23:35:07:671]: Doing action: RegisterProgIdInfo
Action ended 23:35:07: RegisterExtensionInfo. Return value 1.
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: ProgId 3: -2147287038
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: ProgId 3: -2147287038
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: Extension 3: -2147287038
Action start 23:35:07: RegisterProgIdInfo.
MSI (s) (2C:28) [23:35:07:671]: Doing action: RegisterMIMEInfo
Action ended 23:35:07: RegisterProgIdInfo. Return value 1.
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: MIME 3: -2147287038
MSI (s) (2C:28) [23:35:07:671]: Note: 1: 2262 2: Extension 3: -2147287038
Action start 23:35:07: RegisterMIMEInfo.
MSI (s) (2C:28) [23:35:07:682]: Skipping action: SetIExplorerProperty1 (condition is false)
MSI (s) (2C:28) [23:35:07:682]: Skipping action: SetIMOZILLAProperty1 (condition is false)
MSI (s) (2C:28) [23:35:07:682]: Skipping action: SetIExplorerProperty0 (condition is false)
MSI (s) (2C:28) [23:35:07:682]: Skipping action: SetIMOZILLAProperty0 (condition is false)
MSI (s) (2C:28) [23:35:07:682]: Doing action: WriteRegistryValues
Action ended 23:35:07: RegisterMIMEInfo. Return value 1.
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: LockPermissions 3: -2147287038
Action start 23:35:07: WriteRegistryValues.
MSI (s) (2C:28) [23:35:07:682]: Doing action: WriteIniValues
Action ended 23:35:07: WriteRegistryValues. Return value 1.
Action start 23:35:07: WriteIniValues.
MSI (s) (2C:28) [23:35:07:682]: Doing action: WriteEnvironmentStrings
Action ended 23:35:07: WriteIniValues. Return value 1.
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: Environment 3: -2147287038
Action start 23:35:07: WriteEnvironmentStrings.
MSI (s) (2C:28) [23:35:07:682]: Doing action: InstallODBC
Action ended 23:35:07: WriteEnvironmentStrings. Return value 1.
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2711 2: ODBCDriverManager
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2711 2: ODBCDriverManager64
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCDriver 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCAttribute 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCDriver 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCAttribute 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCTranslator 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCTranslator 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCDataSource 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCSourceAttribute 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCDataSource 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ODBCSourceAttribute 3: -2147287038
Action start 23:35:07: InstallODBC.
MSI (s) (2C:28) [23:35:07:682]: Doing action: RegisterTypeLibraries
Action ended 23:35:07: InstallODBC. Return value 0.
Action start 23:35:07: RegisterTypeLibraries.
MSI (s) (2C:28) [23:35:07:682]: Doing action: RegisterComPlus
Action ended 23:35:07: RegisterTypeLibraries. Return value 1.
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: Complus 3: -2147287038
Action start 23:35:07: RegisterComPlus.
MSI (s) (2C:28) [23:35:07:682]: Doing action: InstallServices
Action ended 23:35:07: RegisterComPlus. Return value 1.
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: LockPermissions 3: -2147287038
MSI (s) (2C:28) [23:35:07:682]: Note: 1: 2262 2: ServiceInstall 3: -2147287038
Action start 23:35:07: InstallServices.
MSI (s) (2C:28) [23:35:07:693]: Doing action: StartServices
Action ended 23:35:07: InstallServices. Return value 1.
Action start 23:35:07: StartServices.
MSI (s) (2C:28) [23:35:07:693]: Doing action: SelfRegModules
Action ended 23:35:07: StartServices. Return value 1.
MSI (s) (2C:28) [23:35:07:693]: Note: 1: 2262 2: SelfReg 3: -2147287038
Action start 23:35:07: SelfRegModules.
MSI (s) (2C:28) [23:35:07:693]: Doing action: RegisterUser
Action ended 23:35:07: SelfRegModules. Return value 1.
Action start 23:35:07: RegisterUser.
MSI (s) (2C:28) [23:35:07:693]: Doing action: RegisterProduct
Action ended 23:35:07: RegisterUser. Return value 1.
Action start 23:35:07: RegisterProduct.
MSI (s) (2C:28) [23:35:07:693]: Resolving source.
MSI (s) (2C:28) [23:35:07:693]: Resolving source to launched-from source.
MSI (s) (2C:28) [23:35:07:693]: Setting launched-from source as last-used.
MSI (s) (2C:28) [23:35:07:693]: SOURCEDIR ==> \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\
MSI (s) (2C:28) [23:35:07:693]: SOURCEDIR product ==> {26A24AE4-039D-4CA4-87B4-2F83216017FF}
MSI (s) (2C:28) [23:35:07:693]: Determining source type
MSI (s) (2C:28) [23:35:07:693]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (2C:28) [23:35:07:693]: Source type from package 'jre1.6.0_17.msi': 0
MSI (s) (2C:28) [23:35:07:693]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (s) (2C:28) [23:35:07:693]: Source path resolution complete. Dumping Directory table...
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: TARGETDIR , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\ , LongSubPath: , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: WindowsFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Windows\ , LongSubPath: Windows\ , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: USERPROFILE , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\UserProfile\ , LongSubPath: UserProfile\ , ShortSubPath: USERPR~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: TemplateFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\ShellNew\ , LongSubPath: ShellNew\ , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: TempFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Temp\ , LongSubPath: Temp\ , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: SystemFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\System32\ , LongSubPath: System32\ , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: System64Folder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\System64\ , LongSubPath: System64\ , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: System16Folder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\System\ , LongSubPath: System\ , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: ProgramFiles64Folder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Program Files 64\ , LongSubPath: Program Files 64\ , ShortSubPath: Prog64~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: LocalAppDataFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\LocalAppData\ , LongSubPath: LocalAppData\ , ShortSubPath: LocalA~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: GlobalAssemblyCache , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\GlobalAssemblyCache\ , LongSubPath: GlobalAssemblyCache\ , ShortSubPath: Global~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: CommonFilesFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Common\ , LongSubPath: Common\ , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: CommonFiles64Folder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Common64\ , LongSubPath: Common64\ , ShortSubPath:
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: CommonAppDataFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\CommonAppData\ , LongSubPath: CommonAppData\ , ShortSubPath: Common~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: AppDataFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Application Data\ , LongSubPath: Application Data\ , ShortSubPath: APPLIC~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: AdminToolsFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\AdminTools\ , LongSubPath: AdminTools\ , ShortSubPath: Admint~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: ALLUSERSPROFILE , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\All Users\ , LongSubPath: All Users\ , ShortSubPath: ALLUSE~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: ProgramFilesFolder , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\ , LongSubPath: program files\ , ShortSubPath: PROGRA~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: JAVA , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\ , LongSubPath: program files\Java\ , ShortSubPath: PROGRA~1\Java\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: INSTALLDIR , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\ , LongSubPath: program files\Java\jre6\ , ShortSubPath: PROGRA~1\Java\jre6\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: bin , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\bin\ , LongSubPath: program files\Java\jre6\bin\ , ShortSubPath: PROGRA~1\Java\jre6\bin\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: new_plugin , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\bin\new_plugin\ , LongSubPath: program files\Java\jre6\bin\new_plugin\ , ShortSubPath: PROGRA~1\Java\jre6\bin\new_pl~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: client , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\bin\client\ , LongSubPath: program files\Java\jre6\bin\client\ , ShortSubPath: PROGRA~1\Java\jre6\bin\client\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: binkernel , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\bin\kernel\ , LongSubPath: program files\Java\jre6\bin\kernel\ , ShortSubPath: PROGRA~1\Java\jre6\bin\kernel\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: lib , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\ , LongSubPath: program files\Java\jre6\lib\ , ShortSubPath: PROGRA~1\Java\jre6\lib\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: servicetag , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\servicetag\ , LongSubPath: program files\Java\jre6\lib\servicetag\ , ShortSubPath: PROGRA~1\Java\jre6\lib\servic~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: security , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\security\ , LongSubPath: program files\Java\jre6\lib\security\ , ShortSubPath: PROGRA~1\Java\jre6\lib\securi~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: management , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\management\ , LongSubPath: program files\Java\jre6\lib\management\ , ShortSubPath: PROGRA~1\Java\jre6\lib\manage~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: im , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\im\ , LongSubPath: program files\Java\jre6\lib\im\ , ShortSubPath: PROGRA~1\Java\jre6\lib\im\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: i386 , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\i386\ , LongSubPath: program files\Java\jre6\lib\i386\ , ShortSubPath: PROGRA~1\Java\jre6\lib\i386\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: fonts , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\fonts\ , LongSubPath: program files\Java\jre6\lib\fonts\ , ShortSubPath: PROGRA~1\Java\jre6\lib\fonts\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: ext , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\ext\ , LongSubPath: program files\Java\jre6\lib\ext\ , ShortSubPath: PROGRA~1\Java\jre6\lib\ext\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: images , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\images\ , LongSubPath: program files\Java\jre6\lib\images\ , ShortSubPath: PROGRA~1\Java\jre6\lib\images\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: cursors , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\images\cursors\ , LongSubPath: program files\Java\jre6\lib\images\cursors\ , ShortSubPath: PROGRA~1\Java\jre6\lib\images\cursors\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: cmm , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\cmm\ , LongSubPath: program files\Java\jre6\lib\cmm\ , ShortSubPath: PROGRA~1\Java\jre6\lib\cmm\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: bundles , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\bundles\ , LongSubPath: program files\Java\jre6\lib\bundles\ , ShortSubPath: PROGRA~1\Java\jre6\lib\bundles\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: tmp , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\bundles\tmp\ , LongSubPath: program files\Java\jre6\lib\bundles\tmp\ , ShortSubPath: PROGRA~1\Java\jre6\lib\bundles\tmp\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: tmplib , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\bundles\tmp\lib\ , LongSubPath: program files\Java\jre6\lib\bundles\tmp\lib\ , ShortSubPath: PROGRA~1\Java\jre6\lib\bundles\tmp\lib\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: tmplibi386 , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\bundles\tmp\lib\i386\ , LongSubPath: program files\Java\jre6\lib\bundles\tmp\lib\i386\ , ShortSubPath: PROGRA~1\Java\jre6\lib\bundles\tmp\lib\i386\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: tmplibext , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\bundles\tmp\lib\ext\ , LongSubPath: program files\Java\jre6\lib\bundles\tmp\lib\ext\ , ShortSubPath: PROGRA~1\Java\jre6\lib\bundles\tmp\lib\ext\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: audio , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\audio\ , LongSubPath: program files\Java\jre6\lib\audio\ , ShortSubPath: PROGRA~1\Java\jre6\lib\audio\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: applet , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\applet\ , LongSubPath: program files\Java\jre6\lib\applet\ , ShortSubPath: PROGRA~1\Java\jre6\lib\applet\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: zi , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\ , LongSubPath: program files\Java\jre6\lib\zi\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: SystemV , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\SystemV\ , LongSubPath: program files\Java\jre6\lib\zi\SystemV\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\SystemV\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Pacific , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Pacific\ , LongSubPath: program files\Java\jre6\lib\zi\Pacific\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Pacific\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Indian , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Indian\ , LongSubPath: program files\Java\jre6\lib\zi\Indian\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Indian\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Europe , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Europe\ , LongSubPath: program files\Java\jre6\lib\zi\Europe\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Europe\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Etc , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Etc\ , LongSubPath: program files\Java\jre6\lib\zi\Etc\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Etc\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Australia , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Australia\ , LongSubPath: program files\Java\jre6\lib\zi\Australia\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Austra~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Atlantic , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Atlantic\ , LongSubPath: program files\Java\jre6\lib\zi\Atlantic\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Atlant~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Asia , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Asia\ , LongSubPath: program files\Java\jre6\lib\zi\Asia\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Asia\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Antarctica , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Antarctica\ , LongSubPath: program files\Java\jre6\lib\zi\Antarctica\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Antarc~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: America , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\America\ , LongSubPath: program files\Java\jre6\lib\zi\America\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\America\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: North_Dakota , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\America\North_Dakota\ , LongSubPath: program files\Java\jre6\lib\zi\America\North_Dakota\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\America\North_~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Kentucky , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\America\Kentucky\ , LongSubPath: program files\Java\jre6\lib\zi\America\Kentucky\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\America\Kentuc~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Indiana , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\America\Indiana\ , LongSubPath: program files\Java\jre6\lib\zi\America\Indiana\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\America\Indiana\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Argentina , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\America\Argentina\ , LongSubPath: program files\Java\jre6\lib\zi\America\Argentina\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\America\Argent~1\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: Africa , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\zi\Africa\ , LongSubPath: program files\Java\jre6\lib\zi\Africa\ , ShortSubPath: PROGRA~1\Java\jre6\lib\zi\Africa\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: deploy , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\deploy\ , LongSubPath: program files\Java\jre6\lib\deploy\ , ShortSubPath: PROGRA~1\Java\jre6\lib\deploy\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: jqs , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\deploy\jqs\ , LongSubPath: program files\Java\jre6\lib\deploy\jqs\ , ShortSubPath: PROGRA~1\Java\jre6\lib\deploy\jqs\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: ie , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\deploy\jqs\ie\ , LongSubPath: program files\Java\jre6\lib\deploy\jqs\ie\ , ShortSubPath: PROGRA~1\Java\jre6\lib\deploy\jqs\ie\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: ff , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\deploy\jqs\ff\ , LongSubPath: program files\Java\jre6\lib\deploy\jqs\ff\ , ShortSubPath: PROGRA~1\Java\jre6\lib\deploy\jqs\ff\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: chrome , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\deploy\jqs\ff\chrome\ , LongSubPath: program files\Java\jre6\lib\deploy\jqs\ff\chrome\ , ShortSubPath: PROGRA~1\Java\jre6\lib\deploy\jqs\ff\chrome\
MSI (s) (2C:28) [23:35:07:693]: Dir (source): Key: content , Object: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\program files\Java\jre6\lib\deploy\jqs\ff\chrome\content\ , LongSubPath: program files\Java\jre6\lib\deploy\jqs\ff\chrome\content\ , ShortSubPath: PROGRA~1\Java\jre6\lib\deploy\jqs\ff\chrome\content\
MSI (s) (2C:28) [23:35:07:693]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
MSI (s) (2C:28) [23:35:07:693]: Doing action: PublishComponents
Action ended 23:35:07: RegisterProduct. Return value 1.
MSI (s) (2C:28) [23:35:07:693]: Note: 1: 2262 2: PublishComponent 3: -2147287038
Action start 23:35:07: PublishComponents.
MSI (s) (2C:28) [23:35:07:693]: Doing action: MsiPublishAssemblies
Action ended 23:35:07: PublishComponents. Return value 1.
Action start 23:35:07: MsiPublishAssemblies.
MSI (s) (2C:28) [23:35:07:704]: Doing action: PublishFeatures
Action ended 23:35:07: MsiPublishAssemblies. Return value 1.
Action start 23:35:07: PublishFeatures.
MSI (s) (2C:28) [23:35:07:704]: Doing action: PublishProduct
Action ended 23:35:07: PublishFeatures. Return value 1.
Action start 23:35:07: PublishProduct.
MSI (s) (2C:28) [23:35:07:704]: Recaching secure transform: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst
MSI (s) (2C:28) [23:35:07:704]: Doing action: unzipcore
Action ended 23:35:07: PublishProduct. Return value 1.
MSI (s) (2C:28) [23:35:07:704]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'unzipcore'
Action start 23:35:07: unzipcore.
MSI (s) (2C:28) [23:35:07:704]: Doing action: DuplicateUnzippedFiles
Action ended 23:35:07: unzipcore. Return value 1.
MSI (s) (2C:28) [23:35:07:704]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'DuplicateUnzippedFiles'
Action start 23:35:07: DuplicateUnzippedFiles.
MSI (s) (2C:28) [23:35:07:704]: Doing action: preprogress1
Action ended 23:35:07: DuplicateUnzippedFiles. Return value 1.
MSI (s) (2C:28) [23:35:07:704]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'preprogress1'
MSI (s) (2C:18) [23:35:07:715]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIDD54.tmp, Entrypoint: CAProgress
Action start 23:35:07: preprogress1.
MSI (s) (2C:28) [23:35:07:715]: Doing action: postprogress1
Action ended 23:35:07: preprogress1. Return value 1.
MSI (s) (2C:28) [23:35:07:715]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'postprogress1'
Action start 23:35:07: postprogress1.
MSI (s) (2C:28) [23:35:07:715]: Doing action: rt
Action ended 23:35:07: postprogress1. Return value 1.
MSI (s) (2C:28) [23:35:07:715]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'rt'
Action start 23:35:07: rt.
MSI (s) (2C:28) [23:35:07:726]: Doing action: preprogress4
Action ended 23:35:07: rt. Return value 1.
MSI (s) (2C:28) [23:35:07:726]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'preprogress4'
MSI (s) (2C:D4) [23:35:07:726]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIDD75.tmp, Entrypoint: CAProgress
Action start 23:35:07: preprogress4.
MSI (s) (2C:28) [23:35:07:726]: Doing action: postprogress4
Action ended 23:35:07: preprogress4. Return value 1.
MSI (s) (2C:28) [23:35:07:726]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'postprogress4'
Action start 23:35:07: postprogress4.
MSI (s) (2C:28) [23:35:07:726]: Doing action: jsse
Action ended 23:35:07: postprogress4. Return value 1.
MSI (s) (2C:28) [23:35:07:737]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'jsse'
Action start 23:35:07: jsse.
MSI (s) (2C:28) [23:35:07:737]: Doing action: preprogress5
Action ended 23:35:07: jsse. Return value 1.
MSI (s) (2C:28) [23:35:07:737]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'preprogress5'
MSI (s) (2C:EC) [23:35:07:737]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIDD85.tmp, Entrypoint: CAProgress
Action start 23:35:07: preprogress5.
MSI (s) (2C:28) [23:35:07:737]: Doing action: postprogress5
Action ended 23:35:07: preprogress5. Return value 1.
MSI (s) (2C:28) [23:35:07:737]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'postprogress5'
Action start 23:35:07: postprogress5.
MSI (s) (2C:28) [23:35:07:748]: Doing action: jaws
Action ended 23:35:07: postprogress5. Return value 1.
MSI (s) (2C:28) [23:35:07:748]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'jaws'
Action start 23:35:07: jaws.
MSI (s) (2C:28) [23:35:07:748]: Doing action: preprogress6
Action ended 23:35:07: jaws. Return value 1.
MSI (s) (2C:28) [23:35:07:748]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'preprogress6'
MSI (s) (2C:44) [23:35:07:748]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIDD96.tmp, Entrypoint: CAProgress
Action start 23:35:07: preprogress6.
MSI (s) (2C:28) [23:35:07:759]: Doing action: postprogress6
Action ended 23:35:07: preprogress6. Return value 1.
MSI (s) (2C:28) [23:35:07:759]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'postprogress6'
Action start 23:35:07: postprogress6.
MSI (s) (2C:28) [23:35:07:759]: Doing action: javaws
Action ended 23:35:07: postprogress6. Return value 1.
MSI (s) (2C:28) [23:35:07:759]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'javaws'
Action start 23:35:07: javaws.
MSI (s) (2C:28) [23:35:07:759]: Doing action: deploy
Action ended 23:35:07: javaws. Return value 1.
MSI (s) (2C:28) [23:35:07:759]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'deploy'
Action start 23:35:07: deploy.
MSI (s) (2C:28) [23:35:07:759]: Doing action: preprogress7
Action ended 23:35:07: deploy. Return value 1.
MSI (s) (2C:28) [23:35:07:759]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'preprogress7'
MSI (s) (2C:34) [23:35:07:759]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIDDA7.tmp, Entrypoint: CAProgress
Action start 23:35:07: preprogress7.
MSI (s) (2C:28) [23:35:07:770]: Doing action: postprogress7
Action ended 23:35:07: preprogress7. Return value 1.
MSI (s) (2C:28) [23:35:07:770]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'postprogress7'
Action start 23:35:07: postprogress7.
MSI (s) (2C:28) [23:35:07:770]: Doing action: charsets
Action ended 23:35:07: postprogress7. Return value 1.
MSI (s) (2C:28) [23:35:07:770]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'charsets'
Action start 23:35:07: charsets.
MSI (s) (2C:28) [23:35:07:770]: Doing action: preprogress9
Action ended 23:35:07: charsets. Return value 1.
MSI (s) (2C:28) [23:35:07:770]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'preprogress9'
MSI (s) (2C:B8) [23:35:07:770]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIDDB7.tmp, Entrypoint: CAProgress
Action start 23:35:07: preprogress9.
MSI (s) (2C:28) [23:35:07:781]: Doing action: postprogress9
Action ended 23:35:07: preprogress9. Return value 1.
MSI (s) (2C:28) [23:35:07:781]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'postprogress9'
Action start 23:35:07: postprogress9.
MSI (s) (2C:28) [23:35:07:781]: Doing action: localedata
Action ended 23:35:07: postprogress9. Return value 1.
MSI (s) (2C:28) [23:35:07:781]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'localedata'
Action start 23:35:07: localedata.
MSI (s) (2C:28) [23:35:07:781]: Doing action: preprogress10
Action ended 23:35:07: localedata. Return value 1.
MSI (s) (2C:28) [23:35:07:781]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'preprogress10'
MSI (s) (2C:BC) [23:35:07:792]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIDDC8.tmp, Entrypoint: CAProgress
Action start 23:35:07: preprogress10.
MSI (s) (2C:28) [23:35:07:792]: Doing action: postprogress10
Action ended 23:35:07: preprogress10. Return value 1.
MSI (s) (2C:28) [23:35:07:792]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'postprogress10'
Action start 23:35:07: postprogress10.
MSI (s) (2C:28) [23:35:07:792]: Skipping action: UninstallJQS (condition is false)
MSI (s) (2C:28) [23:35:07:792]: Skipping action: patchjre (condition is false)
MSI (s) (2C:28) [23:35:07:792]: Doing action: preprogress12
Action ended 23:35:07: postprogress10. Return value 1.
MSI (s) (2C:28) [23:35:07:792]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'preprogress12'
MSI (s) (2C:B0) [23:35:07:803]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIDDD8.tmp, Entrypoint: CAProgress
Action start 23:35:07: preprogress12.
MSI (s) (2C:28) [23:35:07:803]: Doing action: postprogress12
Action ended 23:35:07: preprogress12. Return value 1.
MSI (s) (2C:28) [23:35:07:803]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'postprogress12'
Action start 23:35:07: postprogress12.
MSI (s) (2C:28) [23:35:07:803]: Doing action: InstallJava
Action ended 23:35:07: postprogress12. Return value 1.
MSI (s) (2C:28) [23:35:07:803]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'InstallJava'
Action start 23:35:07: InstallJava.
MSI (s) (2C:28) [23:35:07:803]: Doing action: sharedclassdata
Action ended 23:35:07: InstallJava. Return value 1.
MSI (s) (2C:28) [23:35:07:803]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'sharedclassdata'
Action start 23:35:07: sharedclassdata.
MSI (s) (2C:28) [23:35:07:814]: Doing action: servicetagNoRegister
Action ended 23:35:07: sharedclassdata. Return value 1.
MSI (s) (2C:28) [23:35:07:814]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'servicetagNoRegister'
Action start 23:35:07: servicetagNoRegister.
MSI (s) (2C:28) [23:35:07:814]: Doing action: InstallFinalize
Action ended 23:35:07: servicetagNoRegister. Return value 1.
Action start 23:35:07: InstallFinalize.
MSI (s) (2C:28) [23:35:07:814]: Running Script: C:\Windows\Installer\MSIDCE6.tmp
MSI (s) (2C:28) [23:35:07:814]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
MSI (s) (2C:28) [23:35:07:814]: Machine policy value 'DisableRollback' is 0
MSI (s) (2C:28) [23:35:07:814]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (2C:28) [23:35:07:814]: Executing op: Header(Signature=1397708873,Version=500,Timestamp=998685796,LangId=0,Platform=0,ScriptType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)
MSI (s) (2C:28) [23:35:07:814]: Executing op: ProductInfo(ProductKey={26A24AE4-039D-4CA4-87B4-2F83216017FF},ProductName=Java(TM) 6 Update 17,PackageName=jre1.6.0_17.msi,Language=0,Version=100663466,Assignment=1,ObsoleteArg=0,,,PackageCode={8C68C66E-7600-41BF-8B69-F3931F962AE3},,,InstanceType=0,LUASetting=0,RemoteURTInstalls=0,ProductDeploymentFlags=1)
MSI (s) (2C:28) [23:35:07:814]: Executing op: DialogInfo(Type=0,Argument=0)
MSI (s) (2C:28) [23:35:07:814]: Executing op: DialogInfo(Type=1,Argument=Java(TM) 6 Update 17)
MSI (s) (2C:28) [23:35:07:814]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
MSI (s) (2C:28) [23:35:07:814]: Executing op: SetBaseline(Baseline=0,)
MSI (s) (2C:28) [23:35:07:814]: Executing op: SetBaseline(Baseline=1,)
MSI (s) (2C:28) [23:35:07:814]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,)
MSI (s) (2C:28) [23:35:07:814]: Executing op: ProgressTotal(Total=4,Type=1,ByteEquivalent=24000)
MSI (s) (2C:28) [23:35:07:814]: Executing op: ComponentRegister(ComponentId={994E7530-5AD1-41FF-9F16-B5332160F170},KeyPath=C:\Program Files\Java\jre6\zipper.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
MSI (s) (2C:28) [23:35:07:814]: Executing op: ComponentRegister(ComponentId={994E7530-5AD1-41FF-9F16-B5432160F170},KeyPath=C:\Program Files\Java\jre6\bin\regutils.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ComponentRegister(ComponentId={994E7530-5AD1-41FF-9F16-B5532160F170},KeyPath=C:\Program Files\Java\jre6\patchjre.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ComponentRegister(ComponentId={994E7530-5AD1-41FF-9F16-B5632160F170},KeyPath=02:\Software\JavaSoft\Java Runtime Environment\Java6FamilyVersion,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ActionStart(Name=StopServices,Description=Stopping services,Template=Service: [1])
MSI (s) (2C:28) [23:35:07:825]: Executing op: ProgressTotal(Total=1,Type=1,ByteEquivalent=1300000)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ServiceControl(,Name=JavaQuickStarterService,Action=2,,)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ActionStart(Name=RemoveODBC,Description=Removing ODBC components,)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ODBCDriverManager(,BinaryType=0)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ODBCDriverManager(,BinaryType=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ActionStart(Name=RemoveFiles,Description=Removing files,Template=File: [1], Directory: [9])
MSI (s) (2C:28) [23:35:07:825]: Executing op: ProgressTotal(Total=6,Type=1,ByteEquivalent=175000)
MSI (s) (2C:28) [23:35:07:825]: Executing op: FolderRemove(Folder=C:\Program Files\Java\jre6\lib\bundles\tmp\lib\ext\,Foreign=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: FolderRemove(Folder=C:\Program Files\Java\jre6\lib\bundles\tmp\lib\i386\,Foreign=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: FolderRemove(Folder=C:\Program Files\Java\jre6\lib\bundles\tmp\lib\,Foreign=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: FolderRemove(Folder=C:\Program Files\Java\jre6\lib\bundles\tmp\,Foreign=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: FolderRemove(Folder=C:\Program Files\Java\jre6\lib\bundles\,Foreign=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: FolderRemove(Folder=C:\Program Files\Java\jre6\bin\kernel\,Foreign=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ActionStart(Name=InstallFiles,Description=Copying new files,Template=File: [1], Directory: [9], Size: [6])
MSI (s) (2C:28) [23:35:07:825]: Executing op: ProgressTotal(Total=36116313,Type=0,ByteEquivalent=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: SetTargetFolder(Folder=C:\Program Files\Java\jre6\)
MSI (s) (2C:28) [23:35:07:825]: Executing op: SetSourceFolder(Folder=1\PROGRA~1\Java\jre6\|program files\Java\jre6\)
MSI (s) (2C:28) [23:35:07:825]: Executing op: ChangeMedia(MediaVolumeLabel=DISK1,MediaPrompt=Please insert the disk: 1,MediaCabinet=1\Data1.cab,BytesPerTick=65536,CopierType=1,,,SignatureRequired=1,SignatureCert=BinaryData,,IsFirstPhysicalMedia=1)
MSI (s) (2C:28) [23:35:07:825]: Executing op: FileCopy(SourceName=zipper.exe,SourceCabKey=zipper.exe,DestName=zipper.exe,Attributes=16384,FileSize=65536,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=58982400,HashOptions=0,HashPart1=-1900943927,HashPart2=233907882,HashPart3=-1059121174,HashPart4=588152007,,)
MSI (s) (2C:28) [23:35:07:825]: File: C:\Program Files\Java\jre6\zipper.exe; To be installed; Won't patch; No existing file
MSI (s) (2C:28) [23:35:07:825]: Source for file 'zipper.exe' is compressed
MSI (s) (2C:A0) [23:35:07:836]: Validating digital signature of file '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Data1.cab'
MSI (s) (2C:A0) [23:35:30:113]: Skipping file hash comparison as no hash was provided for the comparison for file '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Data1.cab'.
MSI (s) (2C:A0) [23:35:30:113]: File '\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\Data1.cab' is a validly signed file and validates according to authoring of MSI package
MSI (s) (2C:28) [23:35:30:113]: Executing op: FileCopy(SourceName=core.zip,SourceCabKey=core.zip,DestName=core.zip,Attributes=16384,FileSize=35784537,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=58982400,HashOptions=0,HashPart1=550443947,HashPart2=2011648467,HashPart3=-1309804822,HashPart4=-1548680264,,)
MSI (s) (2C:28) [23:35:30:124]: File: C:\Program Files\Java\jre6\core.zip; To be installed; Won't patch; No existing file
MSI (s) (2C:28) [23:35:30:124]: Source for file 'core.zip' is compressed
MSI (s) (2C:28) [23:35:30:817]: Executing op: SetTargetFolder(Folder=C:\Program Files\Java\jre6\bin\)
MSI (s) (2C:28) [23:35:30:817]: Executing op: SetSourceFolder(Folder=1\PROGRA~1\Java\jre6\bin\|program files\Java\jre6\bin\)
MSI (s) (2C:28) [23:35:30:817]: Executing op: FileCopy(SourceName=regutils.dll,SourceCabKey=regutils.dll,DestName=regutils.dll,Attributes=16384,FileSize=266240,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,Version=6.0.170.4,Language=0,InstallMode=58982400,,,,,,,)
MSI (s) (2C:28) [23:35:30:817]: File: C:\Program Files\Java\jre6\bin\regutils.dll; To be installed; Won't patch; No existing file
MSI (s) (2C:28) [23:35:30:817]: Source for file 'regutils.dll' is compressed
MSI (s) (2C:28) [23:35:30:817]: Executing op: SetTargetFolder(Folder=C:\Program Files\Java\jre6\)
MSI (s) (2C:28) [23:35:30:817]: Executing op: SetSourceFolder(Folder=1\PROGRA~1\Java\jre6\|program files\Java\jre6\)
MSI (s) (2C:28) [23:35:30:817]: Executing op: FileCopy(SourceName=patchjre.exe,SourceCabKey=patchjre.exe,DestName=patchjre.exe,Attributes=16384,FileSize=0,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=58982400,HashOptions=0,HashPart1=0,HashPart2=0,HashPart3=0,HashPart4=0,,)
MSI (s) (2C:28) [23:35:30:828]: File: C:\Program Files\Java\jre6\patchjre.exe; To be installed; Won't patch; No existing file
MSI (s) (2C:28) [23:35:30:828]: Source for file 'patchjre.exe' is compressed
MSI (s) (2C:28) [23:35:30:828]: Executing op: CacheSizeFlush(,)
MSI (s) (2C:28) [23:35:30:828]: Executing op: ActionStart(Name=WriteRegistryValues,Description=Writing system registry values,Template=Key: [1], Name: [2], Value: [3])
MSI (s) (2C:28) [23:35:30:828]: Executing op: ProgressTotal(Total=19,Type=1,ByteEquivalent=13200)
MSI (s) (2C:28) [23:35:30:828]: Executing op: RegOpenKey(Root=-2147483646,Key=Software\JavaSoft\Java Runtime Environment,,BinaryType=0,,)
MSI (s) (2C:28) [23:35:30:828]: Executing op: RegAddValue(Name=Java6FamilyVersion,Value=1.6.0_17,)
MSI (s) (2C:28) [23:35:30:839]: Executing op: RegOpenKey(Root=-2147483646,Key=Software\JavaSoft\Java Runtime Environment\1.6.0_17,,BinaryType=0,,)
MSI (s) (2C:28) [23:35:30:839]: Executing op: RegOpenKey(Root=-2147483646,Key=Software\JavaSoft\Java Runtime Environment\1.6.0_17\MSI,,BinaryType=0,,)
MSI (s) (2C:28) [23:35:30:839]: Executing op: RegAddValue(Name=JU,Value=0,)
MSI (s) (2C:28) [23:35:30:839]: Executing op: RegAddValue(Name=OEMUPDATE,,)
MSI (s) (2C:28) [23:35:30:839]: Executing op: RegAddValue(Name=MODE,Value=C,)
MSI (s) (2C:28) [23:35:30:839]: Executing op: RegAddValue(Name=FROMVERSION,Value=NA,)
MSI (s) (2C:28) [23:35:30:839]: Executing op: RegAddValue(Name=KERNEL,,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=PRODUCTVERSION,Value=6.0.170,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=INSTALLDIR,Value=C:\Program Files\Java\jre6\,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=SYSTRAY,Value=1,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=EULA,Value=0,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=IEXPLORER,Value=1,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=MOZILLA,Value=1,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=JAVAUPDATE,Value=0,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=AUTOUPDATECHECK,Value=0,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=AUTOUPDATEDELAY,,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=ImageCkSum,Value=3407744024,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=FullVersion,Value=1.6.0_17-b04,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegOpenKey(Root=-2147483646,Key=Software\Microsoft\Windows\CurrentVersion\Uninstall\{26A24AE4-039D-4CA4-87B4-2F83216017FF},,BinaryType=0,,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: RegAddValue(Name=DisplayIcon,Value=C:\Program Files\Java\jre6\\bin\javaws.exe,)
MSI (s) (2C:28) [23:35:30:850]: Executing op: ActionStart(Name=RegisterUser,Description=Registering user,Template=[1])
MSI (s) (2C:28) [23:35:30:850]: Executing op: UserRegister(Owner=admin,,ProductId=none)
MSI (s) (2C:28) [23:35:30:861]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1])
MSI (s) (2C:28) [23:35:30:861]: Executing op: ChangeMedia(MediaVolumeLabel=DISK1,MediaPrompt=Please insert the disk: 1,MediaCabinet=1\Data1.cab,BytesPerTick=0,CopierType=1,,,SignatureRequired=1,SignatureCert=BinaryData,,IsFirstPhysicalMedia=1)
MSI (s) (2C:28) [23:35:30:861]: Executing op: DatabaseCopy(DatabasePath=C:\Windows\Installer\1363f.msi,ProductCode={26A24AE4-039D-4CA4-87B4-2F83216017FF},,,)
MSI (s) (2C:28) [23:35:30:861]: File will have security applied from OpCode.
MSI (s) (2C:28) [23:35:30:861]: Executing op: ProductRegister(UpgradeCode={57BDA5C6-443C-4D65-B233-2823932160FF},VersionString=6.0.170,HelpLink=http://java.com,,InstallLocation=C:\Program Files\Java\jre6\,InstallSource=\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\,Publisher=Sun Microsystems, Inc.,URLInfoAbout=http://java.com,URLUpdateInfo=http://java.sun.com,,NoModify=1,NoRepair=1,,,Contact=http://java.com,Readme=C:\Program Files\Java\jre6\README.txt,,,EstimatedSize=100003,,,,)
MSI (s) (2C:28) [23:35:30:883]: Executing op: ProductCPDisplayInfoRegister()
MSI (s) (2C:28) [23:35:30:883]: Executing op: ActionStart(Name=PublishFeatures,Description=Publishing product features,Template=Feature: [1])
MSI (s) (2C:28) [23:35:30:894]: Executing op: FeaturePublish(Feature=both,,Absent=2,)
MSI (s) (2C:28) [23:35:30:894]: Executing op: FeaturePublish(Feature=IESUB,Parent=both,Absent=2,)
MSI (s) (2C:28) [23:35:30:894]: Executing op: FeaturePublish(Feature=MOZILLASUB,Parent=both,Absent=2,)
MSI (s) (2C:28) [23:35:30:894]: Executing op: FeaturePublish(Feature=jrecore,,Absent=2,Component=at1?Y@0}59r!Z]4bCPALat1?Y@0}59'eci9bCPALat1?Y@0}598JluBbCPALat1?Y@0}59L+u&HbCPAL)
MSI (s) (2C:28) [23:35:30:894]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing product information,)
MSI (s) (2C:28) [23:35:30:894]: Executing op: AdvtFlagsUpdate(Flags=388)
MSI (s) (2C:28) [23:35:30:894]: Executing op: CleanupConfigData()
MSI (s) (2C:28) [23:35:30:894]: Executing op: RegisterPatchOrder(Continue=0,SequenceType=1,Remove=0)
MSI (s) (2C:28) [23:35:30:894]: Note: 1: 1402 2: UNKNOWN\Products\4EA42A62D9304AC4784BF238120671FF\Patches 3: 2
MSI (s) (2C:28) [23:35:30:894]: Executing op: SecureTransformCache(Transform=\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst,AtSource=1,Data=BinaryData)
MSI (s) (2C:28) [23:35:30:894]: Note: 1: 1402 2: UNKNOWN\Products\4EA42A62D9304AC4784BF238120671FF\Transforms 3: 2
MSI (s) (2C:28) [23:35:30:905]: Executing op: SourceListRegisterLastUsed(SourceProduct={26A24AE4-039D-4CA4-87B4-2F83216017FF},LastUsedSource=\\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\)
MSI (s) (2C:28) [23:35:30:905]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (2C:28) [23:35:30:905]: Specifed source is already in a list.
MSI (s) (2C:28) [23:35:30:905]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (2C:28) [23:35:30:905]: Adding new sources is allowed.
MSI (s) (2C:28) [23:35:30:905]: Set LastUsedSource to: \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\.
MSI (s) (2C:28) [23:35:30:905]: Set LastUsedType to: n.
MSI (s) (2C:28) [23:35:30:905]: Set LastUsedIndex to: 1.
MSI (s) (2C:28) [23:35:30:905]: Executing op: ActionStart(Name=unzipcore,Description=Extracting Installer,)
MSI (s) (2C:28) [23:35:30:905]: Executing op: CustomActionSchedule(Action=unzipcore,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIunzipcore,)
MSI (s) (2C:90) [23:35:30:905]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIunzipcore
MSI (s) (2C:28) [23:35:32:016]: Executing op: ActionStart(Name=DuplicateUnzippedFiles,Description=Installing Java Runtime Environment,)
MSI (s) (2C:28) [23:35:32:016]: Executing op: CustomActionSchedule(Action=DuplicateUnzippedFiles,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIDuplicateUnzippedFiles,)
MSI (s) (2C:F0) [23:35:32:016]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIDuplicateUnzippedFiles
MSI (s) (2C:28) [23:35:32:016]: Executing op: ActionStart(Name=postprogress1,,)
MSI (s) (2C:28) [23:35:32:016]: Executing op: CustomActionSchedule(Action=postprogress1,ActionType=3073,Source=BinaryData,Target=CAProgress,)
MSI (s) (2C:3C) [23:35:32:027]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI6443.tmp, Entrypoint: CAProgress
MSI (s) (2C:28) [23:35:32:082]: Executing op: ActionStart(Name=rt,Description=Installing Java Runtime Environment,)
MSI (s) (2C:28) [23:35:32:082]: Executing op: CustomActionSchedule(Action=rt,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIrt,)
MSI (s) (2C:2C) [23:35:32:082]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIrt
MSI (s) (2C:28) [23:35:35:108]: Executing op: ActionStart(Name=postprogress4,,)
MSI (s) (2C:28) [23:35:35:108]: Executing op: CustomActionSchedule(Action=postprogress4,ActionType=3073,Source=BinaryData,Target=CAProgress,)
MSI (s) (2C:48) [23:35:35:119]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI756A.tmp, Entrypoint: CAProgress
MSI (s) (2C:28) [23:35:35:218]: Executing op: ActionStart(Name=jsse,,)
MSI (s) (2C:28) [23:35:35:218]: Executing op: CustomActionSchedule(Action=jsse,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIjsse,)
MSI (s) (2C:44) [23:35:35:218]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIjsse
MSI (s) (2C:28) [23:35:35:251]: Executing op: ActionStart(Name=postprogress5,,)
MSI (s) (2C:28) [23:35:35:251]: Executing op: CustomActionSchedule(Action=postprogress5,ActionType=3073,Source=BinaryData,Target=CAProgress,)
MSI (s) (2C:B8) [23:35:35:262]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI7636.tmp, Entrypoint: CAProgress
MSI (s) (2C:28) [23:35:35:284]: Executing op: ActionStart(Name=jaws,Description=Installing Java Plug-in,)
MSI (s) (2C:28) [23:35:35:284]: Executing op: CustomActionSchedule(Action=jaws,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIjaws,)
MSI (s) (2C:BC) [23:35:35:284]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIjaws
MSI (s) (2C:28) [23:35:35:383]: Executing op: ActionStart(Name=postprogress6,,)
MSI (s) (2C:28) [23:35:35:383]: Executing op: CustomActionSchedule(Action=postprogress6,ActionType=3073,Source=BinaryData,Target=CAProgress,)
MSI (s) (2C:30) [23:35:35:394]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI76F3.tmp, Entrypoint: CAProgress
MSI (s) (2C:28) [23:35:35:449]: Executing op: ActionStart(Name=javaws,Description=Installing Java Web Start,)
MSI (s) (2C:28) [23:35:35:449]: Executing op: CustomActionSchedule(Action=javaws,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIjavaws,)
MSI (s) (2C:90) [23:35:35:449]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIjavaws
MSI (s) (2C:28) [23:35:35:515]: Executing op: ActionStart(Name=deploy,Description=Installing Deployment Environment,)
MSI (s) (2C:28) [23:35:35:515]: Executing op: CustomActionSchedule(Action=deploy,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIdeploy,CustomActionData=C:\Program Files\Java\jre6\lib\deploy\)
MSI (s) (2C:04) [23:35:35:515]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIdeploy
MSI (s) (2C:28) [23:35:35:713]: Executing op: ActionStart(Name=postprogress7,,)
MSI (s) (2C:28) [23:35:35:713]: Executing op: CustomActionSchedule(Action=postprogress7,ActionType=3073,Source=BinaryData,Target=CAProgress,)
MSI (s) (2C:EC) [23:35:35:713]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI78C9.tmp, Entrypoint: CAProgress
MSI (s) (2C:28) [23:35:35:889]: Executing op: ActionStart(Name=charsets,Description=Installing Character Sets,)
MSI (s) (2C:28) [23:35:35:889]: Executing op: CustomActionSchedule(Action=charsets,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIcharsets,)
MSI (s) (2C:9C) [23:35:35:889]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIcharsets
MSI (s) (2C:28) [23:35:36:175]: Executing op: ActionStart(Name=postprogress9,,)
MSI (s) (2C:28) [23:35:36:175]: Executing op: CustomActionSchedule(Action=postprogress9,ActionType=3073,Source=BinaryData,Target=CAProgress,)
MSI (s) (2C:50) [23:35:36:175]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI7B5A.tmp, Entrypoint: CAProgress
MSI (s) (2C:28) [23:35:36:329]: Executing op: ActionStart(Name=localedata,,)
MSI (s) (2C:28) [23:35:36:329]: Executing op: CustomActionSchedule(Action=localedata,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIlocaledata,)
MSI (s) (2C:D0) [23:35:36:329]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIlocaledata
MSI (s) (2C:28) [23:35:36:395]: Executing op: ActionStart(Name=postprogress10,,)
MSI (s) (2C:28) [23:35:36:395]: Executing op: CustomActionSchedule(Action=postprogress10,ActionType=3073,Source=BinaryData,Target=CAProgress,)
MSI (s) (2C:A8) [23:35:36:395]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI7C93.tmp, Entrypoint: CAProgress
MSI (s) (2C:28) [23:35:36:538]: Executing op: ActionStart(Name=postprogress12,,)
MSI (s) (2C:28) [23:35:36:538]: Executing op: CustomActionSchedule(Action=postprogress12,ActionType=3073,Source=BinaryData,Target=CAProgress,)
MSI (s) (2C:60) [23:35:36:549]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI7D60.tmp, Entrypoint: CAProgress
MSI (s) (2C:28) [23:35:36:560]: Executing op: ActionStart(Name=InstallJava,Description=Registering Java Runtime Environment,)
MSI (s) (2C:28) [23:35:36:560]: Executing op: CustomActionSchedule(Action=InstallJava,ActionType=3089,Source=C:\Program Files\Java\jre6\bin\regutils.dll,Target=MSIInstallJRE,)
MSI (s) (2C:BC) [23:35:36:560]: Invoking remote custom action. DLL: C:\Program Files\Java\jre6\bin\regutils.dll, Entrypoint: MSIInstallJRE
MSI (s) (2C:28) [23:35:37:363]: Executing op: ActionStart(Name=sharedclassdata,Description=Installing Class Data Sharing,)
MSI (s) (2C:28) [23:35:37:363]: Executing op: CustomActionSchedule(Action=sharedclassdata,ActionType=3170,Source=C:\Program Files\Java\jre6\bin\,Target="C:\Program Files\Java\jre6\bin\javaw.exe" -Xshare:dump,)
MSI (s) (2C:28) [23:35:38:342]: Executing op: ActionStart(Name=servicetagNoRegister,,)
MSI (s) (2C:28) [23:35:38:342]: Executing op: CustomActionSchedule(Action=servicetagNoRegister,ActionType=1250,Source=C:\Program Files\Java\jre6\bin\,Target="C:\Program Files\Java\jre6\bin\javaw.exe" com.sun.servicetag.Installer -source "Windows JRE installer",)
MSI (s) (2C:28) [23:35:38:342]: Executing op: ActionStart(Name=InstallFinalize,,)
MSI (s) (2C:28) [23:35:38:342]: Executing op: CleanupTempFiles(TempFiles=C:\Windows\Installer\13640.mst)
MSI (s) (2C:28) [23:35:38:342]: Scheduling file 'C:\Windows\Installer\13640.mst' for deletion during post-install cleanup (not post-reboot).
MSI (s) (2C:28) [23:35:38:342]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=64570809)
MSI (s) (2C:28) [23:35:38:386]: User policy value 'DisableRollback' is 0
MSI (s) (2C:28) [23:35:38:386]: Machine policy value 'DisableRollback' is 0
1: servicetagNoRegister 2: 0
MSI (s) (2C:28) [23:35:38:397]: Note: 1: 2318 2:
MSI (s) (2C:28) [23:35:38:397]: No System Restore sequence number for this installation.
MSI (s) (2C:28) [23:35:38:397]: Unlocking Server
MSI (s) (2C:28) [23:35:38:529]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'.
MSI (s) (2C:28) [23:35:38:562]: Doing action: PostInstallComplete
Action ended 23:35:38: InstallFinalize. Return value 1.
MSI (s) (2C:28) [23:35:38:562]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'PostInstallComplete'
MSI (s) (2C:48) [23:35:38:562]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI889D.tmp, Entrypoint: PostInstallComplete
Action start 23:35:38: PostInstallComplete.
MSI (s) (2C:28) [23:35:38:606]: Skipping action: startKernelBackgroundDownloadProcess (condition is false)
MSI (s) (2C:28) [23:35:38:606]: Skipping action: PreloadJavaFX (condition is false)
MSI (s) (2C:28) [23:35:38:606]: Skipping action: LoadVector (condition is false)
Action ended 23:35:38: PostInstallComplete. Return value 1.
Action ended 23:35:38: INSTALL. Return value 1.
Property(S): DiskPrompt = [1]
Property(S): Registration = No
Property(S): UpgradeCode = {57BDA5C6-443C-4D65-B233-2823932160FF}
Property(S): WindowsBuild = 7600
Property(S): VersionNT = 601
Property(S): deploy = C:\Program Files\Java\jre6\lib\deploy\
Property(S): TARGETDIR = C:\
Property(S): ALLUSERSPROFILE = C:\ProgramData\
Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(S): Africa = C:\Program Files\Java\jre6\lib\zi\Africa\
Property(S): zi = C:\Program Files\Java\jre6\lib\zi\
Property(S): America = C:\Program Files\Java\jre6\lib\zi\America\
Property(S): Antarctica = C:\Program Files\Java\jre6\lib\zi\Antarctica\
Property(S): AppDataFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\
Property(S): Argentina = C:\Program Files\Java\jre6\lib\zi\America\Argentina\
Property(S): Asia = C:\Program Files\Java\jre6\lib\zi\Asia\
Property(S): Atlantic = C:\Program Files\Java\jre6\lib\zi\Atlantic\
Property(S): Australia = C:\Program Files\Java\jre6\lib\zi\Australia\
Property(S): CommonAppDataFolder = C:\ProgramData\
Property(S): CommonFiles64Folder = C:\
Property(S): CommonFilesFolder = C:\Program Files\Common Files\
Property(S): Etc = C:\Program Files\Java\jre6\lib\zi\Etc\
Property(S): Europe = C:\Program Files\Java\jre6\lib\zi\Europe\
Property(S): GlobalAssemblyCache = C:\
Property(S): JAVA = C:\Program Files\Java\
Property(S): INSTALLDIR = C:\Program Files\Java\jre6\
Property(S): Indian = C:\Program Files\Java\jre6\lib\zi\Indian\
Property(S): Indiana = C:\Program Files\Java\jre6\lib\zi\America\Indiana\
Property(S): ProgramFilesFolder = C:\Program Files\
Property(S): Kentucky = C:\Program Files\Java\jre6\lib\zi\America\Kentucky\
Property(S): LocalAppDataFolder = C:\Windows\system32\config\systemprofile\AppData\Local\
Property(S): North_Dakota = C:\Program Files\Java\jre6\lib\zi\America\North_Dakota\
Property(S): Pacific = C:\Program Files\Java\jre6\lib\zi\Pacific\
Property(S): ProgramFiles64Folder = C:\
Property(S): System16Folder = C:\Windows\system\
Property(S): System64Folder = C:\
Property(S): SystemFolder = C:\Windows\system32\
Property(S): SystemV = C:\Program Files\Java\jre6\lib\zi\SystemV\
Property(S): SourceDir = \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\
Property(S): TempFolder = C:\Windows\TEMP\
Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
Property(S): USERPROFILE = C:\Users\Default\
Property(S): WindowsFolder = C:\Windows\
Property(S): applet = C:\Program Files\Java\jre6\lib\applet\
Property(S): lib = C:\Program Files\Java\jre6\lib\
Property(S): audio = C:\Program Files\Java\jre6\lib\audio\
Property(S): bin = C:\Program Files\Java\jre6\bin\
Property(S): binkernel = C:\Program Files\Java\jre6\bin\kernel\
Property(S): bundles = C:\Program Files\Java\jre6\lib\bundles\
Property(S): chrome = C:\Program Files\Java\jre6\lib\deploy\jqs\ff\chrome\
Property(S): ff = C:\Program Files\Java\jre6\lib\deploy\jqs\ff\
Property(S): client = C:\Program Files\Java\jre6\bin\client\
Property(S): cmm = C:\Program Files\Java\jre6\lib\cmm\
Property(S): content = C:\Program Files\Java\jre6\lib\deploy\jqs\ff\chrome\content\
Property(S): cursors = C:\Program Files\Java\jre6\lib\images\cursors\
Property(S): images = C:\Program Files\Java\jre6\lib\images\
Property(S): ext = C:\Program Files\Java\jre6\lib\ext\
Property(S): jqs = C:\Program Files\Java\jre6\lib\deploy\jqs\
Property(S): fonts = C:\Program Files\Java\jre6\lib\fonts\
Property(S): i386 = C:\Program Files\Java\jre6\lib\i386\
Property(S): ie = C:\Program Files\Java\jre6\lib\deploy\jqs\ie\
Property(S): im = C:\Program Files\Java\jre6\lib\im\
Property(S): management = C:\Program Files\Java\jre6\lib\management\
Property(S): new_plugin = C:\Program Files\Java\jre6\bin\new_plugin\
Property(S): security = C:\Program Files\Java\jre6\lib\security\
Property(S): servicetag = C:\Program Files\Java\jre6\lib\servicetag\
Property(S): tmp = C:\Program Files\Java\jre6\lib\bundles\tmp\
Property(S): tmplib = C:\Program Files\Java\jre6\lib\bundles\tmp\lib\
Property(S): tmplibext = C:\Program Files\Java\jre6\lib\bundles\tmp\lib\ext\
Property(S): tmplibi386 = C:\Program Files\Java\jre6\lib\bundles\tmp\lib\i386\
Property(S): VersionMsi = 5.00
Property(S): VersionDatabase = 200
Property(S): SourcedirProduct = {26A24AE4-039D-4CA4-87B4-2F83216017FF}
Property(S): SOURCEDIR = \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\
Property(S): PRODUCTLANGUAGE = 0
Property(S): CLIENTPROCESSID = 772
Property(S): CLIENTUILEVEL = 3
Property(S): CURRENTDIRECTORY = C:\Windows\system32
Property(S): TRANSFORMSATSOURCE = 1
Property(S): TRANSFORMSSECURE = 1
Property(S): ProductState = 1
Property(S): TRANSFORMS = @jre1.6.0_17.mst
Property(S): RecacheTransforms = \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.mst
Property(S): ITANIUM = Intel(R) Pentium(R) M processor 1200MHz
Property(S): MSVCRT = C:\Windows\system32\msvcrt.dll
Property(S): _IsMaintenance = Change
Property(S): ALLUSERS = 1
Property(S): ApplicationUsers = AllUsers
Property(S): ARPCONTACT = http://java.com
Property(S): ARPHELPLINK = http://java.com
Property(S): ARPNOREPAIR = 1
Property(S): ARPNOMODIFY = 1
Property(S): ARPREADME = C:\Program Files\Java\jre6\README.txt
Property(S): ARPURLINFOABOUT = http://java.com
Property(S): ARPURLUPDATEINFO = http://java.sun.com
Property(S): AUTOUPDATECHECK = 0
Property(S): MsiLogFileLocation = C:\Windows\TEMP\MSI122ef.LOG
Property(S): CLOSETEXT = Close
Property(S): DefaultUIFont = Tahoma8
Property(S): description = 0
Property(S): DialogCaption = InstallShield for Windows Installer
Property(S): Display_IsBitmapDlg = 1
Property(S): DisplayNameCustom = Custom
Property(S): DisplayNameMinimal = Minimal
Property(S): DisplayNameTypical = Typical
Property(S): DWUSINTERVAL = 30
Property(S): ENDDIALOG = 1
Property(S): ErrorDialog = SetupError
Property(S): EULA = 0
Property(S): FINISHTEXT = Finish
Property(S): FIREFOXOPEN = 0
Property(S): FIREFOXRESTART = 0
Property(S): FullVersion = 1.6.0_17-b04
Property(S): IEOPEN = 0
Property(S): IEXPLORER = 1
Property(S): ImageCkSum = 3407744024
Property(S): InstallChoice = AR
Property(S): INSTALLLEVEL = 100
Property(S): ISSCRIPT_VERSION_MISSING = The InstallScript engine is missing from this machine. If available, please run ISScript.msi, or contact your support personnel for further assistance.
Property(S): ISSCRIPT_VERSION_OLD = The InstallScript engine on this machine is older than the version required to run this setup. If available, please install the latest version of ISScript.msi, or contact your support personnel for further assistance.
Property(S): ISVROOT_PORT_NO = 0
Property(S): JAVATYPE = JRE
Property(S): JAVAUPDATE = 0
Property(S): JDK_VERSION = 1.6.0_17
Property(S): JU = 0
Property(S): LAUNCHBROWSER = True
Property(S): MAJOR = 1
Property(S): Manufacturer = Sun Microsystems, Inc.
Property(S): MICRO = 0
Property(S): MINOR = 6
Property(S): MODE = C
Property(S): PackageCode = {8C68C66E-7600-41BF-8B69-F3931F962AE3}
Property(S): MODIFYREMOVE = remove
Property(S): MOZILLA = 1
Property(S): MSIRESTARTMANAGERCONTROL = Disable
Property(S): NEEDIERESTART = 0
Property(S): ODB = 0
Property(S): OPENJAVAHELP = True
Property(S): PIDTemplate = 12345<###-%%%%%%%>@@@@@
Property(S): ProductCode = {26A24AE4-039D-4CA4-87B4-2F83216017FF}
Property(S): ProductID = none
Property(S): ProductLanguage = 1033
Property(S): ProductName = Java(TM) 6 Update 17
Property(S): ProductVersion = 6.0.170
Property(S): ProgressType0 = install
Property(S): ProgressType1 = Installing
Property(S): ProgressType2 = installed
Property(S): ProgressType3 = installs
Property(S): RebootYesNo = Yes
Property(S): ReinstallModeText = omus
Property(S): SDKSILENT = 0
Property(S): SecureCustomProperties = CONSUMERPRODUCTFOUND;SAMEVERSTATICPRODUCTFOUND
Property(S): SEMICOLON = 0
Property(S): SUCCESS = 0
Property(S): SYSTRAY = 1
Property(S): title = 0
Property(S): UPDATE = 17
Property(S): FROMVERSION = NA
Property(S): IS32BITMSI = 1
Property(S): OTHER = 1
Property(S): ARPINSTALLLOCATION = C:\Program Files\Java\jre6\
Property(S): InstallShieldTempProp = 0
Property(S): ServicePackLevel = 0
Property(S): ServicePackLevelMinor = 0
Property(S): MsiNTProductType = 1
Property(S): WindowsVolume = C:\
Property(S): RemoteAdminTS = 1
Property(S): FavoritesFolder = C:\Windows\system32\config\systemprofile\Favorites\
Property(S): NetHoodFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(S): PersonalFolder = C:\Windows\system32\config\systemprofile\Documents\
Property(S): PrintHoodFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(S): RecentFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent\
Property(S): SendToFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\SendTo\
Property(S): MyPicturesFolder = C:\Windows\system32\config\systemprofile\Pictures\
Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
Property(S): DesktopFolder = C:\Users\Public\Desktop\
Property(S): FontsFolder = C:\Windows\Fonts\
Property(S): GPTSupport = 1
Property(S): OLEAdvtSupport = 1
Property(S): ShellAdvtSupport = 1
Property(S): Intel = 6
Property(S): PhysicalMemory = 1527
Property(S): VirtualMemory = 2752
Property(S): AdminUser = 1
Property(S): MsiTrueAdminUser = 1
Property(S): LogonUser = SYSTEM
Property(S): UserSID = S-1-5-18
Property(S): UserLanguageID = 3079
Property(S): ComputerName = IKARUS
Property(S): SystemLanguageID = 3079
Property(S): ScreenX = 1024
Property(S): ScreenY = 768
Property(S): CaptionHeight = 22
Property(S): BorderTop = 1
Property(S): BorderSide = 1
Property(S): TextHeight = 16
Property(S): TextInternalLeading = 3
Property(S): ColorBits = 32
Property(S): TTCSupport = 1
Property(S): Time = 23:35:38
Property(S): Date = 06.12.2009
Property(S): MsiNetAssemblySupport = 2.0.50727.4927
Property(S): MsiWin32AssemblySupport = 6.1.7600.16385
Property(S): RedirectedDllSupport = 2
Property(S): MsiRunningElevated = 1
Property(S): Privileged = 1
Property(S): USERNAME = admin
Property(S): DATABASE = C:\Windows\Installer\1363f.msi
Property(S): OriginalDatabase = \\zeus\SW-Verteilung$\Java SE Runtime Environment 6u17\x86\jre1.6.0_17.msi
Property(S): UILevel = 2
Property(S): ACTION = INSTALL
Property(S): ROOTDRIVE = C:\
Property(S): CostingComplete = 1
Property(S): OutOfDiskSpace = 0
Property(S): OutOfNoRbDiskSpace = 0
Property(S): PrimaryVolumeSpaceAvailable = 0
Property(S): PrimaryVolumeSpaceRequired = 0
Property(S): PrimaryVolumeSpaceRemaining = 0
Property(S): ProductToBeRegistered = 1
MSI (s) (2C:28) [23:35:38:639]: Attempting to delete file C:\Windows\Installer\13640.mst
MSI (s) (2C:28) [23:35:38:639]: Unable to delete the file. LastError = 32
MSI (s) (2C:28) [23:35:38:639]: Deferring clean up of packages/files, if any exist
MSI (s) (2C:28) [23:35:38:639]: Attempting to delete file C:\Windows\Installer\13640.mst
MSI (s) (2C:28) [23:35:38:639]: MainEngineThread is returning 0
MSI (s) (2C:38) [23:35:38:639]: No System Restore sequence number for this installation.
=== Logging stopped: 06.12.2009 23:35:38 ===
MSI (s) (2C:38) [23:35:38:650]: User policy value 'DisableRollback' is 0
MSI (s) (2C:38) [23:35:38:650]: Machine policy value 'DisableRollback' is 0
MSI (s) (2C:38) [23:35:38:650]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (2C:38) [23:35:38:650]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (2C:38) [23:35:38:650]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (2C:38) [23:35:38:650]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (s) (2C:38) [23:35:38:650]: Post-install cleanup: removing installer file 'C:\Windows\Installer\13640.mst'
MSI (s) (2C:38) [23:35:38:650]: Restoring environment variables
MSI (s) (2C:38) [23:35:38:650]: Destroying RemoteAPI object.
MSI (s) (2C:00) [23:35:38:650]: Custom Action Manager thread ending.
MSI (c) (04:30) [23:35:38:650]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (c) (04:30) [23:35:38:650]: MainEngineThread is returning 0
=== Verbose logging stopped: 06.12.2009 23:35:38 ===
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ