Signing a doc

I created a document in adobe pro, I enabled the advanced features for users to sign. In reader I am using a signature pad. I keep getting the below error on one PC
"there was an error trying to commit this signature" could be read only.....I did not save this in read only template. Any ideas?

A signature pad will likely require that a plug-in be installed. If one for the signature pad is installed, I would first check with the vendor to see if it's compatible with the version of Reader you're using (including Protected Mode) or if they have other info that may help.

Similar Messages

  • How can I distinguish special characters or signs in Doc through VBA?

    How can I distinguish special characters or signs in Doc through VBA?
    I have a few large documents written in word 2003 format and now I work on them under word 2007.
    Such large documents containing lots of special characters.  I want to change them into Microsoft 3.0 equation form(It is required by the team). I find no way but using function AddOLEObject and  Sendkeys through VBA. Common characters can be added
    to equation by function Sendkeys, but the return value of Asc() or AscW() for "double arrow", "in" , " not greater than " such special characters or signs, to name but a few are the same ,i.e., 40 And I cannot distinguish them.
    I found the link http://msdn.itags.org/word/44333/ may be of use to me, and the title is:
    How to read symbols from a DOC documents! (Microsoft Word)
     the original question is
    Using function "InsertSymbol", I can insert a symbol into a document. But
    how can I read a symbol from a document?
    Using "Characters(i).range.text", I can read a char. But when meeting a
    symbol, the value of "Characters(i).range.text" is always '('.How can I get the CharacterNumber of the symbol.
    And the final answer is :
    Hi chenfeng,
    Word protects symbols from symbol fonts if you insert them from the "Insert
    > Symbol" dialog.
    This is done so they aren't changed when you change the font or style. But
    it also results in Word reporting AscW( ) = 40 on all of them.
    I've posted a macro to "unprotect" them (or to protect them again if you
    want) ... just today again in
    Newsgroups: microsoft.public.word.vba.customization
    Subject: Symbol Characters
    Date: Mon, 3 May 2004 11:00:46 -0700
    Message-ID: <09f401c43138$8f92f900$[email protected]>
    It isn't archived on Google yet, but tomorrow you should be able to simply
    copy the message ID into http://www.google.com/advanced_group_search.
    Regards,
    Klaus
    But the link for the macro in the final answer is missing.
    Can anyone with kindness help me? Thaks a lot.

    Following Cindy Meister's Advice ,I use MathType SDK.
    The sample in MathType SDK in the following may be meaningful,but I do not know how the MTEF for cos^^2Theta, MTEF for sin^^2Theta and MTEF for 1 are generated .
    It looks much complicated,and I searched the docs in MathType SDK to get a explanation.Is there any function to generate them? I want to use this method to change commaon text mathematical signs( in special character table) and  Greek letters and characters
    with subscripts and superscripts to Microsoft 3.0 equation form.
    Can anyone with kindness help me?
    Sub MTEFTextSubstitution()
        Dim MTEFStr1$, MTEFStr2$, MTEFStr3$
        Dim stat
        'MTEF for cos^^2Theta
        MTEFStr1$ = "% MathType!MTEF!2!1!+-" + _
            " % feaaeaart1ev0aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn" + _
            " % hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr" + _
            " % 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq-Jc9" + _
            " % vqaqpepm0xbba9pwe9Q8fs0-yqaqpepae9pg0FirpepeKkFr0xfr-x" + _
            " % fr-xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaGaci4yaiaac+" + _
            " % gacaGGZbWaaWbaaSqabeaacaaIYaaaaOGaeqiUdehaaa!3B65!"
        'MTEF for sin^^2Theta
        MTEFStr2$ = "% MathType!MTEF!2!1!+-" + _
            " % feaaeaart1ev0aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn" + _
            " % hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr" + _
            " % 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq-Jc9" + _
            " % vqaqpepm0xbba9pwe9Q8fs0-yqaqpepae9pg0FirpepeKkFr0xfr-x" + _
            " % fr-xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaGaci4CaiaacM" + _
            " % gacaGGUbWaaWbaaSqabeaacaaIYaaaaOGaeqiUdehaaa!3B6A!"
        'MTEF for 1
        MTEFStr3$ = "% MathType!MTEF!2!1!+-" + _
            " % feaaeaart1ev0aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn" + _
            " % hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr" + _
            " % 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq-Jc9" + _
            " % vqaqpepm0xbba9pwe9Q8fs0-yqaqpepae9pg0FirpepeKkFr0xfr-x" + _
            " % fr-xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaGaaGymaaaa!36A4!"
        Selection.Copy
        'Init API, reset transform
    '    If MTUtil.CheckMTDLLVersion = 0 Then Exit Sub
        If Not IsDLLVersionOK() Then Exit Sub
        MTXFormReset
        'first substitution
        stat = MTXFormAddVarSub( _
            mtxfmSUBST_ONE, _
            mtxfmVAR_SUB_PLAIN_TEXT, "<v1>", 0, _
            mtxfmVAR_SUB_MTEF_TEXT, MTEFStr1$, Len(MTEFStr1$), 0)
        If stat <> 0 Then
            MsgBox "1st MTXFormAddVarSub returned: " + Str(stat)
            Exit Sub
        End If
        'second substitution
        stat = MTXFormAddVarSub( _
            mtxfmSUBST_ONE, _
            mtxfmVAR_SUB_PLAIN_TEXT, "<v2>", 0, _
            mtxfmVAR_SUB_MTEF_TEXT, MTEFStr2$, Len(MTEFStr2$), 0)
        If stat <> 0 Then
            MsgBox "2nd MTXFormAddVarSub returned: " + Str(stat)
            Exit Sub
        End If
        'third substitution
        stat = MTXFormAddVarSub( _
            mtxfmSUBST_ONE, _
            mtxfmVAR_SUB_PLAIN_TEXT, "<v3>", 0, _
            mtxfmVAR_SUB_MTEF_TEXT, MTEFStr3$, Len(MTEFStr3$), 0)
        If stat <> 0 Then
            MsgBox "3rd MTXFormAddVarSub returned: " + Str(stat)
            Exit Sub
        End If
        'do the substitution
        stat = TransformGraphicEquation
        If stat <> 0 Then
            MsgBox "TransformGraphicEquation returned: " + Str(stat)
            Exit Sub
        End If
        MTTermAPI
        'Paste new equation
        Selection.Collapse Direction:=wdCollapseEnd
        Selection.PasteSpecial Placement:=wdInLine
    End Sub

  • How to digitally sign a doc??

    Hi ,
    After generating digital signature is it appended to the doc?? If so then, how images and audio data are signed?? Can they be signed the same way as other text docs are signed??
    Jahnvi

    It depends on what "transport" mechanism you plan on using. If you choose to use PKIX standards, then a PKCS7 object gives you the structure for transporting the contents along with its signature. If you prefer to use "modern" web standards, then the W3C's XMLSignature standard gives you the structure you need for transporting content and signature. (I prefer XMLSignature for new applications).
    Yes, any object - text or binary - can be digitally signed and transported using either of these standards.

  • Acrobat XI Pro - How can I have clients sign pdf docs with stylus on my Tablet PC WITHOUT having to subscribe to signature services like EchoSign?

    I was told there was a "Setting" in XI Pro that would allow me to have clients sign pdf documents with a stylus on my Tablet PC (I have a MS Surface Pro 2), without having to sign up for EchoSign or any other electronic signature service. Is that correct? If so, what is the setup or settings?

    There are several third party plugins for Adobe Reader and Acrobat on the market, which allow to use the display of a tablet PCs as a capture device for handwritten signatures. Some of those plugins are enabling also the combination with real digital signatures without the need of any previous registration of the signatory.
    You can check for :
    SignDoc   by SoftPro
    SigPDF    by Signature Perfect

  • Need to reset password for digital ID to sign doc in Adobe Reader on thinkpad using Windows

    Hi,
    I need to reset (or find) my password for the self-signed digital ID I created in order to sign a doc in Adobe Reader using Adobe Echosign software. I'm currently on my laptop (thinkpad) which uses Windows. How do I do this?
    Thanks

    Unfortunately, only you can remember your password for a self-signed digital ID.  No one can reset or find it for you. 

  • How can I sign a password protected PDF doc?

    I am trying to sign a password protected document, downloaded from a government site. I can use all button and drop-down menus and also validate the document but then, when I click on the line where I have to sign, there is only the cursor flashing and I cannot sign it. It seems that the document was created with version 8.1.7. and I have 11.0.02. Does anyone know what I have to do to sign this doc?

    Is the thing you're clicking on a text field or a digital signature field?

  • Can't Sign Adobe PDF doc

    HI,
    Can someone help on signing adobe doc?
    I have adobe pdf form, with a signature field, but when i clicked on it, there are 2 options : sign using
    - My Existing Digital Id form
    - A new digital id I want to create now
    Because I dont have digital id yet, so i should choose the second option. BUt its grayed out? Anybody know? I find no way to create digital ID although I have Adobe Acrobat X Pro.
    Thank you

    Let me try something and report back
    Okay I created a Form with Name address city state zip phone fax and cell and signature, in Word (can use any Word Proccessor)
    Make sure Tabs have leaders and correctly spaced.
    go to print menu and choose adobePDF.
    save blank form.
    Open in acrobat: Go to Create Form or online Form.
    Have the forms creator create the form if all the items didn't create, manually add what is needed.
    Finish Editing for and close Form Editor.
    Now click in signature field and it will turn an awful color yellow-greenish brown. then you will see a box pop up put in your password click okay. If you typed it right you'll see your digial signature.
    Be sure to fill in items  and get them right before signing. because once you get out of editting and sign You can't make corrections or rather if you refill out or change anything it puts up a note say although signed  content has been altered.
    So you don't necessarily have to use on a Form you can simply put a signature panel in a regular PDF and then sign.
    see this: http://www.screencast.com/t/iVXJunIihiJA
    Message was edited by: Phillip Jones added content

  • In Adobe Reader (v11.0.09) locked/froze after signing and can't access my full fill-in answers to edit

    In Adobe Reader (v11.0.09), after answer application questions in scrolling window panes within a .pdf doc, I signed the doc, and it froze/locked, so I cannot edit or view the full answers anymore.  On an ugent deadline, so any thoughts on how to re-access my full answers within the scrolling window panes in a .pdf doc? thanks!

    Hi Paix,
    It is normal once you sign a document it considered to be a complete of yours. So no one shouldnt make any change after you signed the documents gets locked.
    You can get idea from this doc: https://acrobatusers.com/tutorials/how-to-lock-form-fields-using-a-digital-signature
    Regards,
    Ajlan Huda.

  • Signing PDF breaks the Intelliegence of a PDF

    I use Cadence OrCAD software which has the ability to create Intelligent PDF's of the circuit diagrams. Once created you can click on parts in the ciruit to get their relevant properties, you can click and descend hierarchies (much like using the actual OrCAD software). This is a controlled document so I would like to be able to sign this digitally which I can do as part of the Adobe Sign function. I place a copy of my signature and re-save the PDF. As soon as that happens I lose the intelligence in the PDF. I cannot desend hierarchies or get the properties of the parts. It appears there is something in the signature that is causing tis issue. Anybody got any suggestions as to how I can still sign my PDF and keep the Intelligence ? I have a working and a nonworking PDF but don't appear to be able to upload them.... Thanks in advance

    I'm using the function Sign then Place Signature from the Adobe Reader menu. The end result is that instead of printing the doc I can place a signature in the Checked or Approved Box of the drawing blank and save it in the PDF. As long as my signature is shown on the drawing blank and I can still keep my intelligence I don't care about "offically" signing the doc. The PDF is record that I have signed it. Adobe Reader offers me the Place Signature but it appears the different methods for placing a signature might / might not break the Intelligence of the PDF. Seems inconsistent to me but I'm open to suggestions as to do this in a better / different method.

  • Stringing a number of Digitally signed documents together

    Hi, I am currently running a project to convert my companies hard copy documentation packs to fully electronic, digitally signed documents.
    The final document will be a string of several digitally signed documents combined together in one final document for presentation to our customers. I am currently having diffuculty retaining the original digital signature of the documents when they are combined.
    I am using Acrobat Pro XI and have tried Certifying and just digitally signing but the original signatures appear to be deleted in the final document.
    The real world application will be the initial company signing their docs for authentication and email it to their customer, this company will add docs to this first file and sign it then forward this on to their customer, etc until it reaches me when the completed document file will be locked.
    Can anyone point me in the right direction?

    Thanks,   I finally worked it out. However, it's not an ideal format for how I originally visualised the outcome.    From what I have read on the Adobe site and the discussion threads it doesn't appear that you can combine several digitally signed documents together to make a single document pack.
    I had hoped that there was some way to have, say, 3 documents digitally signed by different people then merge these together into a single document but still retaining their individual signature details. This final document could then be certified by myself as the final recipient.
    This final document pack could then be added to the final customers portfolio with many other documents.
    The only way i can see to do this at the moment is to "sign" the documents with an annotation (ie. a JPG or PDF stamp), or use the built in stamps in COMMENTS, combine these into a single document and then digitally sign / certify this completed pack.
    Has any one encountered this situation before and managed to solve it?
    I understand that, because a change has been made to the original document this nullifies the orignal digital signature. I could live with this as long as I could retain the signatories details on that document.

  • Reading Signed Document

    Hi all,
    I download a signed file to local with extension .p7s.
    I've signed the document in server with FM SSF_KRN_SIGN_BY_AS.
    If I open the downloaded file in my pc, I can see the Certicate which has signed the doc, but if I open the certificate there is a warning saying that Windows hasn't enough information to verify the Certificate...
    If I sign the doc with my local app or using FM SSFS_CALL_CONTROL, I can see in downloaded file my Certificate, and a tree with the CAs that certificates my Certificate...
    Why in the first way can't see that CAs tree? How can I see it to get the sign be ok?
    Thanks in advance.
    Regards.
    Urtzi.

    Well, when using SSFS_CALL_CONTROL the digital signature operation is perform on the frontend (see ABAP program SSFSDEMO for an example).
    When using SSF_KRN_SIGN_BY_AS, however, the digital signature operation takes place at the application server (AS).
    When performing the digital signature operation on the frontend you are using one of the certificates (with corresponding private key) which are present in the keystore at the frontend PC. Microsoft Internet Explorer and the Microsoft Windows operating system are using the very same keystore - therefore it's not surprising that you'll be able to display the complete trust chain / tree (if the chain would be incomplete you would not have able to perform the digital signature operation).
    Most likely the certificate used at the backend is self-signed. In that case it's not surprising that you fail to validate the certificate at the frontend. The situation would be different if the certificate would have been issued by a CA whose root certificate is present in the keystore of the frontend PC.

  • How do you open adobe reader docs from a cd-rom

    How do I open Adobe PDF doc from a cd-rom

    Yes, I recently bought a book with a cd-rom with it that has documents on the cd that I can copy and use for my students and use as assessments. When I load the cd-rom, it opens up in adobe acrobat reader window and it has on the upper right hand side TOOLS COMMENT SIGN . The doc's are highlighted in blue but I cant click on them because it either gives me this selection only; Seltct Tool, Marquee Zoom, Hand Tool. It will not allow me to just left click and print doc. Top menu has File, Edit, View, Window, Help and the usual zoom 100% or 150% . and the print icon is visable but it will prunt the the page not the specific document I want. It has convert files to PDF on line and convert files to Microsoft word online, sign in doc, So what is it that need to open the documents and just print?

  • How Do I Digitally Sign Daily Progress Notes on Same .pdf?

    Friday, August 7, 2009
    3:20 PM  -0800
    Hello Everyone.
    I'm a physician, and I am in the position of writing notes that may be introduced into evidence later. I really would like to avoid going to court & litigation, but it seems that I may be headed in that area. I usually keep progress notes of any kind; on house projects, vacations, etc. on one MS Word file and simply update the next entry with a new date and time header like you see at the top of this entry.
    For the first time, I find that I must apply a digital signature and secure the notes and show that they were written on the date and at the time specified. And, most of all, I must show proof that the notes were not altered later.
    There are many vendors, I understand, who provide digital signatures for Adobe Acrobat Pro v9 for Intel Macintosh. Who is the best?
    Also, is it possible to keep a running journal and sign each day's entry? Or does each day require a separate document? Will I end up with 20-30 separate signed .pdf documents at the end of this?
    Thanks to all in advance.
    -jpk

    jpkmd85 wrote:
    What is this type of signature called?  I understand it's called a  "class 3" type certificate.
    It's not a type of "signature", but a class of digital ID. A "signature" is really shorthand for "electronic digital signature". What a signature really is a pair of cryptographic operations over a given set of data, and in this case the data is just a bunch of bytes in a computer file. One of those operation I'm referring to requires the use of a digital ID, or in the case of creating the signature, specifically the use of the private key portion of a digital ID. The subsequent validation of the signature requires the public key portion of the digital ID. When these keys are generated, they have a symbiotic relationship. By that I mean what one key locks,  only the its corresponding other key can unlock. When you lock something with the private key (which is how a signature gets created), only the corresponding public key can unlock the encrypted data (this is the basis of signature verification). Conversely, if you lock something with the public key (this is the basis of certificate security in Acrobat) only the corresponding private key can unlock it. In the computer world, you can sign any blob of electronic data and it's always the same underlying principle. You can sign e-mail, you can sign Word docs and lots of other things (but most importantly, PDF files because that's what keeps me employed ).
    Back to the digital IDs. A digital ID is really comprised of three things. The public key, the corresponding private key, and a set of certificate attributes and extensions that are for the most part plain text. These attributes and extensions that I speak about are the data that defines who the digital ID was issued to (aka the Subject), who issued the digital ID (the Issuer), the validity period, key usage, constraints, serial number, etc. The Certificate Authority (CA) is a company or governmental organization that operates under a set of legal guidelines (lawyers salivate here). There is no electronic magic here, just a bunch of documents. When they issue a digital ID they do it under the auspices of a Certificate Policy (CP) which in turn is enforced by a document called the Certificate Practice Statement (CPS). The CPS details the process by which they (the CA) may issue a digital ID and the rights and responsibilities that the recipient must adhere to. For instance, if you lose the private key (e.g. it was on a laptop that got stolen) you would be obligated to report this to the CA so they could revoke the digital ID. One of the things the CP defines is the assurance level that the CA will go through prior to issuing a digital ID. A high assurance level would require that they (the CA) get proof of ID before issuing you a digital ID, and that you would also agree to the terms of the contract. A low assurance level CA will issue a digital ID without requiring proof of ID. Another way that high assurance CAs work is they issue the digital ID on hardware device (a USB token or a smart card). This is know as two factor identification because it requires something you have (the device) and something you know (the PIN or password).
    They key here (no pun intended) is to check with the CA and find out which program they offer that guarentees non-repudiation. If the files will need to be routinly opened on computers other than yours  I would recomend getting a digital ID that chains to the Adobe Root CA, but if the file is going to live on your machine unless extrodinary circumstances arise you could get by with any high assurance digital ID.
    Steve

  • Auto-Save when I sign the document

    Hi Experts,
    I have requirement is like when user signed the form, it will ask local save. But my requirement is when user signed the doc it will automatically save the file in given location. is it possible? Please help me out on this ASAP!
    Regards,
    Srujan

    that local save dialog is thrown by OS - because by signing one would be changing the document -- OS asks whether to replace existing file or save it as a new file
    Do you want to get rid of this message?

  • Installation Issue with Adobe Reader 11.0.03.

    Hello,
    I am having issue getting Adobe Reader XI to install onto a machine and needing help resolving it. The machine itself meet and exceed the requirement for the installation. There was a previous version of it installed, but was remove via Group Policy and now it is being deploy via SCCM 2012. So far out of 100+ machines all have successful installed adobe reader XI through the new deployment, except one. Incase you're wondering what the installation logs look like I have copy and paste it below:
    === Verbose logging started: 6/5/2013  17:09:44  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\Windows\system32\msiexec.exe ===
    MSI (c) (C4:E0) [17:09:44:988]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    MSI (c) (C4:E0) [17:09:44:988]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    MSI (c) (C4:F0) [17:09:44:994]: Resetting cached policy values
    MSI (c) (C4:F0) [17:09:44:994]: Machine policy value 'Debug' is 0
    MSI (c) (C4:F0) [17:09:44:994]: ******* RunEngine:
               ******* Product: C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (C4:F0) [17:09:44:995]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (C4:F0) [17:09:44:995]: Grabbed execution mutex.
    MSI (c) (C4:F0) [17:09:45:042]: Cloaking enabled.
    MSI (c) (C4:F0) [17:09:45:042]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (C4:F0) [17:09:45:045]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (D8:90) [17:09:45:050]: Running installation inside multi-package transaction C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi
    MSI (s) (D8:90) [17:09:45:050]: Grabbed execution mutex.
    MSI (s) (D8:AC) [17:09:45:052]: Resetting cached policy values
    MSI (s) (D8:AC) [17:09:45:052]: Machine policy value 'Debug' is 0
    MSI (s) (D8:AC) [17:09:45:052]: ******* RunEngine:
               ******* Product: C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (D8:AC) [17:09:45:066]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (D8:AC) [17:09:45:123]: Machine policy value 'LimitSystemRestoreCheckpointing' is 0
    MSI (s) (D8:AC) [17:09:45:123]: Note: 1: 1715 2: Adobe Reader XI (11.0.03)
    MSI (s) (D8:AC) [17:09:45:123]: Calling SRSetRestorePoint API. dwRestorePtType: 0, dwEventType: 102, llSequenceNumber: 0, szDescription: "Installed Adobe Reader XI (11.0.03).".
    MSI (s) (D8:AC) [17:09:50:827]: The call to SRSetRestorePoint API succeeded. Returned status: 0, llSequenceNumber: 230.
    MSI (s) (D8:AC) [17:09:50:889]: File will have security applied from OpCode.
    MSI (s) (D8:AC) [17:09:51:049]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi' against software restriction policy
    MSI (s) (D8:AC) [17:09:51:049]: Note: 1: 2262 2:  DigitalSignature 3: -2147287038
    MSI (s) (D8:AC) [17:09:51:049]: SOFTWARE RESTRICTION POLICY: C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi is not digitally signed
    MSI (s) (D8:AC) [17:09:51:052]: SOFTWARE RESTRICTION POLICY: C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (D8:AC) [17:09:51:052]: End dialog not enabled
    MSI (s) (D8:AC) [17:09:51:052]: Original package ==> C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi
    MSI (s) (D8:AC) [17:09:51:052]: Package we're running from ==> C:\Windows\Installer\2a70f78.msi
    MSI (s) (D8:AC) [17:09:51:059]: APPCOMPAT: Compatibility mode property overrides found.
    MSI (s) (D8:AC) [17:09:51:059]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AC76BA86-7AD7-1033-7B44-AB0000000001}'.
    MSI (s) (D8:AC) [17:09:51:059]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (D8:AC) [17:09:51:065]: MSCOREE not loaded loading copy from system32
    MSI (s) (D8:AC) [17:09:51:069]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (D8:AC) [17:09:51:069]: User policy value 'TransformsAtSource' is 0
    MSI (s) (D8:AC) [17:09:51:070]: Machine policy value 'DisablePatch' is 0
    MSI (s) (D8:AC) [17:09:51:070]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (D8:AC) [17:09:51:070]: Machine policy value 'DisableMsi' is 0
    MSI (s) (D8:AC) [17:09:51:070]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (D8:AC) [17:09:51:071]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (D8:AC) [17:09:51:071]: Running product '{AC76BA86-7AD7-1033-7B44-AB0000000001}' with user privileges: It's not assigned.
    MSI (s) (D8:AC) [17:09:51:071]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (D8:AC) [17:09:51:071]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (D8:AC) [17:09:51:071]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AC76BA86-7AD7-1033-7B44-AB0000000001}'.
    MSI (s) (D8:AC) [17:09:51:071]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (D8:AC) [17:09:51:071]: Transforms are not secure.
    MSI (s) (D8:AC) [17:09:51:072]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'D:\ReaderXI.log'.
    MSI (s) (D8:AC) [17:09:51:072]: Command Line: CURRENTDIRECTORY=C:\Users\lavdang CLIENTUILEVEL=2 CLIENTPROCESSID=7364
    MSI (s) (D8:AC) [17:09:51:072]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{8017784A-94A5-40AD-AE48-D46040E2A00C}'.
    MSI (s) (D8:AC) [17:09:51:072]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (D8:AC) [17:09:51:072]: Product Code from property table before transforms: '{AC76BA86-7AD7-1033-7B44-AB0000000001}'
    MSI (s) (D8:AC) [17:09:51:072]: Product Code from property table after transforms:  '{AC76BA86-7AD7-1033-7B44-AB0000000001}'
    MSI (s) (D8:AC) [17:09:51:072]: Product not registered: beginning first-time install
    MSI (s) (D8:AC) [17:09:51:072]: Product {AC76BA86-7AD7-1033-7B44-AB0000000001} is not managed.
    MSI (s) (D8:AC) [17:09:51:072]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (D8:AC) [17:09:51:072]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (D8:AC) [17:09:51:072]: MSI_LUA: Elevation required to install product, will prompt for credentials
    MSI (s) (D8:AC) [17:09:52:894]: MSI_LUA: Credential Request return = 0x0
    MSI (s) (D8:AC) [17:09:52:894]: MSI_LUA: Elevated credential consent provided. Install will run elevated
    MSI (s) (D8:AC) [17:09:52:894]: Note: 1: 2205 2:  3: MsiPackageCertificate
    MSI (s) (D8:AC) [17:09:52:894]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (D8:AC) [17:09:52:894]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (D8:AC) [17:09:52:894]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (D8:AC) [17:09:52:894]: Adding new sources is allowed.
    MSI (s) (D8:AC) [17:09:52:895]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (D8:AC) [17:09:52:895]: Package name extracted from package path: 'AdbeRdr11000_en_US.msi'
    MSI (s) (D8:AC) [17:09:52:895]: Package to be registered: 'AdbeRdr11000_en_US.msi'
    MSI (s) (D8:AC) [17:09:52:900]: PROPERTY CHANGE: Modifying ADMIN_INSTALL property. Its current value is 'NO'. Its new value: 'YES'.
    MSI (s) (D8:AC) [17:09:52:900]: PROPERTY CHANGE: Adding IsAdminPackage property. Its value is '1'.
    MSI (s) (D8:AC) [17:09:52:900]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (D8:AC) [17:09:52:900]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (D8:AC) [17:09:52:900]: Product installation will be elevated because user provided elevated credentials and product is being installed per-machine.
    MSI (s) (D8:AC) [17:09:52:900]: Running product '{AC76BA86-7AD7-1033-7B44-AB0000000001}' with elevated privileges: Product is assigned.
    MSI (s) (D8:AC) [17:09:52:900]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\lavdang'.
    MSI (s) (D8:AC) [17:09:52:900]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '2'.
    MSI (s) (D8:AC) [17:09:52:900]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '7364'.
    MSI (s) (D8:AC) [17:09:52:900]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (D8:AC) [17:09:52:900]: RESTART MANAGER: Disabled by MSIRESTARTMANAGERCONTROL property; Windows Installer will use the built-in FilesInUse functionality.
    MSI (s) (D8:AC) [17:09:52:900]: PROPERTY CHANGE: Adding MsiSystemRebootPending property. Its value is '1'.
    MSI (s) (D8:AC) [17:09:52:900]: TRANSFORMS property is now:
    MSI (s) (D8:AC) [17:09:52:900]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '300'.
    MSI (s) (D8:AC) [17:09:52:903]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming
    MSI (s) (D8:AC) [17:09:52:905]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\Favorites
    MSI (s) (D8:AC) [17:09:52:907]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (D8:AC) [17:09:52:909]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\Documents
    MSI (s) (D8:AC) [17:09:52:911]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (D8:AC) [17:09:52:913]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (D8:AC) [17:09:52:914]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (D8:AC) [17:09:52:915]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (D8:AC) [17:09:52:915]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (D8:AC) [17:09:52:916]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Local
    MSI (s) (D8:AC) [17:09:52:917]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\Pictures
    MSI (s) (D8:AC) [17:09:52:919]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (D8:AC) [17:09:52:920]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (D8:AC) [17:09:52:921]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (D8:AC) [17:09:52:922]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (D8:AC) [17:09:52:923]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (D8:AC) [17:09:52:926]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (D8:AC) [17:09:52:927]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (D8:AC) [17:09:52:928]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (D8:AC) [17:09:52:929]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (D8:AC) [17:09:52:930]: SHELL32::SHGetFolderPath returned: C:\Users\lavdang\Desktop
    MSI (s) (D8:AC) [17:09:52:931]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (D8:AC) [17:09:52:932]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (D8:AC) [17:09:52:932]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (D8:AC) [17:09:52:935]: MSI_LUA: Setting AdminUser property to 1 because this is the client or the user has already permitted elevation
    MSI (s) (D8:AC) [17:09:52:935]: PROPERTY CHANGE: Adding AdminUser property. Its value is '1'.
    MSI (s) (D8:AC) [17:09:52:935]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
    MSI (s) (D8:AC) [17:09:52:935]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
    MSI (s) (D8:AC) [17:09:52:935]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (D8:AC) [17:09:52:935]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (D8:AC) [17:09:52:935]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'SPEC Services, Inc.'.
    MSI (s) (D8:AC) [17:09:52:935]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (D8:AC) [17:09:52:935]: PROPERTY CHANGE: Adding COMPANYNAME property. Its value is 'SPEC Services, Inc.'.
    MSI (s) (D8:AC) [17:09:52:935]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\2a70f78.msi'.
    MSI (s) (D8:AC) [17:09:52:935]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi'.
    MSI (s) (D8:AC) [17:09:52:935]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (s) (D8:AC) [17:09:52:935]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (D8:AC) [17:09:52:935]: Machine policy value 'DisableRollback' is 0
    MSI (s) (D8:AC) [17:09:52:935]: User policy value 'DisableRollback' is 0
    MSI (s) (D8:AC) [17:09:52:935]: PROPERTY CHANGE: Adding UILevel property. Its value is '3'.
    === Logging started: 6/5/2013  17:09:52 ===
    MSI (s) (D8:AC) [17:09:52:936]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (D8:AC) [17:09:52:936]: Doing action: INSTALL
    Action start 17:09:52: INSTALL.
    MSI (s) (D8:AC) [17:09:52:937]: Running ExecuteSequence
    MSI (s) (D8:AC) [17:09:52:937]: Doing action: SystemFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54
    MSI (s) (D8:AC) [17:09:52:937]: PROPERTY CHANGE: Adding SystemFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 property. Its value is 'C:\Windows\SysWOW64\'.
    Action start 17:09:52: SystemFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54.
    MSI (s) (D8:AC) [17:09:52:937]: Doing action: WindowsFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D
    Action ended 17:09:52: SystemFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54. Return value 1.
    MSI (s) (D8:AC) [17:09:52:937]: PROPERTY CHANGE: Adding WindowsFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D property. Its value is 'C:\Windows\'.
    Action start 17:09:52: WindowsFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D.
    MSI (s) (D8:AC) [17:09:52:937]: Doing action: SystemFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D
    Action ended 17:09:52: WindowsFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D. Return value 1.
    MSI (s) (D8:AC) [17:09:52:938]: PROPERTY CHANGE: Adding SystemFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D property. Its value is 'C:\Windows\SysWOW64\'.
    Action start 17:09:52: SystemFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D.
    MSI (s) (D8:AC) [17:09:52:938]: Doing action: ISSetupFilesExtract
    Action ended 17:09:52: SystemFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D. Return value 1.
    MSI (s) (D8:70) [17:09:54:074]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI17B2.tmp, Entrypoint: SFStartupEx
    MSI (s) (D8:E8) [17:09:54:075]: Generating random cookie.
    MSI (s) (D8:E8) [17:09:54:077]: Created Custom Action Server with PID 8648 (0x21C8).
    MSI (s) (D8:A8) [17:09:54:108]: Running as a service.
    MSI (s) (D8:A8) [17:09:54:109]: Hello, I'm your 32bit Impersonated custom action server.
    Action start 17:09:52: ISSetupFilesExtract.
    1: Starting to extract setup files
    1: Getting SUPPORTDIR property :  
    1: Extracting SetupFiles to:  C:\Users\lavdang\AppData\Local\Temp\{AC76BA86-7AD7-1033-7B44-AB0000000001}
    1: Getting ISSetupFile table view
    1: Executing ISSetupFile table view
    1: Extracting Setup File:
    1: C:\Users\lavdang\AppData\Local\Temp\{AC76BA86-7AD7-1033-7B44-AB0000000001}\FixTransforms. exe
    MSI (s) (D8!64) [17:09:54:183]: PROPERTY CHANGE: Adding SUPPORTDIR property. Its value is 'C:\Users\lavdang\AppData\Local\Temp\{AC76BA86-7AD7-1033-7B44-AB0000000001}'.
    MSI (s) (D8!64) [17:09:54:183]: PROPERTY CHANGE: Adding ISSETUPFILESCOMPLETED property. Its value is 'Completed'.
    1: Setting SUPPORTDIR property to:  C:\Users\lavdang\AppData\Local\Temp\{AC76BA86-7AD7-1033-7B44-AB0000000001}
    1: Setting ISSETUPFILESCOMPLETED property
    MSI (s) (D8:AC) [17:09:54:184]: Doing action: AppSearch
    Action ended 17:09:54: ISSetupFilesExtract. Return value 1.
    Action start 17:09:54: AppSearch.
    MSI (s) (D8:AC) [17:09:54:184]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Acrobat.exe 3: 2
    MSI (s) (D8:AC) [17:09:54:186]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Adobe\Acrobat Reader\11.0\Installer 3: 2
    MSI (s) (D8:AC) [17:09:54:186]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Adobe\Acrobat Reader\6.0\InstallPath 3: 2
    MSI (s) (D8:AC) [17:09:54:186]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\Software\Adobe\Acrobat Reader\11.0\Installer\Optimization 3: 2
    MSI (s) (D8:AC) [17:09:54:186]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\Software\Adobe\Repair\Acrobat Reader 3: 2
    MSI (s) (D8:AC) [17:09:54:186]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\Software\Adobe\Acrobat Reader\11.0\Installer\Optimization 3: 2
    MSI (s) (D8:AC) [17:09:54:187]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Adobe\Acrobat Reader\7.0\InstallPath 3: 2
    MSI (s) (D8:AC) [17:09:54:187]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Adobe\Adobe Acrobat\11.0\InstallPath 3: 2
    MSI (s) (D8:AC) [17:09:54:187]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Adobe\Acrobat Reader\8.0\Installer 3: 2
    MSI (s) (D8:AC) [17:09:54:187]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\AcroRd32.exe 3: 2
    MSI (s) (D8:AC) [17:09:54:187]: Doing action: SetOSSpecificProperties
    Action ended 17:09:54: AppSearch. Return value 1.
    MSI (s) (D8:6C) [17:09:54:212]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI1CA3.tmp, Entrypoint: SetOSSpecificProperties
    MSI (s) (D8!9C) [17:09:54:227]: PROPERTY CHANGE: Adding WindowsSystemString property. Its value is '(Windows Vista 64-bit)'.
    Action start 17:09:54: SetOSSpecificProperties.
    MSI (s) (D8:AC) [17:09:54:228]: Doing action: LaunchConditions
    Action ended 17:09:54: SetOSSpecificProperties. Return value 1.
    Action start 17:09:54: LaunchConditions.
    MSI (s) (D8:AC) [17:09:55:643]: Product: Adobe Reader XI (11.0.03) -- Adobe Reader XI (11.0.03) requires Internet Explorer 7.0 or greater.  Please visit www.microsoft.com to upgrade Internet Explorer.
    MSI (c) (C4:E0) [17:09:54:230]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    Adobe Reader XI (11.0.03) requires Internet Explorer 7.0 or greater.  Please visit www.microsoft.com to upgrade Internet Explorer.
    Action ended 17:09:55: LaunchConditions. Return value 3.
    Action ended 17:09:55: INSTALL. Return value 3.
    Property(S): Text = 0
    Property(S): DiskPrompt = [1]
    Property(S): Registration = No
    Property(S): UpgradeCode = {A6EADE66-0000-0000-484E-7E8A45000000}
    Property(S): WindowsSystemString = (Windows Vista 64-bit)
    Property(S): ISSETUPFILESCOMPLETED = Completed
    Property(S): VersionNT = 601
    Property(S): ProgramFilesFolder = C:\Program Files (x86)\
    Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
    Property(S): CommonAppDataFolder = C:\ProgramData\
    Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
    Property(S): AppDataFolder = C:\Users\lavdang\AppData\Roaming\
    Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
    Property(S): DesktopFolder = C:\Users\Public\Desktop\
    Property(S): FavoritesFolder = C:\Users\lavdang\Favorites\
    Property(S): FontsFolder = C:\Windows\Fonts\
    Property(S): LocalAppDataFolder = C:\Users\lavdang\AppData\Local\
    Property(S): MyPicturesFolder = C:\Users\lavdang\Pictures\
    Property(S): PersonalFolder = C:\Users\lavdang\Documents\
    Property(S): ProgramFiles64Folder = C:\Program Files\
    Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
    Property(S): SendToFolder = C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\SendTo\
    Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
    Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
    Property(S): System64Folder = C:\Windows\system32\
    Property(S): SystemFolder = C:\Windows\SysWOW64\
    Property(S): TempFolder = C:\Users\lavdang\AppData\Local\Temp\
    Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
    Property(S): WindowsFolder = C:\Windows\
    Property(S): WindowsVolume = C:\
    Property(S): SUPPORTDIR = C:\Users\lavdang\AppData\Local\Temp\{AC76BA86-7AD7-1033-7B44-AB0000000001}
    Property(S): ACTION = INSTALL
    Property(S): VersionNT64 = 601
    Property(S): UILevel = 3
    Property(S): OriginalDatabase = C:\Windows\ccmcache\2p\AdbeRdr11000_en_US.msi
    Property(S): DATABASE = C:\Windows\Installer\2a70f78.msi
    Property(S): COMPANYNAME = SPEC Services, Inc.
    Property(S): USERNAME = SPEC Services, Inc.
    Property(S): MsiRunningElevated = 1
    Property(S): AdminUser = 1
    Property(S): RedirectedDllSupport = 2
    Property(S): WindowsFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D = C:\Windows\
    Property(S): SystemFolder_x86_VC.AFA96EB4_FA9F_335C_A7CB_36079407553D = C:\Windows\SysWOW64\
    Property(S): ALLUSERS = 1
    Property(S): DirectoryTable100_x86.AFA96EB4_FA9F_335C_A7CB_36079407553D = DirectoryTable
    Property(S): SystemFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\Windows\SysWOW64\
    Property(S): Dummy_Microsoft_VC90_CRT_x86.0138F525_6C8A_333F_A105_14AE030B9A54 = 1
    Property(S): Dummy_policy_9_0_Microsoft_VC90_CRT_x86.52105B6B_A3EF_3A90_882A_947B287C203A = 1
    Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
    Property(S): MsiNetAssemblySupport = 4.0.30319.1
    Property(S): Date = 6/5/2013
    Property(S): Time = 17:09:55
    Property(S): TTCSupport = 1
    Property(S): ColorBits = 32
    Property(S): TextInternalLeading = 3
    Property(S): TextHeight = 16
    Property(S): BorderSide = 1
    Property(S): BorderTop = 1
    Property(S): CaptionHeight = 19
    Property(S): ScreenY = 768
    Property(S): ScreenX = 1024
    Property(S): SystemLanguageID = 1033
    Property(S): ComputerName = SP8430
    Property(S): AS_REPAIR_VERSION_LIST = A
    Property(S): UserLanguageID = 1033
    Property(S): ProductCode = {AC76BA86-7AD7-1033-7B44-AB0000000001}
    Property(S): ApplicationUsers = AllUsers
    Property(S): AgreeToLicense = No
    Property(S): _IsMaintenance = Reinstall
    Property(S): SetupType = Typical
    Property(S): _IsSetupTypeMin = Typical
    Property(S): ARPCONTACT = Customer Support
    Property(S): ARPHELPLINK = http://www.adobe.com/support/main.html
    Property(S): ARPREADME = Readme.htm
    Property(S): ARPURLINFOABOUT = http://www.adobe.com
    Property(S): ARPURLUPDATEINFO = http://www.adobe.com/products/acrobat/readstep.html
    Property(S): DefaultUIFont = Tahoma8
    Property(S): ErrorDialog = SetupError
    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): Manufacturer = Adobe Systems Incorporated
    Property(S): PIDTemplate = 12345<###-%%%%%%%>@@@@@
    Property(S): ProductID = none
    Property(S): ProductLanguage = 1033
    Property(S): ProductName = Adobe Reader XI (11.0.03)
    Property(S): ProductVersion = 11.0.03
    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): TRACKINGKEY = Software\Adobe\Acrobat Reader\7.0
    Property(S): ARPPRODUCTICON = SC_Reader.ico
    Property(S): Cancel = 0
    Property(S): RadioGroup = 0
    Property(S): TypicalText = 0
    Property(S): ARPCOMMENTS =   
    Property(S): ERROR_MIN_OVER_BIG = Setup has detected that you already have a more functional product installed.  Setup will now terminate.
    Property(S): SecureCustomProperties = DEFAULT_VERB;ACTIONPROPERTY;ELEMENTS;RDRMIN;RDRBIG;RDRBIG_8X;RDRBIG_9X;RDRBIG_10X;UT_FRB; UT_FRS;UT_AT;UT_AP1;UT_AP2;UT_AS1;UT_AS2;UT_A3D;UT_6X;UT_7X;UT_MM61;UT_MM62;UT_MM63;UT_EB6 1;UT_EB62;UT_EB63;AS_OPTIMIZE_ENABLED;ACROBAT_APP_PATH;AS_HKCR_EXE;PDFSHELL_LOCALSERVER_CO MMAND;PDF_DEFAULTICON;PDF_PREVIEW_HANDERLER_DLL;PDF_PREVIEW_HANDERLER_HELPDIR;DISABLE_PDFO WNERSHIP_RESTORE;PDF_INPROCSERVER_VIEWERPS;READER_PATH;IS_CURRENT_PDFOWNER;SUPPRESSLANGSEL ECTION;MIN_SYSTEM;ACROBAT_11_INSTALLED;AS_INSTALLDIR;ARM_COLLECT;BLOCK_APP_TIMEOUT;BLOCK_E NTRYPOINT_LOGGING;UPDATE_MODE;UPDATE_UI_MODE;PDX_DEFAULT_PROGID;DEFAULT_PROGID;OWNERSHIP_S TATE;PDF_INTEGRATION;ENABLE_OPTIMIZATION;DEFAULT_PDF_PROGID;DEFAULT_CURVER_PROGID;PDF_ACRO BROKER_PATH;INSTALLMAJORVERSION;ARMED
    Property(S): BrandName = Adobe Reader XI (11.0.03)
    Property(S): ISVROOT_PORT_NO = 0
    Property(S): UserSID = S-1-5-21-606747145-884357618-1801674531-3921
    Property(S): IsMinIE_Message = requires Internet Explorer 7.0 or greater.  Please visit www.microsoft.com to upgrade Internet Explorer.
    Property(S): ISLANGFLAG = ENU
    Property(S): FilesLabel = 0
    Property(S): DisallowRunFromSource = 1
    Property(S): AppsInUseSilentAbort = A process is running that cannot be shut down by Setup.  Please either close all applications and run Setup again, or restart your computer and run Setup again.
    Property(S): ENABLE_CACHE_FILES = YES
    Property(S): OLE_VERB_OPEN = &Open,0,2
    Property(S): REINSTALLMODE = omus
    Property(S): Elevated = 1
    Property(S): ENABLE_OPTIMIZATION = YES
    Property(S): ERROR_DEFRAG_MSG = Optimizing performance ...
    Property(S): ERROR_DEFRAG_ADTEMPLATE = Completed [1]% of process
    Property(S): ERROR_CANNOT_OPTIMIZE_DISK = NOTE: Installation was successful. However, because your hard drive is fragmented, this application may not be able to launch as quickly as possible. To optimize performance, please defragment your hard drive and then repair this application under Add or Remove Programs in the Control Panel.
    Property(S): EULA_ACCEPT = NO
    Property(S): DISABLE_BROWSER_INTEGRATION = NO
    Property(S): AcroIEHelper_Description = Adobe PDF Reader Link Helper
    Property(S): ADMIN_INSTALL = YES
    Property(S): AdminProperties = ADMIN_INSTALL
    Property(S): REMOVE_PREVIOUS = YES
    Property(S): SYNCHRONIZER = YES
    Property(S): OpenWith = Open with Adobe Reader XI
    Property(S): SetupCacheExport = 
    Property(S): LC_UNSUPPORTED_OS = This application cannot be installed on this operating system. Setup will now terminate. Please refer to the minimum system requirements at http://www.adobe.com/go/reader_system_reqs.
    Property(S): ApplicationList = 0
    Property(S): DEFAULT_ATTACHMENT_WHITELIST = version:1|.ade:3|.adp:3|.app:3|.arc:3|.arj:3|.asp:3|.bas:3|.bat:3|.bz:3|.bz2:3|.cab:3|.ch m:3|.class:3|.cmd:3|.com:3|.command:3|.cpl:3|.crt:3|.csh:3|.desktop:3|.dll:3|.exe:3|.fxp:3 |.gz:3|.hex:3|.hlp:3|.hqx:3|.hta:3|.inf:3|.ini:3|.ins:3|.isp:3|.its:3|.job:3|.js:3|.jse:3| .ksh:3|.lnk:3|.lzh:3|.mad:3|.maf:3|.mag:3|.mam:3|.maq:3|.mar:3|.mas:3|.mat:3|.mau:3|.mav:3 |.maw:3|.mda:3|.mdb:3|.mde:3|.mdt:3|.mdw:3|.mdz:3|.msc:3|.msi:3|.msp:3|.mst:3|.ocx:3|.ops: 3|.pcd:3|.pi:3|.pif:3|.prf:3|.prg:3|.pst:3|.rar:3|.reg:3|.scf:3|.scr:3|.sct:3|.sea:3|.shb: 3|.shs:3|.sit:3|.tar:3|.taz:3|.tgz:3|.tmp:3|.url:3|.vb:3|.vbe:3|.vbs:3|.vsmacros:3|.vss:3| .vst:3|.vsw:3|.webloc:3|.ws:3|.wsc:3|.wsf:3|.wsh:3|.z:3|.zip:3|.zlo:3|.zoo:3|.pdf:2|.fdf:2 |.jar:3|.pkg:3|.tool:3|.term:3
    Property(S): EXEC_MENU_WHITELIST = Close|GeneralInfo|Quit|FirstPage|PrevPage|NextPage|LastPage|ActualSize|FitPage|FitWidth|F itHeight|SinglePage|OneColumn|TwoPages|TwoColumns|ZoomViewIn|ZoomViewOut|ShowHideBookmarks |ShowHideThumbnails|Print|GoToPage|ZoomTo|GeneralPrefs|SaveAs|FullScreenMode|OpenOrganizer |Scan|Web2PDF:OpnURL|AcroSendMail:SendMail|Spelling:Check Spelling|PageSetup|Find|FindSearch|GoBack|GoForward|FitVisible|ShowHideArticles|ShowHideF ileAttachment|ShowHideAnnotManager|ShowHideFields|ShowHideOptCont|ShowHideModelTree|ShowHi deSignatures|InsertPages|ExtractPages|ReplacePages|DeletePages|CropPages|RotatePages|AddFi leAttachment|FindCurrentBookmark|BookmarkShowLocation|GoBackDoc|GoForwardDoc|DocHelpUserGu ide|HelpReader|rolReadPage|HandMenuItem|ZoomDragMenuItem|CollectionPreview|CollectionHome| CollectionDetails|CollectionShowRoot|&Pages|Co&ntent|&Forms|Action &Wizard|Recognize &Text|P&rotection|&Sign && Certify|Doc&ument Processing|Print Pro&duction|Ja&vaScript|&Accessibility|Analy&ze|&Annotations|D&rawing Markups|Revie&w
    Property(S): Browser_Integration = 2
    Property(S): ARPNOREPAIR = 1
    Property(S): ActionTextLabel = 0
    Property(S): CurrentPdfOwner = 0
    Property(S): ReadmeHtml = Readme.htm
    Property(S): OprimizeError2 = 0
    Property(S): KBDOCLINK_ERROR_INVDRIVE = http://kb2.adobe.com/cps/404/kb404946.html
    Property(S): ReaderProcessPopup = 0
    Property(S): BrandNameMajorVer = Adobe Reader XI
    Property(S): DefragResetProgress = No
    Property(S): PROGMSG_IIS_REMOVESITE = Removing web site at port %d
    Property(S): PROGMSG_IIS_CREATEVROOT = Creating IIS virtual directory %s
    Property(S): PROGMSG_IIS_CREATEVROOTS = Creating IIS virtual directories...
    Property(S): PROGMSG_IIS_EXTRACTDONE = Extracted information for IIS virtual directories...
    Property(S): PROGMSG_IIS_REMOVEVROOT = Removing IIS virtual directory %s
    Property(S): PROGMSG_IIS_REMOVEVROOTS = Removing IIS virtual directories...
    Property(S): PROGMSG_IIS_ROLLBACKVROOTS = Rolling back virtual directory and web site changes...
    Property(S): PROGMSG_IIS_EXTRACT = Extracting information for IIS virtual directories...
    Property(S): IS_COMPLUS_PROGRESSTEXT_COST = Costing COM+ application: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_INSTALL = Installing COM+ application: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_UNINSTALL = Uninstalling COM+ application: [1]
    Property(S): IS_SQLSERVER_AUTHENTICATION = 0
    Property(S): IS_SQLSERVER_USERNAME = sa
    Property(S): PDF_INTEGRATION = 1
    Property(S): _5789b66a5ab8e = {AC76BA80-0011-7AD7-0000-000000000000}
    Property(S): AttentionCloseReader = 0
    Property(S): RunTimeProperties = CACHE_DIR;ProductName;OriginalDatabase;REMOVE;WindowsFolder;SetupCacheExport;ALLUSERS;REI NSTALLMODE;PLUG_INS;DefragResetProgress;ALLUSERS_APPDATA_ADOBE;DEFAULT_VERB;IS_CURRENT_PDF OWNER;ACTIVE_X;Installed;READER;ProductCode;UPDATE_MODE;INSTALLMAJORVERSION;VersionNT;Vers ionNT64;SystemFolder;PATCH
    Property(S): ReaderDefaultProgramDesc = is the trusted standard for reliably viewing,  printing, signing and commenting on PDF documents. It's the only PDF viewer that can open and interact with all types of PDF content - including forms and multimedia - and is available across leading desktop and mobile device platforms
    Property(S): DV = 11.0
    Property(S): MSIRESTARTMANAGERCONTROL = Disable
    Property(S): IS_PROGMSG_XML_COSTING = Costing XML files...
    Property(S): IS_PROGMSG_XML_CREATE_FILE = Creating XML file %s...
    Property(S): IS_PROGMSG_XML_FILES = Performing XML file changes...
    Property(S): IS_PROGMSG_XML_REMOVE_FILE = Removing XML file %s...
    Property(S): IS_PROGMSG_XML_ROLLBACK_FILES = Rolling back XML file changes...
    Property(S): IS_PROGMSG_XML_UPDATE_FILE = Updating XML file %s...
    Property(S): PROGMSG_IIS_CREATEAPPPOOLS = Creating application Pools...
    Property(S): PROGMSG_IIS_CREATEAPPPOOL = Creating application pool %s
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSION = Creating web service extension
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSIONS = Creating web service extensions...
    Property(S): PROGMSG_IIS_REMOVEAPPPOOL = Removing application pool
    Property(S): PROGMSG_IIS_REMOVEAPPPOOLS = Removing application pools...
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSION = Removing web service extension
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSIONS = Removing web service extensions...
    Property(S): PROGMSG_IIS_ROLLBACKAPPPOOLS = Rolling back application pools...
    Property(S): PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS = Rolling back web service extensions...
    Property(S): RestartManagerOption = CloseRestart
    Property(S): DEFAULT_VERB = Read
    Property(S): UPDATE_UI_MODE = 3
    Property(S): BLOCK_APP_TIMEOUT = 120
    Property(S): BLOCK_ENTRYPOINT_LOGGING = 0
    Property(S): LC_UNSUPPORTED_OS_2 = Setup will now terminate. Please refer to the minimum system requirements at http://www.adobe.com/go/reader_system_reqs.
    Property(S): LC_UNSUPPORTED_OS_1 = This application cannot be installed on this operating system
    Property(S): AppsInUseUnknownAcrobatApps = Applications that are using Adobe Reader or Adobe Acrobat
    Property(S): EmbdUI = 1
    Property(S): ADOBE_LINK = http://www.adobe.com
    Property(S): _WebLinkChecked = 0
    Property(S): CurrentProduct = 0
    Property(S): DWUSLINK = CEFB870FBECC80BF79AC97C8298C978FD9DCB78FCEDC5098CE8B974F99DBF0F8CEEC50A809AC
    Property(S): LogonUser = Lavdang
    Property(S): PROCESSPATHWITHID = %s with process ID: %d
    Property(S): LANG_LIST = en_US,ca_ES,eu_ES,bg_BG,zh_CN,zh_TW,cs_CZ,da_DK,de_DE,es_ES,et_ET,fr_FR,hr_HR,hu_HU,it_IT ,ja_JP,ko_KR,lt_LT,lv_LV,nl_NL,nb_NO,pl_PL,pt_BR,ro_RO,ru_RU,sk_SK,sl_SI,fi_FI,sv_SE,tr_TR ,uk_UA
    Property(S): PROGMSG_IIS_EXTRACTDONEz = Extracted information for IIS virtual directories...
    Property(S): PROGMSG_IIS_EXTRACTzDONE = Extracted information for IIS virtual directories...
    Property(S): UNKNOWNPROCESSWITHID = Unknown process with process ID: %d
    Property(S): Square = 1
    Property(S): SUPPRESSLANGSELECTION = 1
    Property(S): ISReleaseFlags = ENU,READERBIG
    Property(S): VirtualMemory = 39564
    Property(S): PhysicalMemory = 12278
    Property(S): Intel = 6
    Property(S): Msix64 = 6
    Property(S): Privileged = 1
    Property(S): MsiAMD64 = 6
    Property(S): ShellAdvtSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): GPTSupport = 1
    Property(S): RecentFolder = C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Recent\
    Property(S): PrintHoodFolder = C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
    Property(S): NetHoodFolder = C:\Users\lavdang\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
    Property(S): RemoteAdminTS = 1
    Property(S): MsiNTProductType = 1
    Property(S): ServicePackLevelMinor = 0
    Property(S): ServicePackLevel = 1
    Property(S): WindowsBuild = 7601
    Property(S): VersionMsi = 5.00
    Property(S): MsiSystemRebootPending = 1
    Property(S): VersionDatabase = 300
    Property(S): CLIENTPROCESSID = 7364
    Property(S): CLIENTUILEVEL = 2
    Property(S): CURRENTDIRECTORY = C:\Users\lavdang
    Property(S): IsAdminPackage = 1
    Property(S): PackagecodeChanging = 1
    Property(S): ProductState = -1
    Property(S): PackageCode = {8017784A-94A5-40AD-AE48-D46040E2A00C}
    Property(S): MsiLogFileLocation = D:\ReaderXI.log
    MSI (s) (D8:AC) [17:09:55:668]: Note: 1: 1708
    MSI (s) (D8:AC) [17:09:55:668]: Product: Adobe Reader XI (11.0.03) -- Installation operation failed.
    MSI (s) (D8:AC) [17:09:55:669]: Windows Installer installed the product. Product Name: Adobe Reader XI (11.0.03). Product Version: 11.0.03. Product Language: 1033. Manufacturer: Adobe Systems Incorporated. Installation success or error status: 1603.
    MSI (s) (D8:AC) [17:09:55:671]: Deferring clean up of packages/files, if any exist
    MSI (s) (D8:AC) [17:09:55:671]: MainEngineThread is returning 1603
    MSI (s) (D8:90) [17:09:55:671]: Calling SRSetRestorePoint API. dwRestorePtType: 13, dwEventType: 103, llSequenceNumber: 230, szDescription: "".
    MSI (s) (D8:90) [17:09:55:672]: The call to SRSetRestorePoint API succeeded. Returned status: 0.
    === Logging stopped: 6/5/2013  17:09:55 ===
    MSI (s) (D8:90) [17:09:55:673]: User policy value 'DisableRollback' is 0
    MSI (s) (D8:90) [17:09:55:673]: Machine policy value 'DisableRollback' is 0
    MSI (s) (D8:90) [17:09:55:673]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (D8:90) [17:09:55:673]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (D8:90) [17:09:55:674]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (D8:90) [17:09:55:674]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3: 2
    MSI (s) (D8:90) [17:09:55:674]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3: 2
    MSI (s) (D8:90) [17:09:55:674]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (s) (D8:90) [17:09:55:674]: Restoring environment variables
    MSI (s) (D8:90) [17:09:55:675]: Destroying RemoteAPI object.
    MSI (s) (D8:E8) [17:09:55:675]: Custom Action Manager thread ending.
    MSI (c) (C4:F0) [17:09:55:676]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (C4:F0) [17:09:55:676]: MainEngineThread is returning 1603
    === Verbose logging stopped: 6/5/2013  17:09:55 ===

    This thread is pretty old, are you still having this issue?

