Component label and style

Is it possible to get the component's single lable without having all the labels of the component appearing?
Like, I'm trying to include the label into a text's .text
the code I'm using now is
MoVName.text=MoV.labels;
but it gave me all the labels that were included in that particular component.
and is there anyway I can change the font, bg colour of the components? Thank you.

Ohh i'm trying to do something like a cinema seats, when the seats were click or selected, the movie clip will go to it's frame 2, when click submit, if the movieclip's current frame is on frame 2 then it will go to frame 3. And now when I click to other frame, the submitted info disappears when I go to other frame and come back.
ohh and now I'm facing another problem,(unrelated to the problems above)
var Stud=7;
var Adult;
var Sinior=7;
var Cap=7;
var Chil=6;
Price.text="RM"+(Chld.value*Chil)+(Adt.value*Adult)+(Senior.value*Sinior)+(Handy.value*Cap )+(Stu.value*Stud);
now I'm taking the value from the Numeric Stepper * and the above variable
now the output is RM00000, but I want the output to be normal number like RM0

Similar Messages

  • Unzip of files overwrites component.label and dvd.label. How to fix this?

    Hello,
    In my first attempt to install Oracle EBS 11.5.10.2, I have got stuck in unzip phase. When I try to unzip B24283-01_1of7.zip, it tries to overwrite existing component.label in oraApps directory. This happens with other files such as B24285-01_1of7.zip and B24288-01_1of2.zip also.
    I was able to rename existing component.label, so there was no loss of files. But I don't know whether I should proceed with install.
    Any comments.
    Thanks.
    Rahul

    Very late to reply. But yes there is no problem if you over write those files. Infact if you miss ti extract any file, Install will ask for that CD. Very smart installer.
    :-)

  • How to hide the label and choice component in the frames

    I have two Buttons.
    when i press the button i want disappear the label and Choice list from the panel. when i press Other button i want to appear the label and Choice list in the panel
    plz give the good idea for it.

    one of the ways is to use a CardLayout
    1st card has the label and list, 2nd card is a blank panel
    click the button to show the 1st card, then click again for 2nd card,
    then again for 1st card etc

  • How to add a JPanel with label and border line

    hi,
    I want a Jpanel with label and border line like this.Inside it i need to have components.Is there a resuable component to bring this directly??
    Any solution in this regards.???
    Label-----------------------------------------------------------
    | |
    | |
    | |
    | |
    | |
    |________________________________________ |

    [url http://java.sun.com/docs/books/tutorial/uiswing/misc/border.html]How to Use Borders

  • Problem in selection list associating component labels

    There is a "for" attribute on component labels to associate the label with a specific control. When popping up the list of components to associate a label with I expect the following:
    * A list of components from the current page.
    Instead there is a long list with duplicates and many missing component names and many names from other pages. It would quickly become unusable if all component names were placed in that list box, even if the path to the associated page was displayed and it's not.
    Also, there are "add" and "remove" buttons on that dialog. What purpose do they serve? That is to say, you cannot make up component names that do not exist and removing component names from all but the most gigantic pages does not seem to achieve any result.

    That would work. The current mechanism for associating buddy controls with labels is not practical even if the bugs were fixed. There are plenty of examples of Creator features that are glaring in terms of what they fail to provide but nevertheless it is an impressive first release.

  • Automator: Apply Color Label and Copy to Folder

    I'm trying my hand at Automator, and I need help with one of my workflows (⇪). Basically, it's a service (accessible via right-click) that will apply a color label on an image file, and then copy that image file to a corresponding folder with the same color label. My current version works fine, except for the fact that I had to create seven versions to accommodate all seven colors.
    Is there any way to turn the color into a variable? I want the workflow to prompt me for a color, and then use that choice to run a search for the appropriate folder. I'd rather not hard code the color choice into separate services that all do the same thing.
    Also, the service currently assumes that it will run fast enough before I can deselect the target file. I'm sure it's possible that the folder search could lag out while I select another file, and the service will ultimately copy the newly selected item, rather than the initial target. Is there a way to ensure the service acts on whatever was selected when it was first triggered?
    I don't know AppleScript beyond copying-and-pasting other people's codes, so that limits my automation quite a bit. I don't know how to prompt for a label index choice and then feed the result into a find function. I also don't know how to record the file path of the selected item, and then feed that into the copy function at the end to ensure it doesn't copy the wrong file.

    Typically a list of items is passed to a workflow, so you will usually (depending on what you are doing with the items) need to step through the items in that list. If there is only one destination folder with the target label, you can just search for it, otherwise you will need to specify the destination in some other way.
    The following Service workflow example assumes that there is only one destination folder that has a given label color. It gets the label index of one of the input items and finds a folder with the same index at a specified base location (to limit the search range).
    1) Input items are automatically passed to an application or service, otherwise another action to get FInder Items can be used
    2) *Label Finder Items* (show the action when the workflow runs)
    3) *Run AppleScript* (paste the following script)
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #DAFFB6;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters} -- copy to a labelled folder
    This action is designed to follow a "Label Finder Items" action.  It will get the
    first folder of the base folder that has the same label and copy the input items
    to that folder.
    input: a list of Finder items received from a "Label Finder Items" action
    output: a list of Finder items to be passed on to a following action
    set output to {}
    set skippedItems to {} -- this will be a list of skipped items (errors)
    set baseFolder to (((path to pictures folder) as text) & "Shelley:Mary:") as alias -- a place to start looking for the destination folder
    tell application "Finder"
    set theLabel to label index of (the first item of the input) -- just pick one, they should all be the same
    get folders of (entire contents of baseFolder) whose label index is theLabel -- include subfolders
    -- get folders of  baseFolder whose label index is theLabel -- no subfolders
    if the result is not {} then
    set theDestination to the first item of the result
    else -- no folder
    error number -128 -- cancel
    end if
    end tell
    repeat with anItem in the input -- step through each item in the input
    try
    tell application "Finder" to duplicate anItem to theDestination
    set the end of the output to (the result as alias)
    on error number errorNumber -- name already exists, etc
    set errorNumber to "  (" & (errorNumber as text) & ")"
    -- any additional error handling code here
    set the end of skippedItems to (anItem as text) & errorNumber
    end try
    end repeat
    showSkippedAlert for skippedItems
    return the output -- pass the result(s) to the next action
    end run
    to showSkippedAlert for skippedItems
    show an alert dialog for any items skipped, with the option to cancel the rest of the workflow
    parameters - skippedItems [list]: the items skipped
    returns nothing
    if skippedItems is not {} then
    set {alertText, theCount} to {"Error with AppleScript action", count skippedItems}
    if theCount is greater than 1 then
    set theMessage to (theCount as text) & space & " items were skipped:"
    else
    set theMessage to "1 item was skipped:"
    end if
    set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, return}
    set {skippedItems, AppleScript's text item delimiters} to {skippedItems as text, tempTID}
    if button returned of (display alert alertText message (theMessage & return & skippedItems) alternate button "Cancel" default button "OK") is "Cancel" then error number -128
    end if
    return
    end showSkippedAlert
    </pre>

  • Photoshop CS3 font size of "label" and "description" of printed file

    How do you change and manage the font size of the "label" and "description" ( "file" > "file info" > "description")that you can opt to have printed above and below your photo?
    After typing in the "description" via "file info", you click on "print" and check off the "label" and "description" options.
    I'm using a Dell PC and an Epson CX3810.
    My instructor says that he's not been able to find out how to manage the font option.
    Thanks

    As a messy workaround you could put a simple string indicator ("classic Controls") on every tab over the page labels and change the text style/size etc. to your liking. Trouble is - the bound of the string indicator resizes while increasing the size of the text. As "size to text" doesn't work here maybe you can get the appropriate size from somewhere else. Document Bounds is not it, as I just found out. Possibly you should just use a free label, but I don't know whether their text is settable at runtime and their background can be altered.
    However - I think, you get the idea. Maybe it's worth 30 min testing...
    Attachments:
    changeStringtextSize.vi ‏22 KB

  • Placing label and an image in Accordion header in flex 3

    Hi all,
    I need to display label and image in accordion header.Please let me know the process.
    Thankig You....

    Hi,
    Pls use the same swc which you are having from the link earlier which is having the CanvasButton.
    After that create the application same as the code is below.It is in the Flex 3.0.I am using three images and 3 labels on the header of the accordion.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
            layout="vertical"
            verticalAlign="middle"
            xmlns:code="http://code.google.com/p/flexlib/">
        <mx:Accordion width="500" height="300"
            backgroundColor="0xCCCCCC">
            <mx:headerRenderer>
                <mx:Component>
                            <code:CanvasButton>
                                <mx:HBox verticalAlign="middle"
                                     horizontalGap="5">
                                    <mx:Image source="logo.png"/>
                                    <mx:Label text="Label 1"/>
                                    <mx:Image source="logo1.png"/>
                                    <mx:Label text="Label 2"/>
                                    <mx:Image source="logo2.png"/>
                                    <mx:Label text="Label 3"/>
                                </mx:HBox>   
                            </code:CanvasButton>
                </mx:Component>
            </mx:headerRenderer>
            <mx:VBox label=" Account Dept.">
                <mx:Label text="Container 1" />
            </mx:VBox>
            <mx:VBox label=" Admin Dept.">
                <mx:Label text="Container 2" />
            </mx:VBox>
             <mx:VBox label=" Sales Dept.">
                <mx:Label text="Container 3" />
            </mx:VBox>
        </mx:Accordion>
    </mx:Application>
    With Regards,
    Shardul Singh Bartwal

  • Organising itunes by genres and styles

    Hi
    My iTunes library became through the years a very large database with music.
    I have now more than 3000 albums in my collection
    And a lot of different genres and styles.
    Till now I didn't care about the genre and style.
    I had a complete different way of organising them.
    I'm starting the realise that I should reorganise everything.
    It's gonna be a huge work, I think
    Something that looks pretty poor in iTunes, is the classification by genre and style.
    Doesn't seem very obvious to me in iTunes.
    Cause of the many genres that overlap each other, it looks difficult to organise.
    I have many albums that are a mixture of Jazz, funk, afrobeat, afrofunk, world, ...
    Also a lot of them, go to electronic, dub, reggae, ...
    I had a closer look to discogs.com
    Their way of classification looks pretty good to me.
    I checked a lot of albums on their site, and it looked close to what I wanted.
    But how giving multiple genres and subgenres (styles) to 1 album.
    Except giving them in the same tag the different genres and subgenres
    But then I will have a lot that starts with jazz
    And the result will be a huge list with different genres like
    - jazz / funk
    - jazz / soul
    - jazz / afrobeat
    - jazz / afrofunk
    - jazz / afrobeat / electro
    - jazz / afrobeat / dub
    Also it must be very well ordered, and not having
    - jazz / afrobeat / funk
    - jazz / funk / afrobeat
    it's the same genres, but will be shown as different genres in iTunes
    Anybody any idea.
    Is there also any automatisation possible in this huge upcoming work

    There is only one official genre field.  However, just because a field is called something doesn't mean you have to put that information into that field.  For example I don't use Beats Per Minute but I do have a 3 digit code I use for some tracks that I put into that field and just remember that's what I use BPM for.  I put album label information into the Grouping field. You could put a second genre into that if you so wished.  You still won't be able to list by genre and sub genre though.  You're limited to what is offered.  You can make suggestions to Apple to change iTunes to add more genre fields but this may go again some sort of tagging standard, and frankly I don't see a lot of people here complaining about it so I don't think it will be put high on their list.
    http://www.apple.com/feedback/itunesapp.html
    Oh, I guess if you're a genius at Applescripting you could write a script ot parse the genres and subgenres out of the genre field and create a manually ordered playlist based upon that.

  • Mapviewer problem with oriented label and marker

    I have test oriented label and oriented marker seperately. Both worked well. when I combined these 2 styles into one theme,both label and marker are not oriented. Is this a bug?

    theme:
    <styling_rules>
    <rule column="FLDM">
    <features style="DZZH:V.SYMBOL_DCCZ"> ZJNR IS NULL
    </features>
    </rule>
    <rule>
    <features style="DZZH:C.NULL"> ZJNR IS NOT NULL
    </features>
    <label column="ZJNR" style="DZZH:T.NOTENAME2"> 1 </label>
    </rule>
    </styling_rules>
    styles
    <ROW num="27">
    <NAME>C.NULL</NAME>
    <TYPE>COLOR</TYPE>
    <DESCRIPTION>无色</DESCRIPTION>
    <DEFINITION>&lt;?xml version=&quot;1.0&quot; standalone=&quot;yes&quot;?&gt;
    &lt;svg width=&quot;1in&quot; height=&quot;1in&quot;&gt;
    &lt;desc&gt;&lt;/desc&gt;
    &lt;g class=&quot;color&quot; style=&quot;fill:#ffffff;fill-opacity:0&quot;&gt;
    &lt;rect width=&quot;50&quot; height=&quot;50&quot;/&gt;&lt;/g&gt;
    &lt;/svg&gt;</DEFINITION>
    </ROW>
    <ROW num="71">
    <NAME>M.DAOZHDCCZH</NAME>
    <TYPE>MARKER</TYPE>
    <DESCRIPTION>倒转地层产状</DESCRIPTION>
    <DEFINITION>&lt;?xml version=&quot;1.0&quot; standalone=&quot;yes&quot;?&gt;
    &lt;svg width=&quot;1in&quot; height=&quot;1in&quot;&gt;
    &lt;desc&gt;&lt;/desc&gt;
    &lt;g class=&quot;marker&quot; style=&quot;width:11;height:11&quot;&gt;
    &lt;image x=&quot;0&quot; y=&quot;0&quot; width=&quot;9999&quot; height=&quot;9999&quot; type=&quot;gif&quot; href=&quot;dummy.gif&quot;/&gt;&lt;/g&gt;
    &lt;/svg&gt;</DEFINITION>
    <IMAGE>4749463839610B000B0091FF00FFFFFFC0C0C0000000C0C0C021F90401000003002C000000000B000B004002129C8F39229AED0C5CACDA1973AC191FE86505003B</IMAGE>
    </ROW>
    <ROW num="74">
    <NAME>M.DICCZH</NAME>
    <TYPE>MARKER</TYPE>
    <DESCRIPTION>地层产状</DESCRIPTION>
    <DEFINITION>&lt;?xml version=&quot;1.0&quot; standalone=&quot;yes&quot;?&gt;
    &lt;svg width=&quot;1in&quot; height=&quot;1in&quot;&gt;
    &lt;desc&gt;&lt;/desc&gt;
    &lt;g class=&quot;marker&quot; style=&quot;width:11;height:11&quot;&gt;
    &lt;image x=&quot;0&quot; y=&quot;0&quot; width=&quot;9999&quot; height=&quot;9999&quot; type=&quot;gif&quot; href=&quot;dummy.gif&quot;/&gt;&lt;/g&gt;
    &lt;/svg&gt;</DEFINITION>
    <IMAGE>4749463839610B000B0091FF00FFFFFF000000C0C0C000000021F90401000002002C000000000B000B0040020F948FA91AEB12A29CEDD9555DBE5C14003B</IMAGE>
    </ROW>
    <ROW num="93">
    <NAME>M.LIUCCZH</NAME>
    <TYPE>MARKER</TYPE>
    <DESCRIPTION>流层产状</DESCRIPTION>
    <DEFINITION>&lt;?xml version=&quot;1.0&quot; standalone=&quot;yes&quot;?&gt;
    &lt;svg width=&quot;1in&quot; height=&quot;1in&quot;&gt;
    &lt;desc&gt;&lt;/desc&gt;
    &lt;g class=&quot;marker&quot; style=&quot;width:11;height:11&quot;&gt;
    &lt;image x=&quot;0&quot; y=&quot;0&quot; width=&quot;9999&quot; height=&quot;9999&quot; type=&quot;gif&quot; href=&quot;dummy.gif&quot;/&gt;&lt;/g&gt;
    &lt;/svg&gt;</DEFINITION>
    <IMAGE>4749463839610B000B0091FF00FFFFFFC0C0C0000000C0C0C021F90401000003002C000000000B000B0040020F9C8FA929BDDFA274AF5601A5DDA800003B</IMAGE>
    </ROW>
    <ROW num="168">
    <NAME>V.SYMBOL_DCCZ</NAME>
    <TYPE>ADVANCED</TYPE>
    <DESCRIPTION>地层产状</DESCRIPTION>
    <DEFINITION>&lt;?xml version=&quot;1.0&quot; ?&gt;
    &lt;AdvancedStyle&gt;
    &lt;BucketStyle&gt;
    &lt;Buckets&gt;
    &lt;CollectionBucket seq=&quot;0&quot; label=&quot;地层产状&quot; style=&quot;DZZH:M.DICCZH&quot;&gt;
    9001
    &lt;/CollectionBucket&gt;
    &lt;CollectionBucket seq=&quot;1&quot; label=&quot;倒转地层产状&quot; style=&quot;DZZH:M.DAOZHDCCZH&quot;&gt;
    9002
    &lt;/CollectionBucket&gt;
    &lt;CollectionBucket seq=&quot;2&quot; label=&quot;流层产状&quot; style=&quot;DZZH:M.LIUCCZH&quot;&gt;
    9008
    &lt;/CollectionBucket&gt;
    &lt;/Buckets&gt;
    &lt;/BucketStyle&gt;
    &lt;/AdvancedStyle&gt;
    </DEFINITION>
    <IMAGE></IMAGE>
    </ROW>
    <ROW num="160">
    <NAME>T.NOTENAME2</NAME>
    <TYPE>TEXT</TYPE>
    <DESCRIPTION>NOTE</DESCRIPTION>
    <DEFINITION>&lt;?xml version=&quot;1.0&quot; standalone=&quot;yes&quot;?&gt;
    &lt;svg width=&quot;1in&quot; height=&quot;1in&quot;&gt;
    &lt;desc&gt;&lt;/desc&gt;
    &lt;g class=&quot;text&quot; style=&quot;font-style:plain;font-family:Dialog;font-size:10pt;fill:#000000&quot;&gt;
    Hello World!
    &lt;/g&gt;
    &lt;/svg&gt;</DEFINITION>
    </ROW>

  • Controlling the space between label and Input field in SELECT-OPTION

    Hi ,
    I am using WDR_SELECT_OPTIONS as a used component in order to dynamically generate the Select option in my WD Component.
    Can any one tell me if there is a way to control the spacing between Label and Input field?  This is because rest of the UI elements are in one particular order but for this dynamically generated UI.
    Please help me.
    Thanks,
    Kavitha

    Hi Kavitha,
    The label is required for accessibility reasons. It's not possible to remove it and to use your own label from outside the component to point to it. Labels cannot point to targets across views (and hence acress component) boundaries.
    Best regards,
    Thomas

  • Labels and textfields - easy way to

    I am doing a little form which is a bunch of textfields, I want to label them.
    is there an easy way to do this rather than defining a label then fussing around with gridbags to get the layout right.
    also I do not need to keep the labels and stuff, is there a way to create a tmp panel and a tmp label and then reuse these objects for each textfield? or do I have to just create them all, that seems a little messy.
    Thanks

    I don't know what 1.1 compatibility has to do with it, if it's a swing problem, switch to awt (take away the J)
    String[] labelText = {"Textfield 1: ", "Textfield 2: ", "Textfield 3: "};
    JTextField fields[];
    // constructor
    fields = new JTextField[labelText.length];
    for(int j=0;j<labelText.length;j++)
        JPanel temp = new JPanel();
        temp.setAlignmentX(Component.RIGHT_ALIGNMENT);
        temp.add(new JLabel(labelText[j]));
        fields[j] = new JTextField(10);
        temp.add(fields[j]);
    }Now it doesn't matter what length your labels are, your temp label is right-aligned, and all the textfields will be the same size (10).
    Note: You may have to reverse the order you add label/textfield, not sure since it's right aligned.
    HTH,
    Radish21

  • [svn:fx-trunk] 10889: Add FTETextTests which check that a Label and NumericStepper configured to use FTEText have a textField and textInput , respectively, of type UIFTETextField and MXFTETextInput.

    Revision: 10889
    Author:   [email protected]
    Date:     2009-10-06 09:29:53 -0700 (Tue, 06 Oct 2009)
    Log Message:
    Add FTETextTests which check that a Label and NumericStepper configured to use FTEText have a textField and textInput, respectively, of type UIFTETextField and MXFTETextInput.  The components are configured via style properties rather than by theme which would require another version/compile of the BasicTests.swf.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Alex
    Tests run: basictests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.mxml
    Added Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/FTETextTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/halo/views/FTETextTests.mxml

    I'm also having this problem. I'm using Flash Builder 4.6, AIR 3.4 and I've made a DLL (e.g. ExtensionDll.dll) which needs to call functions in another DLL (e.g. DllUsedByExtensionDll.dll) . I've made sure my ANE is working with the ExtensionDll.dll already, so there are no issues with my actionscript code or my ANE packaging or my DLL compilation. However, once I start calling functions from the other DLL, it starts throwing me Error #3500. Even if I call this function (e.g. abc()) in ExtensionDll.dll, but I never actually use the function from actionscript, and I call another function (e.g. def()) from actionscript, the Error #3500 still appears, so it does not seem to depened on the whether the code is used or not.
    It's similar to this problem.
    http://stackoverflow.com/questions/9823504/how-to-use-external-dll-in-air-native-extension
    Does anyone have a solution or at least a way to debug this?

  • Setting RichInputText's label CSS Style Class

    Hello,
    I'm developing with JDeveloper 11.1.2.1.0 and need to programmatically assign a class style to a RichInputText's label. I see that the RichInputText item has setStyleClass and setInlineStyle methods for setting css class and inline style css but there is only one method setLabelStyle to set the item's label inline style. I need to programmatically assign a class to my item's label, is that possible?
    Thabks
    Roberto

    Roberto,
    I use a style class in a skin like
    .MYLabel af|inputText::label, af|inputText:disabled::label, af|inputText:required::label
      background-color: green;
    }and then set the MYLabel as style class to the inputText
    <af:inputText label="Label 1" id="it1" styleClass="MYLabel"/>Timo

  • Component SMS_Contol_manager and SMS_Notification_server install failed on SCCM2012

    we have try to uninstall client and remove the ccm namespace from wmi, and reisntall MP, no luck
    below log from mpmsi.log.lasterror
    === Verbose logging started: 8/27/2014  20:50:23  Build type: SHIP UNICODE 5.00.9600.00  Calling process: H:\Program Files\Microsoft Configuration Manager\bin\x64\rolesetup.exe ===
    MSI (c) (9C:58) [20:50:23:592]: Resetting cached policy values
    MSI (c) (9C:58) [20:50:23:592]: Machine policy value 'Debug' is 0
    MSI (c) (9C:58) [20:50:23:592]: ******* RunEngine:
               ******* Product: h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (9C:58) [20:50:23:592]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (9C:58) [20:50:23:592]: Grabbed execution mutex.
    MSI (c) (9C:58) [20:50:23:594]: Cloaking enabled.
    MSI (c) (9C:58) [20:50:23:594]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (9C:58) [20:50:23:594]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (24:FC) [20:50:23:598]: Running installation inside multi-package transaction h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi
    MSI (s) (24:FC) [20:50:23:598]: Grabbed execution mutex.
    MSI (s) (24:48) [20:50:23:599]: Resetting cached policy values
    MSI (s) (24:48) [20:50:23:599]: Machine policy value 'Debug' is 0
    MSI (s) (24:48) [20:50:23:599]: ******* RunEngine:
               ******* Product: h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (24:48) [20:50:23:599]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (24:48) [20:50:23:603]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038
    MSI (s) (24:48) [20:50:23:605]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (24:48) [20:50:23:606]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
    MSI (s) (24:48) [20:50:23:607]: File will have security applied from OpCode.
    MSI (s) (24:48) [20:50:23:619]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi' against software restriction policy
    MSI (s) (24:48) [20:50:23:619]: SOFTWARE RESTRICTION POLICY: h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi has a digital signature
    MSI (s) (24:48) [20:50:23:619]: SOFTWARE RESTRICTION POLICY: h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi is permitted to run because the user token authorizes execution (system or service token).
    MSI (s) (24:48) [20:50:23:619]: MSCOREE not loaded loading copy from system32
    MSI (s) (24:48) [20:50:23:621]: End dialog not enabled
    MSI (s) (24:48) [20:50:23:621]: Original package ==> h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi
    MSI (s) (24:48) [20:50:23:621]: Package we're running from ==> C:\Windows\Installer\6257f6f.msi
    MSI (s) (24:48) [20:50:23:624]: APPCOMPAT: Compatibility mode property overrides found.
    MSI (s) (24:48) [20:50:23:624]: APPCOMPAT: looking for appcompat database entry with ProductCode '{6CED3AB0-05AF-4C81-8DBE-A62661C26F40}'.
    MSI (s) (24:48) [20:50:23:624]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (24:48) [20:50:23:626]: Machine policy value 'TransformsSecure' is 1
    MSI (s) (24:48) [20:50:23:627]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
    MSI (s) (24:48) [20:50:23:627]: Machine policy value 'DisablePatch' is 0
    MSI (s) (24:48) [20:50:23:627]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (24:48) [20:50:23:627]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (24:48) [20:50:23:627]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (24:48) [20:50:23:627]: APPCOMPAT: looking for appcompat database entry with ProductCode '{6CED3AB0-05AF-4C81-8DBE-A62661C26F40}'.
    MSI (s) (24:48) [20:50:23:627]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (24:48) [20:50:23:627]: Transforms are not secure.
    MSI (s) (24:48) [20:50:23:628]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'h:\Program Files\Microsoft Configuration Manager\logs\mpMSI.log'.
    MSI (s) (24:48) [20:50:23:628]: Command Line: CCMINSTALLDIR=h:\Program Files\SMS_CCM CCMSERVERDATAROOT=h:\Program Files\Microsoft Configuration Manager USESMSPORTS=TRUE SMSPORTS=80 USESMSSSLPORTS=TRUE SMSSSLPORTS=443 USESMSSSL=TRUE SMSSSLSTATE=0 CCMENABLELOGGING=TRUE
    CCMLOGLEVEL=1 CCMLOGMAXSIZE=1000000 CCMLOGMAXHISTORY=1 CURRENTDIRECTORY=H:\Program Files\Microsoft Configuration Manager\bin\x64 CLIENTUILEVEL=3 MSICLIENTUSESEXTERNALUI=1 CLIENTPROCESSID=6556
    MSI (s) (24:48) [20:50:23:628]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (24:48) [20:50:23:628]: Product Code from property table before transforms: '{6CED3AB0-05AF-4C81-8DBE-A62661C26F40}'
    MSI (s) (24:48) [20:50:23:628]: Product Code from property table after transforms:  '{6CED3AB0-05AF-4C81-8DBE-A62661C26F40}'
    MSI (s) (24:48) [20:50:23:628]: Product not registered: beginning first-time install
    MSI (s) (24:48) [20:50:23:630]: Machine policy value 'DisableMsi' is 1
    MSI (s) (24:48) [20:50:23:630]: Product {6CED3AB0-05AF-4C81-8DBE-A62661C26F40} is not managed.
    MSI (s) (24:48) [20:50:23:630]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (24:48) [20:50:23:630]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (24:48) [20:50:23:630]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (24:48) [20:50:23:630]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (24:48) [20:50:23:630]: Adding new sources is allowed.
    MSI (s) (24:48) [20:50:23:630]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (24:48) [20:50:23:630]: Package name extracted from package path: 'mp.msi'
    MSI (s) (24:48) [20:50:23:630]: Package to be registered: 'mp.msi'
    MSI (s) (24:48) [20:50:23:631]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (24:48) [20:50:23:631]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (24:48) [20:50:23:631]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (24:48) [20:50:23:631]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (24:48) [20:50:23:631]: Running product '{6CED3AB0-05AF-4C81-8DBE-A62661C26F40}' with elevated privileges: Product is assigned.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CCMINSTALLDIR property. Its value is 'h:\Program Files\SMS_CCM'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CCMSERVERDATAROOT property. Its value is 'h:\Program Files\Microsoft Configuration Manager'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding USESMSPORTS property. Its value is 'TRUE'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding SMSPORTS property. Its value is '80'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding USESMSSSLPORTS property. Its value is 'TRUE'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding SMSSSLPORTS property. Its value is '443'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding USESMSSSL property. Its value is 'TRUE'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding SMSSSLSTATE property. Its value is '0'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CCMENABLELOGGING property. Its value is 'TRUE'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CCMLOGLEVEL property. Its value is '1'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CCMLOGMAXSIZE property. Its value is '1000000'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CCMLOGMAXHISTORY property. Its value is '1'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'H:\Program Files\Microsoft Configuration Manager\bin\x64'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding MSICLIENTUSESEXTERNALUI property. Its value is '1'.
    MSI (s) (24:48) [20:50:23:631]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '6556'.
    MSI (s) (24:48) [20:50:23:631]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (24:48) [20:50:23:632]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is 'd8d0cefc1249514889002637bb750a41'.
    MSI (s) (24:48) [20:50:23:632]: RESTART MANAGER: Session opened.
    MSI (s) (24:48) [20:50:23:632]: PROPERTY CHANGE: Adding MsiSystemRebootPending property. Its value is '1'.
    MSI (s) (24:48) [20:50:23:632]: TRANSFORMS property is now:
    MSI (s) (24:48) [20:50:23:632]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (24:48) [20:50:23:633]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming
    MSI (s) (24:48) [20:50:23:634]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Favorites
    MSI (s) (24:48) [20:50:23:634]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (24:48) [20:50:23:635]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Documents
    MSI (s) (24:48) [20:50:23:635]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (24:48) [20:50:23:636]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (24:48) [20:50:23:636]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (24:48) [20:50:23:637]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (24:48) [20:50:23:637]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (24:48) [20:50:23:638]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Local
    MSI (s) (24:48) [20:50:23:638]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Pictures
    MSI (s) (24:48) [20:50:23:639]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (24:48) [20:50:23:640]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (24:48) [20:50:23:640]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (24:48) [20:50:23:641]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (24:48) [20:50:23:641]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (24:48) [20:50:23:642]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (24:48) [20:50:23:643]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (24:48) [20:50:23:643]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (24:48) [20:50:23:644]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (24:48) [20:50:23:644]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Desktop
    MSI (s) (24:48) [20:50:23:645]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (24:48) [20:50:23:645]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (24:48) [20:50:23:645]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (24:48) [20:50:23:648]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
    MSI (s) (24:48) [20:50:23:648]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
    MSI (s) (24:48) [20:50:23:648]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (24:48) [20:50:23:648]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (24:48) [20:50:23:648]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (24:48) [20:50:23:648]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\6257f6f.msi'.
    MSI (s) (24:48) [20:50:23:648]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi'.
    MSI (s) (24:48) [20:50:23:648]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (s) (24:48) [20:50:23:648]: EEUI - Disabling MsiEmbeddedUI due to existing external or embedded UI
    MSI (s) (24:48) [20:50:23:648]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
    MSI (s) (24:48) [20:50:23:648]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (24:48) [20:50:23:648]: Machine policy value 'DisableRollback' is 0
    MSI (s) (24:48) [20:50:23:648]: User policy value 'DisableRollback' is 0
    MSI (s) (24:48) [20:50:23:648]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 8/27/2014  20:50:23 ===
    MSI (s) (24:48) [20:50:23:649]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038
    MSI (s) (24:48) [20:50:23:649]: APPCOMPAT: [DetectVersionLaunchCondition] Launch condition already passes.
    MSI (s) (24:48) [20:50:23:649]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (24:48) [20:50:23:649]: Doing action: INSTALL
    Action start 20:50:23: INSTALL.
    MSI (s) (24:48) [20:50:23:650]: Running ExecuteSequence
    MSI (s) (24:48) [20:50:23:650]: Doing action: System64Folder.12C909B6_5F69_4C4D_8EC3_C225C1607933
    MSI (s) (24:48) [20:50:23:650]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'System64Folder.12C909B6_5F69_4C4D_8EC3_C225C1607933'
    MSI (s) (24:48) [20:50:23:650]: PROPERTY CHANGE: Adding System64Folder.12C909B6_5F69_4C4D_8EC3_C225C1607933 property. Its value is 'C:\Windows\system32\'.
    Action start 20:50:23: System64Folder.12C909B6_5F69_4C4D_8EC3_C225C1607933.
    MSI (s) (24:48) [20:50:23:651]: Doing action: SystemFolder.12C909B6_5F69_4C4D_8EC3_C225C1607933
    Action ended 20:50:23: System64Folder.12C909B6_5F69_4C4D_8EC3_C225C1607933. Return value 1.
    MSI (s) (24:48) [20:50:23:651]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.12C909B6_5F69_4C4D_8EC3_C225C1607933'
    MSI (s) (24:48) [20:50:23:651]: PROPERTY CHANGE: Adding SystemFolder.12C909B6_5F69_4C4D_8EC3_C225C1607933 property. Its value is 'C:\Windows\SysWOW64\'.
    Action start 20:50:23: SystemFolder.12C909B6_5F69_4C4D_8EC3_C225C1607933.
    MSI (s) (24:48) [20:50:23:651]: Doing action: SystemFolder.A6940213_CD40_4753_8BA2_E803376DECC3
    Action ended 20:50:23: SystemFolder.12C909B6_5F69_4C4D_8EC3_C225C1607933. Return value 1.
    MSI (s) (24:48) [20:50:23:652]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.A6940213_CD40_4753_8BA2_E803376DECC3'
    MSI (s) (24:48) [20:50:23:652]: PROPERTY CHANGE: Adding SystemFolder.A6940213_CD40_4753_8BA2_E803376DECC3 property. Its value is 'C:\Windows\SysWOW64\'.
    Action start 20:50:23: SystemFolder.A6940213_CD40_4753_8BA2_E803376DECC3.
    MSI (s) (24:48) [20:50:23:652]: Doing action: System64Folder.A6940213_CD40_4753_8BA2_E803376DECC3
    Action ended 20:50:23: SystemFolder.A6940213_CD40_4753_8BA2_E803376DECC3. Return value 1.
    MSI (s) (24:48) [20:50:23:652]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'System64Folder.A6940213_CD40_4753_8BA2_E803376DECC3'
    MSI (s) (24:48) [20:50:23:652]: PROPERTY CHANGE: Adding System64Folder.A6940213_CD40_4753_8BA2_E803376DECC3 property. Its value is 'C:\Windows\system32\'.
    Action start 20:50:23: System64Folder.A6940213_CD40_4753_8BA2_E803376DECC3.
    MSI (s) (24:48) [20:50:23:653]: Doing action: SystemFolder.F65FD590_5BEA_48BE_8408_26F7244E8B61
    Action ended 20:50:23: System64Folder.A6940213_CD40_4753_8BA2_E803376DECC3. Return value 1.
    MSI (s) (24:48) [20:50:23:653]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.F65FD590_5BEA_48BE_8408_26F7244E8B61'
    MSI (s) (24:48) [20:50:23:653]: PROPERTY CHANGE: Adding SystemFolder.F65FD590_5BEA_48BE_8408_26F7244E8B61 property. Its value is 'C:\Windows\SysWOW64\'.
    Action start 20:50:23: SystemFolder.F65FD590_5BEA_48BE_8408_26F7244E8B61.
    MSI (s) (24:48) [20:50:23:653]: Doing action: System64Folder.F65FD590_5BEA_48BE_8408_26F7244E8B61
    Action ended 20:50:23: SystemFolder.F65FD590_5BEA_48BE_8408_26F7244E8B61. Return value 1.
    MSI (s) (24:48) [20:50:23:654]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'System64Folder.F65FD590_5BEA_48BE_8408_26F7244E8B61'
    MSI (s) (24:48) [20:50:23:654]: PROPERTY CHANGE: Adding System64Folder.F65FD590_5BEA_48BE_8408_26F7244E8B61 property. Its value is 'C:\Windows\system32\'.
    Action start 20:50:23: System64Folder.F65FD590_5BEA_48BE_8408_26F7244E8B61.
    MSI (s) (24:48) [20:50:23:654]: Doing action: SystemFolder.BFC13682_FB8F_4455_9724_4DDBBBF713D7
    Action ended 20:50:23: System64Folder.F65FD590_5BEA_48BE_8408_26F7244E8B61. Return value 1.
    MSI (s) (24:48) [20:50:23:654]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.BFC13682_FB8F_4455_9724_4DDBBBF713D7'
    MSI (s) (24:48) [20:50:23:654]: PROPERTY CHANGE: Adding SystemFolder.BFC13682_FB8F_4455_9724_4DDBBBF713D7 property. Its value is 'C:\Windows\SysWOW64\'.
    Action start 20:50:23: SystemFolder.BFC13682_FB8F_4455_9724_4DDBBBF713D7.
    MSI (s) (24:48) [20:50:23:655]: Doing action: System64Folder.BFC13682_FB8F_4455_9724_4DDBBBF713D7
    Action ended 20:50:23: SystemFolder.BFC13682_FB8F_4455_9724_4DDBBBF713D7. Return value 1.
    MSI (s) (24:48) [20:50:23:655]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'System64Folder.BFC13682_FB8F_4455_9724_4DDBBBF713D7'
    MSI (s) (24:48) [20:50:23:655]: PROPERTY CHANGE: Adding System64Folder.BFC13682_FB8F_4455_9724_4DDBBBF713D7 property. Its value is 'C:\Windows\system32\'.
    Action start 20:50:23: System64Folder.BFC13682_FB8F_4455_9724_4DDBBBF713D7.
    MSI (s) (24:48) [20:50:23:655]: Doing action: SystemFolder.1114972D_590D_4AB6_BA2E_779928CEDCC2
    Action ended 20:50:23: System64Folder.BFC13682_FB8F_4455_9724_4DDBBBF713D7. Return value 1.
    MSI (s) (24:48) [20:50:23:656]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.1114972D_590D_4AB6_BA2E_779928CEDCC2'
    MSI (s) (24:48) [20:50:23:656]: PROPERTY CHANGE: Adding SystemFolder.1114972D_590D_4AB6_BA2E_779928CEDCC2 property. Its value is 'C:\Windows\SysWOW64\'.
    Action start 20:50:23: SystemFolder.1114972D_590D_4AB6_BA2E_779928CEDCC2.
    MSI (s) (24:48) [20:50:23:656]: Doing action: System64Folder.1114972D_590D_4AB6_BA2E_779928CEDCC2
    Action ended 20:50:23: SystemFolder.1114972D_590D_4AB6_BA2E_779928CEDCC2. Return value 1.
    MSI (s) (24:48) [20:50:23:656]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'System64Folder.1114972D_590D_4AB6_BA2E_779928CEDCC2'
    MSI (s) (24:48) [20:50:23:656]: PROPERTY CHANGE: Adding System64Folder.1114972D_590D_4AB6_BA2E_779928CEDCC2 property. Its value is 'C:\Windows\system32\'.
    Action start 20:50:23: System64Folder.1114972D_590D_4AB6_BA2E_779928CEDCC2.
    MSI (s) (24:48) [20:50:23:657]: Doing action: LaunchConditions
    Action ended 20:50:23: System64Folder.1114972D_590D_4AB6_BA2E_779928CEDCC2. Return value 1.
    Action start 20:50:23: LaunchConditions.
    MSI (s) (24:48) [20:50:23:657]: Skipping action: CcmSwitchToRepairMode (condition is false)
    MSI (s) (24:48) [20:50:23:657]: Doing action: AppSearch
    Action ended 20:50:23: LaunchConditions. Return value 1.
    Action start 20:50:23: AppSearch.
    MSI (s) (24:48) [20:50:23:658]: Note: 1: 2262 2: Signature 3: -2147287038
    MSI (s) (24:48) [20:50:23:658]: Note: 1: 2262 2: Signature 3: -2147287038
    MSI (s) (24:48) [20:50:23:659]: PROPERTY CHANGE: Modifying CCMINSTALLDIR property. Its current value is 'h:\Program Files\SMS_CCM'. Its new value: 'C:\Windows\CCM\'.
    MSI (s) (24:48) [20:50:23:659]: Note: 1: 2262 2: Signature 3: -2147287038
    MSI (s) (24:48) [20:50:23:659]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Microsoft\CCM\Embedded 3: 2
    MSI (s) (24:48) [20:50:23:659]: Note: 1: 2262 2: Signature 3: -2147287038
    MSI (s) (24:48) [20:50:23:659]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\Software\Microsoft\CCM\Logging\DebugLogging 3: 2
    MSI (s) (24:48) [20:50:23:660]: Note: 1: 2262 2: Signature 3: -2147287038
    MSI (s) (24:48) [20:50:23:660]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Microsoft\SMS\IIS 3: 2
    MSI (s) (24:48) [20:50:23:660]: Note: 1: 2262 2: Signature 3: -2147287038
    MSI (s) (24:48) [20:50:23:660]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Microsoft\SMS\MP 3: 2
    MSI (s) (24:48) [20:50:23:660]: Note: 1: 2262 2: Signature 3: -2147287038
    MSI (s) (24:48) [20:50:23:660]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Microsoft\SMS\MP 3: 2
    MSI (s) (24:48) [20:50:23:660]: Note: 1: 2262 2: Signature 3: -2147287038
    MSI (s) (24:48) [20:50:23:661]: Skipping action: CcmAbortIfEmbeddedExists (condition is false)
    MSI (s) (24:48) [20:50:23:661]: Doing action: CCPSearch
    Action ended 20:50:23: AppSearch. Return value 1.
    MSI (s) (24:48) [20:50:23:661]: Note: 1: 2205 2:  3: CCPSearch
    MSI (s) (24:48) [20:50:23:661]: Note: 1: 2228 2:  3: CCPSearch 4: SELECT `Signature_` FROM `CCPSearch`
    Action start 20:50:23: CCPSearch.
    MSI (s) (24:48) [20:50:23:661]: Doing action: RMCCPSearch
    Action ended 20:50:23: CCPSearch. Return value 0.
    MSI (s) (24:48) [20:50:23:662]: Note: 1: 2205 2:  3: CCPSearch
    MSI (s) (24:48) [20:50:23:662]: Note: 1: 2228 2:  3: CCPSearch 4: SELECT `Signature_` FROM `CCPSearch`
    Action start 20:50:23: RMCCPSearch.
    MSI (s) (24:48) [20:50:23:662]: Doing action: ValidateProductID
    Action ended 20:50:23: RMCCPSearch. Return value 0.
    Action start 20:50:23: ValidateProductID.
    MSI (s) (24:48) [20:50:23:662]: Skipping action: CcmSetInstallDir32 (condition is false)
    MSI (s) (24:48) [20:50:23:662]: Doing action: CcmSetInstallDir64
    Action ended 20:50:23: ValidateProductID. Return value 1.
    MSI (s) (24:48) [20:50:23:663]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'CcmSetInstallDir64'
    MSI (s) (24:48) [20:50:23:663]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\Windows\CCM'.
    Action start 20:50:23: CcmSetInstallDir64.
    MSI (s) (24:48) [20:50:23:663]: Doing action: CcmSetInstallDirFromCmdLine
    Action ended 20:50:23: CcmSetInstallDir64. Return value 1.
    MSI (s) (24:48) [20:50:23:664]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'CcmSetInstallDirFromCmdLine'
    MSI (s) (24:48) [20:50:23:664]: PROPERTY CHANGE: Modifying TARGETDIR property. Its current value is 'C:\Windows\CCM'. Its new value: 'C:\Windows\CCM\'.
    Action start 20:50:23: CcmSetInstallDirFromCmdLine.
    MSI (s) (24:48) [20:50:23:664]: Doing action: CcmSetPrimaryFolder
    Action ended 20:50:23: CcmSetInstallDirFromCmdLine. Return value 1.
    MSI (s) (24:48) [20:50:23:664]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'CcmSetPrimaryFolder'
    MSI (s) (24:48) [20:50:23:664]: PROPERTY CHANGE: Adding PRIMARYFOLDER property. Its value is 'TARGETDIR'.
    Action start 20:50:23: CcmSetPrimaryFolder.
    MSI (s) (24:48) [20:50:23:665]: Doing action: FindRelatedProducts
    Action ended 20:50:23: CcmSetPrimaryFolder. Return value 1.
    Action start 20:50:23: FindRelatedProducts.
    MSI (s) (24:48) [20:50:23:665]: PROPERTY CHANGE: Adding SMSSP1COLOCDOWNGRADE property. Its value is '{8864FB91-94EE-4F16-A144-0D82A232049D}'.
    MSI (s) (24:48) [20:50:23:666]: Skipping action: SmsDetectUnsupportedUpgrade (condition is false)
    MSI (s) (24:48) [20:50:23:666]: Skipping action: SmsDetectDowngrade (condition is false)
    MSI (s) (24:48) [20:50:23:666]: Skipping action: CcmDetectUnsupportedUpgrade (condition is false)
    MSI (s) (24:48) [20:50:23:666]: Doing action: SmsDetectColocationDowngrade
    Action ended 20:50:23: FindRelatedProducts. Return value 1.
    MSI (s) (24:48) [20:50:23:666]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SmsDetectColocationDowngrade'
    Action start 20:50:23: SmsDetectColocationDowngrade.
    MSI (s) (24:48) [20:50:23:666]: Product: ConfigMgr Management Point -- A newer version of the Configuration Manager Client is installed. Cannot continue installing this version of the management point.
    A newer version of the Configuration Manager Client is installed. Cannot continue installing this version of the management point.
    Action ended 20:50:23: SmsDetectColocationDowngrade. Return value 3.
    Action ended 20:50:23: INSTALL. Return value 3.
    Property(S): UpgradeCode = {ABD0F60F-1622-4311-8989-106B60D784FF}
    Property(S): TARGETDIR = C:\Windows\CCM\
    Property(S): ALLUSERS = 1
    Property(S): ErrorDialog = ErrorDialog
    Property(S): ProductName = ConfigMgr Management Point
    Property(S): ProductCode = {6CED3AB0-05AF-4C81-8DBE-A62661C26F40}
    Property(S): PackageCode = {5CBAF9F8-A298-49C0-B874-D0F5F0F39DB4}
    Property(S): Manufacturer = Microsoft Corporation
    Property(S): ProductVersion = 5.00.7804.1000
    Property(S): ProductLanguage = 1033
    Property(S): SMSCWSREGKEYNAME = MPCWSPath
    Property(S): CcmCheckRepairNotInstalled_ActionText = Abort repair if the product has not been installed.
    Property(S): CcmSwitchToRepairMode_ActionText = Product has been installed. Switch to repair mode for this installation.
    Property(S): CcmSuppressReboot_ActionText = Suppress machine reboot after installation.
    Property(S): CcmCheckFreeDiskSpace_ActionText = Check if the target volumn has enough space for the installation.
    Property(S): CcmCheckFreeDiskSpace2_ActionText = Check if the target volumn has enough space for the installation.
    Property(S): CcmSetInstallDirFromCmdLine_ActionText = Property custom action for setting install directory from command line.
    Property(S): CcmCreateWmiNamespacesInit_ActionText = Processes the table CcmWmiNamespace and sends the context to CcmCreateWmiNamespaces.
    Property(S): CcmCreateWmiNamespaces_ActionText = Creates the WMI namespaces found in the CcmWmiNamespace table
    Property(S): CcmCreateWmiNamespacesRollback_ActionText = Calls CcmRemoveWmiNamespaces. Deletes the WMI namespaces.
    Property(S): CcmRemoveWmiNamespacesInit_ActionText = Processes the table CcmWmiNamespace and sends the context to CcmRemoveWmiNamespaces.
    Property(S): CcmRemoveWmiNamespaces_ActionText = Deletes WMI namespaces.
    Property(S): CcmRegisterWmiMofFilesInit_ActionText = Queues MOF files in the CcmWmiMofFile table to be compiled.
    Property(S): CcmRegisterWmiMofFile_ActionText = Compiles MOF files that were queued by CcmRegisterWmiMofFilesInit.
    Property(S): CcmWmiRollback_ActionText = Deletes the existin site policy config and then recompiles MOF to restore old WMI instances.
    Property(S): CcmDeleteWmiBackup_ActionText = Deletes the back up mof of the wmi namespace created for rolling back purposes.
    Property(S): CcmRemoveWmiObjectsInit_ActionText = Queries the CcmWmiObject table for WMI objects to be removed.
    Property(S): CcmRemoveWmiObjects_ActionText = Removes WMI objects found by CcmRemoveWmiObjectsInit.
    Property(S): CcmRemoveWmiObjectsRollback_ActionText = Calls CcmRemoveWmiObjects. Removes WMI objects found by CcmRemoveWmiObjectsInit.
    Property(S): CcmCreateIISVirtualDirectoriesInit_ActionText = Processes the CcmIISVirtualDirectory table and passes that information to CcmCreateIISVirtualDirectories to create the virtual directories.
    Property(S): CcmCreateIISVirtualDirectories_ActionText = Creates the virtual directories specified in the CcmIISVirtualDirectory table.
    Property(S): CcmRollbackIISVirtualDirectories_ActionText = Calls CcmRemoveIISVirtualDirectories. Removes IIS Virtual Directories found in CcmRemoveIISVirtualDirectoriesInit.
    Property(S): CcmRemoveIISVirtualDirectories_ActionText = Removes IIS Virtual Directories found in CcmRemoveIISVirtualDirectoriesInit.
    Property(S): CcmRemoveIISVirtualDirectoriesInit_ActionText = Queries the CcmIISVirtualDirectory table for IIS Virtual Directories to be removed.
    Property(S): CcmCreateIISApplicationPoolsInit_ActionText = Processes the CcmIISAplicationPool table and passes that context to CcmCreateIISAplicationPools custom action.
    Property(S): CcmCreateIISApplicationPools_ActionText = Creates the application pools specified in the CcmIISAplicationPools table.
    Property(S): CcmCreateIISApplicationPoolsRollback_ActionText = Calls CcmRemoveIISApplicationPools. Removes IIS Application Pools found in CcmRemoveIISApplicationPoolsInit.
    Property(S): CcmRemoveIISApplicationPoolsInit_ActionText = Queries the CcmIISApplicationPool table for IIS Application Pools to be removed.
    Property(S): CcmRemoveIISApplicationPools_ActionText = Removes IIS Application Pools found in CcmRemoveIISApplicationPoolsInit.
    Property(S): CcmDetectFilesInUseRemoveInit_ActionText = Detect if files are in used at uninstallation.
    Property(S): CcmDetectFilesInUseInit_ActionText = Detects file in use.
    Property(S): CcmDetectFilesInUse_ActionText = Moves files that are in use so that they will be deleted upon the next reboot.
    Property(S): CcmDetectFilesInUseRollback_ActionText = Rolls back files moved by CcmDetectFilesInUse.
    Property(S): CcmDetectFilesInUseCommit_ActionText = Commits action of CcmDetectFileInUse. After this we cannot rollback.
    Property(S): CcmDetectFilesInUseRemoveRollback_ActionText = Calls CcmDetectFilesInUseRollback. Rolls back the files moved by CcmDetectFilesInUse.
    Property(S): CcmDetectFilesInUseRemoveCommit_ActionText = Calls CcmDetectFilesInUseCommit. Commits action of CcmDetectFileInUse. After this the action cannot be rolled back.
    Property(S): CcmLookupAccountNames_ActionText = Looks up the name of the Administrators group, Users group, and Creator Owner account, then sets the properties CcmAdministratorGroupName, CcmUsersGroupName, and CcmCreatorOwnerAccountName.
    Property(S): CcmRegisterPerfCountersInit_ActionText = Processes the CcmPerfApplication table for components that will be registering a performance counter.
    Property(S): CcmRegisterPerfCounters_ActionText = Registers performance counters gathered in the CcmRegisterPerfCountersInit action
    Property(S): CcmUnregisterPerfCountersInit_ActionText = Processes the CcmPerfApplication table for components that will be unregistering a performance counter.
    Property(S): CcmUnregisterPerfCounters_ActionText = Removes performance counters gathered in the CcmUnregisterPerfCountersInit action
    Property(S): CcmRegisterPerfCountersRollback_ActionText = Rolls back any changes made by CcmRegisterPerfCounters if install fails.
    Property(S): CcmUnloadWmiProvidersInit_ActionText = Enumerates component table and builds a list of files that will be installed
    Property(S): CcmUnloadWmiProviders_ActionText = Enumerates all providers and unloads them, verifies they are unloaded, and then reloads them.
    Property(S): CcmTypelibRollbackInit_ActionText = Queues a list of type libraries to be registered on rollback.
    Property(S): CcmTypelibRollback_ActionText = In the event of install failing, this event rolls back the type libraries to the state before install started.
    Property(S): CcmSetObjectSecurityInit_ActionText = Queries the CcmObjectSecurity table and passes this information to CcmSetObjectSecurity.
    Property(S): CcmSetObjectSecurity_ActionText = Applying security permissions
    Property(S): CcmSetInstallDir32_ActionText = Property action for setting installation directory for Configuration Manager Client on 32-bit platform.
    Property(S): CcmSetInstallDir64_ActionText = Property action for setting installation directory for Configuration Manager Client on 64-bit platform.
    Property(S): CcmSetPrimaryFolder_ActionText = Property action for setting target installation folder.
    Property(S): PRIMARYFOLDER = TARGETDIR
    Property(S): VersionNT64 = 603
    Property(S): CCMINSTALLDIR = C:\Windows\CCM\
    Property(S): System64Folder.12C909B6_5F69_4C4D_8EC3_C225C1607933 = C:\Windows\system32\
    Property(S): SystemFolder.12C909B6_5F69_4C4D_8EC3_C225C1607933 = C:\Windows\SysWOW64\
    Property(S): CCMEXECFILEKEY = [#CcmExec_exe.A6940213_CD40_4753_8BA2_E803376DECC3]
    Property(S): CcmDetectUpgradeOldClient_Message = A previous version of the Configuration Manager Client is installed. Please upgrade the client to Configuration Manager 2012 before attempting to upgrade.
    Property(S): SmsDetectUpgradeOldMP_Message = A previous version of the Configuration Manager Management Point is installed. Please upgrade the management point to Configuration Manager 2012 before attempting to upgrade.
    Property(S): SmsDetectUnsupportedUpgrade_ActionText = Detect if a previous version of the Configuration Manager Management Point is installed before upgrading Configuration Manager Client.
    Property(S): CcmDetectUnsupportedUpgrade_ActionText = Detect if a previous version of the Configuration Manager Client is installed before upgrading Configuration Manager Management Point.
    Property(S): CcmAbortIfEmbeddedExists_ActionText = Abort installation if the Configuration Manager Client Embedded version is installed.
    Property(S): CcmRegisterHostingConfigurationInit_ActionText = Gathers configuration for Configuration Manager Client service to be registered on the system.
    Property(S): CcmRegisterHostingConfiguration_ActionText = Register configuration for Configuration Manager Client service.
    Property(S): CcmRegisterHostedApplicationsInit_ActionText = Gathers hosted out-of-proc DCOM applications running inside of Configuration Manager Client to be registered on the system.
    Property(S): CcmRegisterHostedApplications_ActionText = Register hosted out-of-proc DCOM applications running inside of Configuration Manager Client.
    Property(S): CcmRegisterHostedApplicationsRollback_ActionText = Rollback the registration of hosted out-of-proc DCOM applications running inside of Configuration Manager Client.
    Property(S): CcmRemoveHostedApplicationsInit_ActionText = Prepare to remove the registration of hosted out-of-proc DCOM applications running inside of Configuration Manager Client.
    Property(S): CcmRemoveHostedApplications_ActionText = Remove the registration of hosted out-of-proc DCOM applications running inside of Configuration Manager Client.
    Property(S): CcmRegisterEndpointsInit_ActionText = Gathers information such as log file name on each endpoint to be registered on the system.
    Property(S): CcmRegisterEndpoint_ActionText = Registers endpoint gathered in the action CcmRegisterEndpointsInit with WMI.
    Property(S): CcmRegisterEndpointRollback_ActionText = In the event of a failed installation, this action rolls back the changes from CcmRegisterEndpoint.
    Property(S): CcmRemoveEndpointsInit_ActionText = Gathers information for each endpoint to be removed from the system.
    Property(S): CcmRemoveEndpoint_ActionText = Removes endpoint gathered in the action CcmRemoveEndpointsInit with WMI.
    Property(S): CcmRegisterSystemTasksInit_ActionText = Processes the CcmSystemTask table and passes this information to CcmRegisterSystemTask.
    Property(S): CcmRegisterSystemTask_ActionText = Registers a System Task with WMI.
    Property(S): CcmRegisterSystemTaskRollback_ActionText = Rolls back the changes made by CcmRegisterSystemTask.
    Property(S): CcmRemoveSystemTasksInit_ActionText = Processes the CcmSystemTask table and passes this information to CcmRemoveSystemTask.
    Property(S): CcmRemoveSystemTask_ActionText = Deletes a System Task from WMI.
    Property(S): CcmRegisterProduct_ActionText = If product is registered in MSI database, then product is registered with WMI.
    Property(S): CcmRegisterProductRollback_ActionText = Calls CcmUnregisterProduct. Deletes the instance from the WMI in the Configuration Manager namespace using the ProductCode instance in the session.
    Property(S): CcmUnregisterProduct_ActionText = Deletes the instance from WMI in ccm namespace using the ProductCode instance in the session.
    Property(S): CcmRegisterComponentsInit_ActionText = Generates the list of components for CcmRegisterComponets action to register.
    Property(S): CcmRegisterComponents_ActionText = Registers components passed in from CcmRegisterComponentsInit
    Property(S): CcmRegisterComponentsRollback_ActionText = In the event of a failed installation, this action rolls back the changes from CcmRegisterComponents.
    Property(S): CcmUnregisterComponentsInit_ActionText = Generates the list of components for CcmUnregisterComponets action to unregister.
    Property(S): CcmUnregisterComponents_ActionText = Unregisters components passed in from the action CcmUnregisterComponentsInit.
    Property(S): CcmSetupLoggingInit_ActionText = Gathers log file information from the LogFile table and passes this information to CcmSetupLogging.
    Property(S): CcmSetupLogging_ActionText = Sets component logging information in WMI.
    Property(S): CcmStopService_ActionText = Stops the ccmexec service.
    Property(S): CcmStopServiceRollback_ActionText = Calls CcmStartService. Starts the ccmexec service.
    Property(S): CcmStartService_ActionText = Starts the ccmexec service.
    Property(S): CcmClearServiceSetupStamp_ActionText = Clear the time stamp for blocking the ccmexec service from starting up during upgrade.
    Property(S): CcmSetServiceConfigInit_ActionText = Gathers ServiceData and then queues actions CcmSetServiceConfig and CcmMigrateMessagingQueues.
    Property(S): CcmSetServiceConfig_ActionText = Sets WMI ServiceRootDir and configures CCMEXEC service.
    Property(S): CcmConfigDCOMInit_ActionText = Processes the CcmDCOMAplication table and  checks to see if the DCOM Component is being updated. If so, passes that information to custom action CcmConfigDCOM.
    Property(S): CcmConfigDCOM_ActionText = Configures registry key permissions for the DCOM Components passed from CcmConfigDCOMInit.
    Property(S): CcmFixupServiceConfigInit_ActionText = Gathers the services or load ordering groups which must be started before ccmexec starts.
    Property(S): CcmFixupServiceConfig_ActionText = Sets the services or load ordering groups which must be started before ccmexec can be started.
    Property(S): CcmRemoveService_ActionText = Removes BITS jobs and deletes the messaging queues.
    Property(S): CcmRemoveLanternDocuments_ActionText = Removing documents from Microsoft Policy Platform that have been submitted by Configuration Manager authority.
    Property(S): CcmSetPortConfigInit_ActionText = This custom action specifies the port the client should use when communicating with the management point and the server locator point.
    Property(S): CcmSetHttpsConfigInit_ActionText = This custom action configures the https port and http state.
    Property(S): CcmPreserveLastStateSerialNum_ActionText = Custom action to preserve last state message serial number.
    Property(S): CcmInitializePolicyInit_ActionText = Gather default policy information.
    Property(S): CcmInitializePolicy_ActionText = Sets and initializes default policy.
    Property(S): CcmMigratePolicySettingsInit_ActionText = Custom action to schedule the deferred execution of CcmMigratePolicySettings custom action.
    Property(S): CcmMigratePolicySettings_ActionText = Compiles Mof file to migrate root\ccm\Policy namespace schema from Pre-V4 Beta2 to V4 and above.
    Property(S): CcmMigratePolicySettingsCommit_ActionText = Just deletes the temporary MOF file.
    Property(S): CcmMigratePolicySettingsRollback_ActionText = Just deletes the temporary MOF file. Actual Rollback is done by the rollback action that rollbacks root\ccm namespace.
    Property(S): ExpandCcmExecFileKey_ActionText = Property action for setting CcmExec file key.
    Property(S): CcmMinAppVersion = 5.00.7000.0000
    Property(S): CcmMaxAppVersion = 5.00.9000.0000
    Property(S): SystemFolder.A6940213_CD40_4753_8BA2_E803376DECC3 = C:\Windows\SysWOW64\
    Property(S): System64Folder.A6940213_CD40_4753_8BA2_E803376DECC3 = C:\Windows\system32\
    Property(S): SystemFolder.F65FD590_5BEA_48BE_8408_26F7244E8B61 = C:\Windows\SysWOW64\
    Property(S): System64Folder.F65FD590_5BEA_48BE_8408_26F7244E8B61 = C:\Windows\system32\
    Property(S): USELEGACYSTATEMESSAGESTORE = 1
    Property(S): CcmValidateCustomWebSite_ActionText = This custom action validates that either the custom website or default website (if a custom website is not specified) can be used.
    Property(S): CcmValidateServerConfig_ActionText = Validates that IIS, BITS and WebDAV is installed and properly configured setup.
    Property(S): CcmLookupIISAnonymousAccountName_ActionText = Looks up the IIS AnonymousUserName and then sets the IISAnonymousUserAccount property to this value.
    Property(S): CcmSetServiceMPConfigInit_ActionText = Gathers Incoming and Outgoing directories and virtual directories for the MP. Queues the action CcmSetServiceMPConfig.
    Property(S): CcmSetServiceMPConfig_ActionText = Sets Incoming and Outgoing directories and virtual directories in WMI.
    Property(S): CcmSetServerDataRoot_ActionText = Property action for setting service data root folder.
    Property(S): CcmSetServerDataRootInstallDir_ActionText = Property action for setting service data folder.
    Property(S): CcmIncomingVDirName = CCM_Incoming
    Property(S): SystemFolder.BFC13682_FB8F_4455_9724_4DDBBBF713D7 = C:\Windows\SysWOW64\
    Property(S): System64Folder.BFC13682_FB8F_4455_9724_4DDBBBF713D7 = C:\Windows\system32\
    Property(S): CCMSERVERDATAROOT = h:\Program Files\Microsoft Configuration Manager
    Property(S): CcmSystemVDirName = CCM_System
    Property(S): CcmSystemRegVDirName = CCM_System_WindowsAuth
    Property(S): CcmSystemAltAuthVDirName = CCM_System_AltAuth
    Property(S): SMSCACHEDIR = Default
    Property(S): SMSCACHEFLAGS = Default
    Property(S): DISABLESITEOPT = Default
    Property(S): DISABLECACHEOPT = Default
    Property(S): SMSCACHESIZE = 5120
    Property(S): SmsShellNotify_ActionText = Notifies the shell for the file-association icon changes.
    Property(S): CCMINSTALLMSMQ = FALSE
    Property(S): CCMINSTALLMP = 1
    Property(S): ARPSYSTEMCOMPONENT = 1
    Property(S): ARPNOREMOVE = 1
    Property(S): ARPNOMODIFY = 1
    Property(S): CCMENABLELOGGING_Default = FALSE
    Property(S): CCMLOGLEVEL_Default = 1
    Property(S): CCMLOGMAXSIZE_Default = 2000000
    Property(S): CCMLOGMAXHISTORY_Default = 1
    Property(S): SecureCustomProperties = CCMENABLELOGGING;CCMLOGLEVEL;CCMLOGMAXHISTORY;CCMLOGMAXSIZE;CCMDEBUGLOGGING;CCMOSINSTALLPATHS;CCMINSTALLMSMQ;CCMINSTALLMP;SMSUPGRADEPRODUCTS;CCMSERVERDATAROOT;SMSUPLEVELPRODUCTS;USESMSPORTS;SMSPORTS;CCMHTTPPORT;SMSSP1COLOCDOWNGRADE;USESMSSSLPORTS;SMSSSLPORTS;SMSSSLSTATE;CCMHTTPSPORT;CCMHTTPSCERTNAME;SMSFWKUPGRADEFROMPREV4;CCMFWKUPGRADEFROMPREV4;CLIENTFWKUPGRADEFROMCM2007;SMSCWS;CCMSHAREMODE
    Property(S): AdminProperties = CCMENABLELOGGING;CCMLOGLEVEL;CCMLOGMAXHISTORY;CCMLOGMAXSIZE;CCMDEBUGLOGGING;CCMOSINSTALLPATHS;CCMINSTALLMSMQ;CCMINSTALLMP;CCMSERVERDATAROOT;CCMALLOWSILENTREBOOT;CCMHTTPPORT;CCMHTTPSPORT;CCMHTTPSCERTNAME;SMSCWS
    Property(S): CcmDefaultPolicyAuthorityPriority = 10
    Property(S): SmsDetectColocationDowngrade_Message = A newer version of the Configuration Manager Client is installed. Cannot continue installing this version of the management point.
    Property(S): SmsDetectColocationDowngrade_ActionText = Detect if a newer version of the Configuration Management Client is installed before installing the Configuration Manager Management Point.
    Property(S): SmsDetectDowngrade_ActionText = Check if a newer version of the Configuration Manager Client is already installed.
    Property(S): SmsMpRepairSucceeded_ActionText = Sends a wmi event to indicate MP repair succeeded.
    Property(S): SmsDetectMSXMLRebootRequired_ActionText = Tries to create an instance of SAXXMLReader to determine if a reboot is required.
    Property(S): SmsMpSetDefaultPolicyAuthority_ActionText = Set default policy authority for the Configuration Manager Management Point.
    Property(S): SmsMpSerializedKeyExist_ActionText = Wait for the Configuration Manager Management Point serialized key to exist.
    Property(S): ButtonText_Next = &Next >
    Property(S): ButtonText_Back = < &Back
    Property(S): ButtonText_Cancel = &Cancel
    Property(S): ButtonText_Finish = &Finish
    Property(S): ButtonText_Install = &Install
    Property(S): ButtonText_Close = &Close
    Property(S): ButtonText_OK = &OK
    Property(S): ButtonText_Abort = &Abort
    Property(S): ButtonText_Ignore = &Ignore
    Property(S): ButtonText_No = &No
    Property(S): ButtonText_Yes = &Yes
    Property(S): ButtonText_Retry = &Retry
    Property(S): ButtonText_Exit = &Exit
    Property(S): FilesInUse_Info = Setup has detected that it needs to update some files that are currently in use by other processes.
    To prevent having to reboot the machine, please close the following applications:
    Property(S): DefaultUIFont = DefaultDlgFont
    Property(S): DialogBox_Title = ConfigMgr Management Point Setup
    Property(S): WelcomeDialog_Info = This will install the ConfigMgr Management Point.
    Property(S): InstallDialog_Title = Install
    Property(S): InstallDialog_SubTitle = The product is now ready to install
    Property(S): InstallDialog_Info = Click Next to proceed.
    Property(S): ProgressDialog_Title = Please Wait
    Property(S): ProgressDialog_SubTitle = Setup is configuring your system.
    Property(S): CompleteDialog_Title = Setup Complete
    Property(S): CompleteDialog_SubTitle = Setup has finished updating your system.
    Property(S): CompleteDialog_Info = Setup was successful.
    Property(S): UserExitDialog_Title = Setup Aborted
    Property(S): UserExitDialog_SubTitle = Setup was cancelled
    Property(S): UserExitDialog_Info = The ConfigMgr Management Point setup was cancelled.
    Property(S): InstallErrorDialog_Title = Setup Aborted
    Property(S): InstallErrorDialog_SubTitle = Setup failed
    Property(S): InstallErrorDialog_Info = Setup encountered an error and could not continue.
    Property(S): SystemFolder.1114972D_590D_4AB6_BA2E_779928CEDCC2 = C:\Windows\SysWOW64\
    Property(S): System64Folder.1114972D_590D_4AB6_BA2E_779928CEDCC2 = C:\Windows\system32\
    Property(S): SMSSP1COLOCDOWNGRADE = {8864FB91-94EE-4F16-A144-0D82A232049D}
    Property(S): MsiLogFileLocation = h:\Program Files\Microsoft Configuration Manager\logs\mpMSI.log
    Property(S): ProductState = -1
    Property(S): PackagecodeChanging = 1
    Property(S): USESMSPORTS = TRUE
    Property(S): SMSPORTS = 80
    Property(S): USESMSSSLPORTS = TRUE
    Property(S): SMSSSLPORTS = 443
    Property(S): USESMSSSL = TRUE
    Property(S): SMSSSLSTATE = 0
    Property(S): CCMENABLELOGGING = TRUE
    Property(S): CCMLOGLEVEL = 1
    Property(S): CCMLOGMAXSIZE = 1000000
    Property(S): CCMLOGMAXHISTORY = 1
    Property(S): CURRENTDIRECTORY = H:\Program Files\Microsoft Configuration Manager\bin\x64
    Property(S): CLIENTUILEVEL = 3
    Property(S): MSICLIENTUSESEXTERNALUI = 1
    Property(S): CLIENTPROCESSID = 6556
    Property(S): MsiRestartManagerSessionKey = d8d0cefc1249514889002637bb750a41
    Property(S): VersionDatabase = 200
    Property(S): MsiSystemRebootPending = 1
    Property(S): VersionMsi = 5.00
    Property(S): VersionNT = 603
    Property(S): WindowsBuild = 9600
    Property(S): ServicePackLevel = 0
    Property(S): ServicePackLevelMinor = 0
    Property(S): MsiNTProductType = 3
    Property(S): MsiNTSuiteDataCenter = 1
    Property(S): WindowsFolder = C:\Windows\
    Property(S): WindowsVolume = C:\
    Property(S): System64Folder = C:\Windows\system32\
    Property(S): SystemFolder = C:\Windows\SysWOW64\
    Property(S): RemoteAdminTS = 1
    Property(S): TempFolder = C:\Windows\TEMP\
    Property(S): ProgramFilesFolder = C:\Program Files (x86)\
    Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
    Property(S): ProgramFiles64Folder = C:\Program Files\
    Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
    Property(S): AppDataFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\
    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): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
    Property(S): CommonAppDataFolder = C:\ProgramData\
    Property(S): LocalAppDataFolder = C:\Windows\system32\config\systemprofile\AppData\Local\
    Property(S): MyPicturesFolder = C:\Windows\system32\config\systemprofile\Pictures\
    Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
    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): MsiAMD64 = 6
    Property(S): Msix64 = 6
    Property(S): Intel = 6
    Property(S): PhysicalMemory = 5372
    Property(S): VirtualMemory = 4017
    Property(S): AdminUser = 1
    Property(S): MsiTrueAdminUser = 1
    Property(S): LogonUser = SYSTEM
    Property(S): UserSID = S-1-5-18
    Property(S): UserLanguageID = 1033
    Property(S): ComputerName = [servername]
    Property(S): SystemLanguageID = 1033
    Property(S): ScreenX = 1024
    Property(S): ScreenY = 768
    Property(S): CaptionHeight = 23
    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 = 20:50:23
    Property(S): Date = 8/27/2014
    Property(S): MsiNetAssemblySupport = 4.0.30319.33440
    Property(S): MsiWin32AssemblySupport = 6.3.9600.16384
    Property(S): RedirectedDllSupport = 2
    Property(S): MsiRunningElevated = 1
    Property(S): Privileged = 1
    Property(S): DATABASE = C:\Windows\Installer\6257f6f.msi
    Property(S): OriginalDatabase = h:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi
    Property(S): UILevel = 2
    Property(S): ACTION = INSTALL
    === Logging stopped: 8/27/2014  20:50:23 ===
    MSI (s) (24:48) [20:50:23:717]: Note: 1: 1708
    MSI (s) (24:48) [20:50:23:717]: Product: ConfigMgr Management Point -- Installation operation failed.
    MSI (s) (24:48) [20:50:23:718]: Windows Installer installed the product. Product Name: ConfigMgr Management Point. Product Version: 5.00.7804.1000. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation success or error status: 1603.
    MSI (s) (24:48) [20:50:23:721]: Deferring clean up of packages/files, if any exist
    MSI (s) (24:48) [20:50:23:721]: MainEngineThread is returning 1603
    MSI (s) (24:FC) [20:50:23:725]: RESTART MANAGER: Session closed.
    MSI (s) (24:FC) [20:50:23:725]: No System Restore sequence number for this installation.
    MSI (s) (24:FC) [20:50:23:726]: User policy value 'DisableRollback' is 0
    MSI (s) (24:FC) [20:50:23:726]: Machine policy value 'DisableRollback' is 0
    MSI (s) (24:FC) [20:50:23:726]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (24:FC) [20:50:23:726]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (24:FC) [20:50:23:726]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (24:FC) [20:50:23:727]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (9C:58) [20:50:23:728]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (9C:58) [20:50:23:728]: MainEngineThread is returning 1603
    === Verbose logging stopped: 8/27/2014  20:50:23 ===

    A newer version of the Configuration Manager Client is installed. Cannot continue installing this version of the management point.
    Action ended 20:50:23: SmsDetectColocationDowngrade. Return value 3.
    Action ended 20:50:23: INSTALL. Return value 3.
    The installer certainly thinks that you still have a previous ConfigMgr client installed. Perhaps you haven't completely removed it. Use ccmclean.exe from the SMS 2003 tool kit.
    If that fails, why not just rebuild the server - you've said that this is a fresh install. I don't like too much messing at the beginning. This can be difficult enough - you need to start with a clean installation of the product.
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

Maybe you are looking for

  • What can i do when my older ipod wont let me even download free apps

    What can i do when my older ipod touch won't let me download free apps?

  • ORA-01041 Error while query in PL/SQl Developer

    Hi All, I am trying to execute a simple select statement in PL/SQL developer. After the query gets executed i am getting a error ORA-01041 internal error. hostdef extension doesn`t exist. But when i perform the same query in sqlplus, i do not receive

  • How to identify the psa table names in bi 7?

    Hi all, How to identify the psa table names in bi 7?  i need to know the psa table name in bi 7? as well as i need to check whether any historical data loads is there for psa for a particular period? How to filter for a particular data in the psa in

  • DSO Activation Time - "TIME_OUT"

    Hello, i've added a new InfoObject to an existing DSO. Then, i saved the DSO and wanted to activate it. Now to the problem: The activation time is so long, that the process terminate. So that we get the runtime error "TIME_OUT". I ask for your help.

  • Can I add folders to mail on the iPAD?

    Just loaded 4.2.1 on my ipad. The mail only has in,sent and trash boxes. Can I add other boxes or folders to be able to sort my mail as I do on my mac.