Maybe you are looking for

  • Adobe Lightroom 5.7.1 via Creative Cloud Packager

    Hi all, I might have missed something here but after creating a Creative Cloud package, I install the MSI/setup.exe that was created inside the "Build" folder followed by running the ExceptionDeployer in the Exceptions folder. However, the issues are

  • Vendor wise Sales & Stock Report in SAP Retail

    Hi, My requirement is: I need to develop a report for suppliers, showing them the sales and stock in each sales office. The report will be able to show the quantity in sales and stock for each sales office and a total for each one, in a determinated

  • Photoshop batch unavailable in Bridge

    Fo some reason, when I click Tools, Phototshop and then Batch are not an option anymore. Batch rename, version cue, etc. are available but Photoshop is not available. Actions are selected in photoshop, so I'm not sure what is going on.  Searched the

  • How to search for BT device automatically every x seconds?

    I have a Trust BT-2100p which came with the Toshiba Bluetooth software. I can connect my Bluetooth remote control to my HTPC, but when I disconnect and want to reconnect again, I have to right click on the device, press "connect" and then "OK" in the

  • Best way to schedule lots of small threads

    Hello, I'm working on a large set of data and trying to split up the job between multiple threads, to be more exact about 1000 threads. The maximum number of threads I can run simultaneously is defined by MAX_THREADS. To be most efficient I would nee