Update ActiveX References Error

There MUST be a simple way to update ActiveX References when a third party library has been updated to a new version.
I had made up several VI's that passed the ActiveX Class Refnum around.  This refnum was generated by right-clicking on a standard Automation Refnum and selecting the third party Class - (called DebenuPDFLibraryAX0913.IPDFLibrary).
I then upgraded this Third party software and changed the Refnum to the new version (DebenuPDFLibraryAX0915.IPDFLibrary) and it broke all the links with the existing VI's - fair enough.
So I tried just using the generic Automation Refnum to pass the reference around, but that doesn't recognise any of the Methods/Properties of the Class in each VI.
It seems I'm caught in a Catch-22.  If I use the specific ActiveX Class version to pass around all my VI's then when I upgrade the software I have to change ALL the Automation Refnums to the new Class Value.  If I try and make it generic it doesn't recognise anything in the Class.
How on earth can I just upgrade one VI with the new ActiveX class and have this new reference work for all the VI's I created in my "LabVIEW library".
The links below were in 2002 and 2006 and seem to suggest that one has to MANUALLY go around updating ALL Refnum's.  I really hope there is a better way of doing this now.
http://forums.ni.com/t5/LabVIEW/How-do-I-update-my-ActiveX-controls-without-breaking-existing/m-p/53...
http://forums.ni.com/t5/LabVIEW/How-do-I-quickly-update-the-ActiveX-automation-references-in-my/m-p/...
Chris

Hi ChrisReed,
Unfortunately there is not a simple way to update the ActiveX References.  Since you are updating the library, every reference would also need to be updated manually.  There is not a tool to do this currently, but it may be worth creating a post on the LabVIEW Idea Exchange!  We are always looking for new ideas to make LabVIEW an even better experience for our users.  I have linked the Idea Exchange below:
LabVIEW Idea Exchange
| Zach J. | Applications Engineer | National Instruments |

Similar Messages

  • Excel Get ActiveX References​.vi and closing references -- grrr

    I'm new to ActiveX stuff, but eager to learn! 
    The "grrr" in my Subject line is a reference to how I feel about LabVIEW's documentation from time to time.  I'm a dinosaur who came from text-based programming, and did a fair amount of C coding, so sometimes with LabVIEW I'm left with this awful feeling in the pit of my stomach like, "Good grief!  How much memory must LabVIEW be hogging up in the background when I use this vi?" or "What happens to those variables (wires) in that subVI when it completes but doesn't close?  What are their statuses when I come back in the next time?" or "What if I put a lot of elements into that array the first time and then started from element zero the second time and just put in a few?  What has happened with the memroy that was allocated when there were a lot of elements?"
    Today I'm stewing about this "Excel Get ActiveX References.vi," and what happens to the "ActiveX references" it generates each time I call the subVI in which "Excel Get ActiveX References.vi" lives.  I think that at least one of the "ActiveX references" it generates when I call it is of the type Excel._Application.  Then there appears to be an Excel._Workbook, and others.  You see, I've used "Excel Easy Report.vi" to put some data into an Excel spreadsheet, and I want to tell Excel to do a "Save" on the open spreadsheet.  I think ActiveX is the (a) right way to do that, so I'm wading into the ActiveX fray...  But this "Excel Get ActiveX References.vi" says in its help file, "Do not close ActiveX references opened with the Excel Get ActiveX References VI. References must remain open until the report is closed. Otherwise the error 3001 will occur."  Well, these Excel workbooks that get created by my VI could well stay open until after my LabVIEW VI terminates!
    So (finally), here are some of my quesitons:
    1)  When I go through my subVI once, pointing to one workbook, I'll get one set of references "created" or "opened" or whatever you call it when ActiveX references spring into existance.  Now, when I exit the subVI, is it going to automatically try to "close" those ActiveX references?  I don't suppose so, since subVI's stay in memory until the calling VI closes.
    2)  Now, I come back into my subVI a second time.  New workbook gets created, so I get new references.  Ok, fine.  Uh oh!  What happened to those old references?  I suppose that if I didn't somehow save them off, I've probably lost the ability to get them back (maybe I'm wrong, but I don't need them back), but is LabVIEW going to "close" those old references (from previous times through the subVI) because I can't get to them anymore?  Won't that cause the dreaded error 3001?  If LabVIEW is not going to "close" them, what in tarnation happens to them (the old C programmer in me creeping back out)??  Now it's some oddball, orphaned reference, floating out there, hogging memory, waiting to make something crash intermittently and be a debugging nightmare?
    3)  Now, here's the real scary one.  I think I might dodge the "error 3001" bullet in questions 1) and 2), but now let's say the user closes my LabVIEW application while Excel is still open.  All those workbooks are still open.  Presumably, all those ActiveX references I was not supposed to close are still open.  I really hope that LabVIEW is decent enough to close/erase/delete/blow-away (whatever the right word is) all those ActiveX references which were opened/created by "Excel Get ActiveX References.vi" when my program terminates.  But, oh no!  Won't the error 3001 come along then?  I suppose I can just dump it in the shutdown error handling.
    Well, thanks for reading my novel.  I don't know what can be done with LabVIEW documentation to make it more satisfying to folks like me, but perhaps someone can weigh in on all my ActiveX questions here.
    Thank you in advance,
    Steve Brady
    Solved!
    Go to Solution.

    You need to close EVERY ActiveX reference you open.  If you don't you'll end up with some Excel processes running even after LabVIEW exits.  You can see them in Task Manager.
    I, personally, don't like the LabVIEW Report Generation Tool Kit for working with Excel.  I don't think it's flexible enough.  I have a growing library of VIs that I've written that open, manipulate, and close Excel.  Some references I pass from VI to VI and some I close right after I use them.  It all depends on what I'm doing.  If I want to enter read or write data from/to a certain range I'll get the range reference, read or write the data, then close it right away because I have no use for it any more.  On the other hand, when I open Excel or a Workbook I keep the reference until I'm done, which could be later in the program.
    1)  When I go through my subVI once, pointing to one workbook, I'll get one set of references "created" or "opened" or whatever you call it when ActiveX references spring into existence.  Now, when I exit the subVI, is it going to automatically try to "close" those ActiveX references?  I don't suppose so, since subVI's stay in memory until the calling VI closes.
    2)  Now, I come back into my subVI a second time.  New workbook gets created, so I get new references.  Ok, fine.  Uh oh!  What happened to those old references?  I suppose that if I didn't somehow save them off, I've probably lost the ability to get them back (maybe I'm wrong, but I don't need them back), but is LabVIEW going to "close" those old references (from previous times through the subVI) because I can't get to them anymore?  Won't that cause the dreaded error 3001?  If LabVIEW is not going to "close" them, what in tarnation happens to them (the old C programmer in me creeping back out)??  Now it's some oddball, orphaned reference, floating out there, hogging memory, waiting to make something crash intermittently and be a debugging nightmare?
    3)  Now, here's the real scary one.  I think I might dodge the "error 3001" bullet in questions 1) and 2), but now let's say the user closes my LabVIEW application while Excel is still open.  All those workbooks are still open.  Presumably, all those ActiveX references I was not supposed to close are still open.  I really hope that LabVIEW is decent enough to close/erase/delete/blow-away (whatever the right word is) all those ActiveX references which were opened/created by "Excel Get ActiveX References.vi" when my program terminates.  But, oh no!  Won't the error 3001 come along then?  I suppose I can just dump it in the shutdown error handling.
    1)  No, LabVIEW will NOT close those references.  You need to make sure that happens.
    2)  You can save the references in a functional global or use a class but if you're not going to save them close them as soon as you're done with them.
    3)  Your user should not be able to close your LabVIEW application without it going through the shutdown routine you've created for your program.  The ABORT button should never be exposed to the user and you should capture and discard the panel close event so your program ALWAYS shuts down is an orderly fashion.  If you don't you will have fragments of Excel hanging around in your operating system and will have to kill those processes using Task Manager.  That should only be a problem during development, not once deployed.
    I used to program in C and Assembly many moons ago.  You should have seen my first LabVIEW code.  I go back and look at it just so I can see how far I've come in the last 12 years.  I feel your pain.
    Kelly Bersch
    Certified LabVIEW Developer
    Kudos are always welcome

  • How to know what ActiveX references are still open

    Okay, so I'm about the millionth person to post about this topic, but I feel like I know what I should be doing, but have hit a wall.  I have read through pretty much everything I could find in the forums about references and ActiveX.
    I am communicating with Excel via ActiveX, and everything works seemlessly, until I realized that if the user closes the Excel sheet (via an "exit" button on my FP), the "EXCEL.exe" process is still running.  I've read enough to know that this probably points to a reference that I have not closed.
    Problem is, I have poured over my code, and as far as I can tell, I have closed every reference, in the opposite order it was opened (as I read to do in a post earlier).
    Aside from casting references to int's to see what is still considered "active" (as I mentioned earlier, all the ones I can find are closed, so this doesn't help me), is there a way to determine which ActiveX references are still open?
    Even a way outside of LV?  A Microsoft utility even or ...well anything!  This is very annoying, and I know it should be quick and easy, I just have to know what is remaining open.
    Or, am I missing something else that might be keeping EXCEL.exe running?  (yes, I have an application quit and close the application reference)
    Thanks for any help

    Hi Will,
    As you said it yourself closing the same number of references as you open and using Application Quit should be enough to close down Excel.exe.
    Did you run your code in highlight execution to see how the behavior of your program changes when you hit the "Exit" button on your Front Panel?
    If you can post the minimum amount of code that reproduces the error, I will be more than happy to take a look at it.
    Best regards,
    Message Edited by Kalin T on 12-07-2006 03:11 PM
    Kalin T.
    National Instruments
    Attachments:
    activex_excel.jpg ‏16 KB

  • Closing ActiveX references correctly in Simple UI

    Hi,
    I am currently trying to modify the Simple UI provided with Teststand 2013 in order to access global station variables through LabVIEW.  As a simple test, I am trying to access the LastUserName value.  When I run the VI for the first time after opening LabVIEW, I get no error messages and the program runs as required.  Stopping the VI execution returns no errors, but when I try to run the VI and run the Teststand sequence again, the execution stalls and I get a waiting status.  I must then close the VI execution by killing all Teststand threads  I believe the PropertyObjects are not released properly and I find the event structure quite puzzling to deal with.
    My attempt at closing the references within the while loop looks like this : 
    The rest of the program is exactly as provided with Teststand 2013.
    Any input on how to properly close the ActiveX references and retrieving station globals within LabVIEW would be much apreciated.
    Thank you for your help,
    Christian
    Solved!
    Go to Solution.

    First of all, I would like to thank you for your answer.
    I understand that repeatedly opening a reference inside the while loop does not represent a viable solution.  This morning I found a very handy reference that explains how to pass data from the Teststand API through custom UI user messages.  This allows a more elegant and robust way of handling data that is retrieved from Teststand.  I'll use a custom event call back that will trigger on any custom message.
    Here are the references ( which are IMO clear enough for someone with very little LabVIEW experience) : 
    http://www.ni.com/white-paper/4532/en/
    https://decibel.ni.com/content/docs/DOC-21047
    So far, I have been able to create a dummy Teststand sequence that sends a custom UI message containing the string ''Hello, world!''. The UI can accordingly retrieve the string and display it in a dialog box.
    I still have to find a way to pass the data from the subVI to my UI.  I am investigating the use of global variables, but there may be a better solution that I am not aware of.  Any input on how to pass information between two active VIs would be much appreciated!
    Christian

  • Seagate Crystal Reports ActiveX Designer error '80043ac4'

    Website slows down when users are running reports. Users start getting errors when running any crystal report. After sometime main page itself stops loading and only static html is visible. Following is one of the errors users see:
    Seagate Crystal Reports ActiveX Designer error '80043ac4'
    Invalid directory.
    /opera_mort2/report/AlwaysRequiredSteps.asp, line 54
    Other errors seen on reporting site at that time are
    Active Server pages error 'ASP 0115'
    Unexpected error
    /opera_mort2/report/rpt_level.asp
    A trappable error (C00000005) occurred in an external object. The script cannot continue running.
    authentication and network errors.
    Rebooting the Web Server temporarily fixes the issue however the error recurs again after a day or two. We are seeing this problem in both our PROD and DR server. There was no change done to either of these boxes recently.
    Also at this pint IIS was crashing. Microsoft Support analyzed the crash dumps created from IIS and came up with the following:
    "All the memory dumps captured showed the same DLL that was accessing corrupted memory. This same DLL would also be the one that had originally written to those addresses. The DLL was craxdrt.dll from Crystal Reports 8.0 ActiveX Designer, which was version 8.0.1.0 from 1/28/2000. This DLL should be updated to see if this issue has already been fixed. Other options are to recycle IIS more frequently and move to a new version of Crystal Reports."
    Here is a detailed analysis from Microsoft Support:
    The issue appears to be heap corruption. Normally these are difficult to troubleshoot, however, in this case every memory dump that I looked at had the same component involved.
    start end module name
    42b30000 4307f000 craxdrt (export symbols) craxdrt.dll
    Loaded symbol image file: craxdrt.dll
    Image path: C:\Program Files\Seagate Software\Report Designer Component\craxdrt.dll
    Image name: craxdrt.dll
    Timestamp: Fri Jan 28 15:16:46 2000 (3892235E)
    CheckSum: 0055446A
    ImageSize: 0054F000
    File version: 8.0.0.371
    Product version: 8.0.1.0
    File flags: 22 (Mask 3F) Pre-release Special
    File OS: 40004 NT Win32
    File type: 2.0 Dll
    File date: 00000000.00000000
    Translations: 1009.04b0
    CompanyName: Seagate Software, Inc.
    ProductName: Crystal Reports 8.0 ActiveX Designer.
    InternalName: CRAXDRT
    OriginalFilename: CRAXDRT.DLL
    ProductVersion: 8.0.1.0
    FileVersion: 8.0.0.371
    PrivateBuild: 8.0.0.371
    SpecialBuild: 8.0.0.371
    FileDescription: Crystal Reports ActiveX Designer Runtime Support
    LegalCopyright: Copyright (c) 1991-1999 Seagate Software, Inc. All rights reserved.
    LegalTrademarks: Copyright (c) 1991-1999 Seagate Software, Inc. All rights reserved.
    Comments: Crystal Reports for Visual Basic
    This component is from the year 2000 and needs to be updated. I searched our old cases and found several where old version of this component caused the same heap corruption.
    Please help as this is a production issue. Please let me know if you need any more information.
    thanks and regards
    sudatta soman

    Something must have changed. Were any patches or auto updates done to the OS?
    CR 8.0 has been out of the support cycle for some time now.
    As Microsoft suggested please log in and download the patches for CR 8.0 from:
    https://www.sdn.sap.com/irj/sdn/businessobjects-support
    If that does not resolve the issue the only option will be to schedule sn IIS restart each night.

  • FrameMaker 10 Crashes when updating EDD references

    When I attempt to update the commonElements.eddmod.fm section references in the topic.eddmod.fm, and then attempt to save the file, FrameMaker 10 crashes with the following errors:
    6385224
    6372417
    6385885
    I thought there was something wrong with the changes I made to the commonElements edd, but it did the same thing when I replaced the modified file with the original commonElements that was installed with Frame10, it did the same thing. I am on version 10.0.2.419. I was able to successfully update the reference before, and I believe I installed an automatic update for Tech Comm Suite 3 and this was what is now "different". I tried to look at the log file but it didn't tell me anything useful.
    Has anyone else run into this?

    Not exactly this error, but when importing an EDD into another document more than once, I got FM to crash. It was not clear to me whether this was a consistent behaviour - after importing the same EDD into the same file for the third time it happened. Also when first importing formats and then the element definitions from the same template file I got so many crashes that I gave up on combining the two actions in one script. And as importing the same EDD more than once on a file is not something my customer is normally doing, I left it to one of those quirky things that sometimes happens in FM.
    Not sure if this is related to your problem, but it somehow points at the import EDD functionality that might be a little shaky after the last update of FM 10.
    Advice to Adobe developers that might be monitoring this list: have a closer look at what was changed and whether that was good news or bad.
    Good luck
    Jang

  • Passing an ActiveX reference from TestStand to Labview

    How can I pass and ActiveX reference (for a dll) created and used in a TestStand sequence (under Locals) to a VI running within that sequence so that I can then call the same instance of the dll from Labview?
    (I know this isn't the best approach to programming but I'm more interested in proving the point than anything else)
    Cheers
    Dan

    Here's what I think you are tyring to do. Within your sequence, instantiate an object from an ActiveX DLL, storing a reference to it within a TS variable. Then, within a VI called by this sequence, call a method of the intantiated object.
    To do this, when specifying your module on your LV step you must check the Sequence Context ActiveX Pointer check box. In the called VI you must have the a Sequence Context control on your front panel and have it wired to your connector pane along with a TestData cluster control and a LV Error Out cluster control.
    Within the VI you use an invoke node to invoke the AsPropertyObject method on the SequenceContext (Make sure you use the ActiveX close function on this new reference when you are done with it.). Use another invoke node to call GetValInterface method on the sequence context property object reference (you could probably also use the GetValIDispatch method. See the help). For this invoke node you will want to use a lookupstring that reference the variable, relative to yo sequence context, in which you stored the refernce to the instantiated object in your sequence file. This will return a variant reference. You must convert this reference to a LV reference using the "To G Data" function in the ActiveX palette. The "To G Data" function requires a type input. You will need an ActiveX Automation Refnum control as the input to this (see ActiveX control palette). You will need to right click on this automation refnum control and browse the ActiveX automation server until you find the DLL ActiveX server from which you instantiated your object within your sequence. Once selected, also select the object that you instantiated. The "To G Data" function will then give you a reference to you object on which you can happily used in your desired manner. Make sure to close this reference with an ActiveX Automation close function when you are done with it.
    I would definitely clean this up with a subVI to perhaps generalize the solution.

  • JuseJSAssert Error calling selector function: Reference Error:'PIE' is undefined

    Since installing your new version of Adobe Muse yesterday I have not been able to get updated pages to upload to my website.  I have exported the html to my desktop and it looks right there but when I upload it to the website I get the following error message: MuseJSAssert: Error calling selector function: Reference Error:"PIE" is undefined.   I have uploaded only the updated page but then I tried uploading the whole site MANY times and it just is NOT working.  Can I go back to the prior version as I had no problems with it.  PLEASE help!  I have worked on this for two days and am tired of it and need to get my site working properly!  Thanks for your quick response!

    Whats the site URL in question? Are you uploading the site to Business Catalyst or to a third party hosting provider? Did you try uploading all site files through a FTP client like Filezilla? Is that a specific browser/version where the problem occurs?
    Thanks,
    Vinayak

  • Adobe automatic flash update crashes with error

    This is a frequently recurring, time wasting problem. When will Adobe get the update installation right ?
    Doesn't happen with any other update from any other vendor. Frustrating!
    XP Pro SP3
    Error detail:
    Line:     1
    Char:    13976
    Code:    0
    URL:     ...\index.js
    What to do ?
    Pradip_A

    Aside from the Flash update failure on my Desktop, I still can't fathom why
    I haven't been able to install Flash ever on my HP Compaq Pressario 1000 Laptop ever.
    This too sports XP Pro SP3 IE8.
    If you have any ideas on this other problem, please let me know.
    Thanks,
    Pradip.
    To repeat:
    The original post on this current thread stareted with the crash showing a notification window
    with the error Object Expected and the following detail:
    Line:     1
    Char:    13976
    Code:   0
    URL:     ...\index.js
    Here's the requested log file:
    2012-9-15+12-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-15+17-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-15+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-15+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-15+20-20-15.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-15+21-20-15.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-15+22-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-15+23-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+0-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+11-20-0.156 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+13-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+15-20-16.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+16-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+17-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-16+20-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+0-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+10-20-15.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+11-20-15.156 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+12-20-15.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+13-20-15.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+14-20-15.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+15-20-15.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+16-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+17-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-17+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+0-20-15.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+10-20-0.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+11-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+12-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+14-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+15-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+16-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+17-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+19-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+20-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+21-20-0.15 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+22-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-18+23-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+0-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+1-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+2-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+10-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+11-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+12-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+14-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+15-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+16-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+17-20-0.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+19-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+20-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+21-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+22-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-19+23-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+9-20-15.625 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+10-20-0.218 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+11-20-0.59 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+12-20-0.43 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+13-20-0.59 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+14-20-0.43 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+15-20-0.137 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+16-20-0.43 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+17-20-0.59 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+20-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+21-20-15.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+22-20-15.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-20+23-20-15.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+7-20-15.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+8-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+9-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+11-20-0.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+14-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+17-20-15.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-21+23-20-15.140 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-22+9-20-15.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-22+10-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-22+11-20-15.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-22+12-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-22+18-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+11-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+14-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+15-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+16-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+17-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+18-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+20-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+21-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+22-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-23+23-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+0-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+1-20-0.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+2-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+8-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+9-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+10-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+15-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+16-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+17-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+18-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+20-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+21-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+22-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-24+23-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+0-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+10-20-0.156 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+11-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+12-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+13-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+14-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+15-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+16-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+17-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+18-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-25+19-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+0-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+1-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+9-20-0.140 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+10-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+11-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+14-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+15-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+16-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+17-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+18-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+20-20-15.171 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+21-20-15.15 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+22-20-15.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-26+23-20-15.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+0-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+5-20-18.390 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+6-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+7-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+8-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+12-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+13-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+14-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+15-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+16-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+17-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+18-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+20-20-15.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+21-20-15.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+22-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-27+23-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+0-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+9-20-15.359 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+10-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+11-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+21-20-0.141 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+22-20-0.32 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-28+23-20-0.32 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+0-20-0.32 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+1-20-0.48 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+9-20-15.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+10-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+11-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+12-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+13-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+14-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+15-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+16-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+17-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+18-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+20-20-15.875 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+21-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+22-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-29+23-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+10-20-15.140 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+11-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+12-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+13-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+14-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+15-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+16-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+17-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+21-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+22-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-9-30+23-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+0-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+1-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+2-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+3-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+11-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+13-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+17-20-0.140 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+21-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+22-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-1+23-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+0-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+10-20-15.140 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+11-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+12-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+13-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+14-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+15-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+16-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+17-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-2+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+0-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+10-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+11-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+12-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+13-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+17-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+18-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+19-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-3+20-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-4+0-20-15.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-4+11-20-0.156 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-4+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-4+13-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+0-20-0.140 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+8-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+9-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+10-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+11-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+12-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+13-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+19-20-15.156 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+20-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+21-20-0.53 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+22-20-0.37 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-5+23-20-0.115 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+0-20-0.37 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+1-20-0.53 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+7-20-15.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+8-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+9-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+10-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+11-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+13-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+14-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+15-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+16-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+17-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+20-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+21-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+22-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-6+23-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+0-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+1-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+2-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+11-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+14-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+15-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+16-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+17-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+18-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-7+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+10-20-0.734 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+11-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+12-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+13-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+14-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+15-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+16-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+17-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+20-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+21-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+22-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-8+23-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+0-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+9-20-15.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+10-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+11-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+12-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+14-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+15-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+16-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+17-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+18-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+19-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+20-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+21-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+22-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-9+23-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+0-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    =O====== M/11.4.402.287 2012-10-10+11-08-11.906 ========
    0000 Re: Adobe automatic flash update crashes with error 00000010 "D:\Temp\{C1AD15FE-05B3-464A-BE7E-986871B6FB95}\InstallFlashPlayer.exe" -iv 4
    0001 Re: Adobe automatic flash update crashes with error 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 Re: Adobe automatic flash update crashes with error 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.dll 5
    0003 Re: Adobe automatic flash update crashes with error 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.exe 5
    0004 Re: Adobe automatic flash update crashes with error 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_4_402_287.ocx
    0005 Re: Adobe automatic flash update crashes with error 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_287_ActiveX.exe
    0006 Re: Adobe automatic flash update crashes with error 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_287_ActiveX.dll
    0007 Re: Adobe automatic flash update crashes with error 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0008 Re: Adobe automatic flash update crashes with error 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0009 Re: Adobe automatic flash update crashes with error 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0010 Re: Adobe automatic flash update crashes with error 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0011 Re: Adobe automatic flash update crashes with error 00001106
    0012 Re: Adobe automatic flash update crashes with error 00001106
    0013 Re: Adobe automatic flash update crashes with error 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 Re: Adobe automatic flash update crashes with error 00000012
    =X====== M/11.4.402.287 2012-10-10+11-08-31.921 ========
    =O====== M/11.4.402.265 2012-10-10+10-56-43.031 ========
    0000 Re: Adobe automatic flash update crashes with error 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.exe" -update activex
    0001 Re: Adobe automatic flash update crashes with error 00000011 0
    =X====== M/11.4.402.265 2012-10-10+11-08-32.078 ========
    2012-10-10+11-20-0.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+12-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+13-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+14-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+15-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+16-20-0.234 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+17-20-0.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+18-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+19-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+22-20-0.187 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-10+23-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+0-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+11-20-0.187 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+12-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+17-20-18.546 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+18-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+19-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+20-20-0.62 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+21-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+22-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-11+23-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+10-20-0.203 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+11-20-0.78 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+12-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+13-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+17-20-15.125 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+18-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+19-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+20-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+21-20-0.52 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+22-20-0.36 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-12+23-20-0.177 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-13+0-20-0.36 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-13+10-20-15.187 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-13+11-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-13+12-20-0.93 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-13+13-20-0.46 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-13+20-20-0.109 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-13+21-20-0.31 Re: Adobe automatic flash update crashes with error 1223 1058
    2012-10-13+22-20-2.156 Re: Adobe automatic flash update crashes with e

  • I keep getting a "reference error:m_caFxTBobj is not defined. pleas help

    I keep getting a "reference error:m_caFxTBobj is not defined. This happens every time I go to a new tab.Please help

    Usually caused by an add-on that is either incompatible with Firefox or one that wasn't updated completely by its' developer. The former can happen when the Addon Compatibility Reporter extension is used "across the board", instead for each extension along with testing each extension.
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Linked Server Causing Reference Error in Database Project

    Good Morning
    I have a database project that will not deploy to my local because of a reference error to a linked server within the code.  I have searched high and low about how to get a linked server recognized within a TFS Database Project to no avail.  I'm
    probably missing something simple, but any help will be greatly appreciated.
    Regards
    Mark

    Hi Mark,
    I'd like to know how do you deploy your database project, and you use TFS build or something related. If you use TFS build to do continuous deployment, you need to make sure you can build and deploy in local before TFS build.
    Based on your description, you might need to open a new thread in
    SQL Server Data Tools forum for a better response. And update the thread by posting the new thread link here.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • There was a problem updating InDesign CC For more information see the specific error below.  Update Failed Download error.  Press Retry to try again or contact customer support.(49)

    Posted the entire text from the error window, when trying to update, using the normal NON-TECHIE way to update any and all Adobe CC products, via the Creative Cloud updater installed when Adobe Creative Cloud subscription was purchased when first offered.
    The following occurs, ad nauseam:
    There was a problem updating InDesign CC
    For more information see the specific error below.
    Update Failed
    Download error.  Press Retry to try again or contact customer support.(49)
    Here's the crux of my frustration:
    (1) Customer Service is NOT contact-able, to receive LIVE help.
    (2) There is NO way for me to mitigate this "Download error", being a student learning InDesign, and NOT in any way capable of tweaking folders/files here and there.
    Therefore, the real question:
    Given that a significant number of subscribers are having the above referenced issue with attempting to download the current update for InDesign, WHAT ARE WE SUPPOSED TO DO, in order to get our contractually paid-for updates to our legally and contractually paid-for Adobe software, specifically in my case, InDesgin's current update?
    Please, NO TECHNICAL mumbo-jumbo which most likely will cause the overwhelming majority of users, like me, to seriously corrupt their computer files, but rather an honest, straightforward "what to do" from real CS/Engineers working for Adobe, as to how to FIX this issue, period.
    ===========================================================
    UPDATE:
    Here is a way in which I think I was able to "update" my InDesign CC application:
    (1) Sign-In to your Adobe Account
    https://www.adobe.com/
    (2) Click on the MENU icon
    (3) Click on the product InDesign icon
    Your browser should display the page for Adobe InDesign CC
    https://www.adobe.com/products/indesign.html?promoid=KLXLU
    (4) Click on the Download icon,
    Your browser should now display the page to download InDesign,
    https://creative.adobe.com/products/download/indesign
    (5) a Pop-Up window should open, and display:
      Launch Application
      This link needs to be opened with an application.
    with the first option to select being the CreativeCloud(URIHandler)
    (5) Select this application and click OK.
    What happened when I followed steps (1) thorugh (5) is that:
    (a) InDesign CC(2014) was installed,
    (b) InDesign CC, updated, and then
    (c) InDesign CC(2014), also updated.
    Why this all worked, is a mystery to me.
    Looks like a separate, "new" version of InDesign, InDesign CC(2014), was installed, the existing "old" InDesign was updated, and then the newly installed Indesign CC(2014) was further updated.
    A BIT MORE, when I launched my InDesign CC app, and checked to see if there were Updates Available, there in fact was an Adobe InDesign CC 64 bit (9.2.2) update.
    I clicked on UPDATE and my "old" InDesign CC app was "successfully updated."
    FURTHER INFO:  I may have neglected to list some important info ... OS:  Windows 8.1 Pro with Media Center, 64-bit
    Confused, I am able to launch BOTH of these apps, and hopefully I may use one of these versions of the InDesign CC app, to do some InDesign work.
    Will keep y'all posted!
    Message was edited by: Richard Yapkowitz, about an hour after I first posted this issue.

    Jackdan error 49 indicates the installer was unable to access a critical file or directory.  You can find additional details at Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html.

  • Updater fails with Error U44M1I0

    I have seen several similar posts to this one, but none seemed exactly the same.
    I am trying to install 3 updates for my Adobe products on OS X 10.7.4. I have a Creative Cloud subscription.
    The updater gives this error log:
    DPS Desktop Tools CS6 2.04.1 Update
    Installation Successful. Error Code: U44M1I0
    Adobe Media Encoder CS6 6.0.2 Update
    Installation Successful. Error Code: U44M1I0
    Adobe InDesign CS6 8.0.1 update
    Installation Successful. Error Code: U44M1I0
    I enabled the "ribs3debug" mode as suggested in other threads.
    Here's the contents of the InDesign error log:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.7.4 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 44 milliseconds (0.044 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate
    Updating media info for: {05DDE640-EBCC-11E1-8A98-35B78AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_IL-220812013903/AdobeInDesign8AppLang-en_IL- 220812013903.dmg
    Updating media info for: {07BB5D70-EBCD-11E1-B49F-0FE18AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-hu_HU-220812014618/AdobeInDesign8AppLang-hu_HU- 220812014618.dmg
    Updating media info for: {09929A90-EBCE-11E1-AC69-F00A8BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-sv_SE-220812015331/AdobeInDesign8AppLang-sv_SE- 220812015331.dmg
    Updating media info for: {1C76F326-EBCF-11E1-A733-32568BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppBase2-mul-220812020326/AdobeInDesign8AppBase2-mul-22 0812020326.dmg
    Updating media info for: {2495EBF4-EBCD-11E1-A7C8-AEE58AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-it_IT-220812014705/AdobeInDesign8AppLang-it_IT- 220812014705.dmg
    Updating media info for: {24DDC164-EBCC-11E1-962D-DDBB8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-fr_MA-220812013957/AdobeInDesign8AppLang-fr_MA- 220812013957.dmg
    Updating media info for: {255D1016-EBCE-11E1-8C5B-970F8BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-tr_TR-220812015417/AdobeInDesign8AppLang-tr_TR- 220812015417.dmg
    Updating media info for: {408ED52E-EBCC-11E1-AFB4-84C08AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_GB-220812014043/AdobeInDesign8AppLang-en_GB- 220812014043.dmg
    Updating media info for: {41164F6C-EBCD-11E1-88CB-54EA8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-ja_JP-220812014753/AdobeInDesign8AppLang-ja_JP- 220812014753.dmg
    Updating media info for: {42EC21C6-EBCE-11E1-AE4B-3A148BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-uk_UA-220812015507/AdobeInDesign8AppLang-uk_UA- 220812015507.dmg
    Updating media info for: {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_US-220812014130/AdobeInDesign8AppLang-en_US- 220812014130.dmg
    Updating media info for: {5CF79D62-EBCD-11E1-833A-07EF8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-ko_KR-220812014840/AdobeInDesign8AppLang-ko_KR- 220812014840.dmg
    Updating media info for: {60323BF8-EBCE-11E1-BC1D-D6188BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-zh_CN-220812015555/AdobeInDesign8AppLang-zh_CN- 220812015555.dmg
    Updating media info for: {78CEC222-EBCD-11E1-B799-B9F38AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-nb_NO-220812014928/AdobeInDesign8AppLang-nb_NO- 220812014928.dmg
    Updating media info for: {7A081202-EBCC-11E1-A2E4-DBC98AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-es_ES-220812014219/AdobeInDesign8AppLang-es_ES- 220812014219.dmg
    Updating media info for: {7D33794C-EBCE-11E1-B7F0-881D8BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-zh_TW-220812015643/AdobeInDesign8AppLang-zh_TW- 220812015643.dmg
    Updating media info for: {90E58E06-EBCB-11E1-8CE3-C3068AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-cs_CZ-220812013550/AdobeInDesign8AppLang-cs_CZ- 220812013550.dmg
    Updating media info for: {959D400A-EBCC-11E1-BB1C-74CE8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-es_MX-220812014305/AdobeInDesign8AppLang-es_MX- 220812014305.dmg
    Updating media info for: {95BC6218-EBCD-11E1-9FC4-60F88AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-nl_NL-220812015016/AdobeInDesign8AppLang-nl_NL- 220812015016.dmg
    Updating media info for: {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppBase-mul-220812015950/AdobeInDesign8AppBase-mul-2208 12015950.dmg
    Updating media info for: {B02F5558-EBCB-11E1-A2C2-4EA98AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-da_DK-220812013640/AdobeInDesign8AppLang-da_DK- 220812013640.dmg
    Updating media info for: {B16842A2-EBCD-11E1-9A00-FAFC8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-pl_PL-220812015102/AdobeInDesign8AppLang-pl_PL- 220812015102.dmg
    Updating media info for: {B2A19462-EBCC-11E1-9FF3-1AD38AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-fi_FI-220812014353/AdobeInDesign8AppLang-fi_FI- 220812014353.dmg
    Updating media info for: {CC5435AA-EBCB-11E1-9C3D-F4AD8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-de_DE-220812013727/AdobeInDesign8AppLang-de_DE- 220812013727.dmg
    Updating media info for: {CF2830AA-EBCC-11E1-9DB7-C0D78AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-fr_CA-220812014441/AdobeInDesign8AppLang-fr_CA- 220812014441.dmg
    Updating media info for: {CF8AE050-EBCD-11E1-B36C-A0018BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-pt_BR-220812015152/AdobeInDesign8AppLang-pt_BR- 220812015152.dmg
    Updating media info for: {EA0D10DA-EBCB-11E1-A012-9BB28AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_AE-220812013817/AdobeInDesign8AppLang-en_AE- 220812013817.dmg
    Updating media info for: {EBE8085A-EBCC-11E1-9109-67DC8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-fr_FR-220812014530/AdobeInDesign8AppLang-fr_FR- 220812014530.dmg
    Updating media info for: {ECD40F7E-EBCD-11E1-BFD1-48068BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-ru_RU-220812015241/AdobeInDesign8AppLang-ru_RU- 220812015241.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    [       0] Thu Sep 27 16:04:29 2012 DEBUG
    InstallerSession.CreatePayloadSession: Checking for unsupported payloads
    [       0] Thu Sep 27 16:04:29 2012  INFO
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    [       0] Thu Sep 27 16:04:29 2012 DEBUG
    ______ InstallerSession.CreatePayloadSession: Checking session payloads ______
    [       0] Thu Sep 27 16:04:29 2012  INFO
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Thu Sep 27 16:04:29 2012 DEBUG
    InstallerSession.CreatePayloadSession: Load PDB
    ______ InstallerSession.CreatePayloadSession: Checking incompatible payloads ______
    ______ GetIncompatiblePayloadBuildsInstalled ______
    ______ InstallerSession.CreatePayloadSession: Checking already installed payloads ______
    {03740852-60C2-4B1A-A3DA-1EDB082C6401} Adobe Linguistics CS6
    {0377892E-FCAC-46EC-AA70-C6AC8A86A81F} Dynamic Link Media Server
    {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6
    {0D9E083D-1ABE-4B41-B04D-B79947317FF8} AdobeIdeaPluginCS6
    {11C91E36-78ED-11E1-8DB4-73755723D190} Adobe InDesign CS6 Common Base Files
    {14688254-5CD1-11E1-8D70-4DBBF019A2FF} DPS Desktop Tools CS6
    {148542D8-49CA-482A-A334-1D54C5A9D53B} Adobe XMP Panels
    {1F955A4A-F365-4379-AEE2-B7C83E1AA883} Adobe Photoshop CS6 Support
    {2591B843-8028-4395-9DEE-03AF8D631539} Adobe Player for Embedding 3.3
    {26F763C9-076F-473D-9A0E-4050C973737C} AdobeColorJA CS6
    {3071EDD7-EA5B-4CAC-B4D0-4D4D664154D1} Adobe Photoshop CS6 English Language Pack_AdobePhotoshop13-en_US
    {311CDC89-AC18-4344-9EC9-0225328C73D3} Required Common Fonts Installation
    {327492D4-78EB-11E1-8ABE-84C55623D190} Adobe InDesign CS6 Application Base Files
    {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6
    {3CB7E1A8-78E9-11E1-A332-DF895723D190} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-en_US
    {4482EF4A-376B-46DE-9B17-E377232328E0} PDF Settings CS6
    {48623899-C152-457D-9B30-1F957332AC2F} AdobeColorPhotoshop CS6
    {49F7E5E0-2C04-48C9-9BB7-BC91AC0AE6F1} Adobe Extension Manager CS6_6.0.2_AdobeExtensionManager6.0All
    {4F427880-01EA-4E0F-AAE2-9ADE97563A21} Adobe Utilities CS6
    {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0
    {50F5A7C9-1E43-4860-AED8-7F8722691F17} Adobe ExtendScript Toolkit CS6
    {51C77DC1-5C75-4491-8645-A17CC33F5A36} AdobeColorEU CS6
    {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer
    {554A7BA9-8879-496E-BC3D-93650613DDE5} Adobe Photoshop CS6 Support_13.0.1_AdobePhotoshop13-Support
    {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6
    {5BCA5B05-A805-42A3-86F8-6689B7C1E907} Adobe Bridge CS6_5.0.1_AdobeBridge5-mul
    {6040E054-500A-427A-9DA2-349F0FEB19D1} Adobe Illustrator CS6 Core_AdobeIllustrator16en_USLanguagePack
    {68E6C82A-78E9-11E1-8AE1-E28A5723D190} Adobe InDesign CS6 Application Feature Set Files
    {74EB3499-8B95-4B5C-96EB-7B342F3FD0C6} Adobe Photoshop CS6 Driver
    {78E38D75-4D92-4F6E-B631-17A436BED680} AdobeColorVideoProfilesCS CS6
    {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2
    {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6
    {8467887D-92F1-435C-B387-A7551B88EC70} Adobe NPS Panel
    {84901376-1C55-4BD3-AD2C-F9BDB4449DAC} PDF Settings CS5
    {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core
    {97BA0109-F6BE-4F50-8904-C19442D7216E} Adobe Bridge CS6
    {9FC6805B-9FD9-410A-A620-51D58644999D} Camera Profiles Installer_7.1_AdobeCameraRawProfile7.0All
    {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6
    {A9E40F78-E54D-494F-94A9-5D502F8DD1E1} Adobe WinSoft Linguistics Plugin CS6
    {AA0D312F-1570-4E7E-9A7D-E191E0090FEC} AdobeHelp
    {AAF0D225-F129-40F2-916E-12E28DBD19ED} Adobe Illustrator CS6 Core
    {AC76BA86-1033-F400-7760-000000000005} Acrobat X Pro
    {AC85D480-BE25-4B01-84BE-E8A5932E39DB} Adobe Hunspell Linguistics Plugin CS6
    {B5BC75FC-908D-4E1E-A1EE-09A3FDBBEC77} AdobeIdeaPluginCS6-loc
    {B67ED9AA-F372-40CC-89AB-F5D8FBF56CD4} Adobe Illustrator CS6 Support
    {B98E0DCB-1A75-4394-9813-3A114AA3891D} Adobe Mini Bridge CS6
    {BAA50E10-F61C-11E0-AC88-C17AEB9B6A79} Adobe Toolhints CS6
    {BB5AB971-EC87-4563-B070-4396AFE93414} Acrobat Professional
    {BB66788C-4C4F-4EB0-B146-9178857DE287} AdobeColorNA CS6
    {C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6
    {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6
    {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6
    {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7
    {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D} Recommended Common Fonts Installation
    {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport
    {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro
    {E51F8824-78E8-11E1-AD81-3C805723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_US
    {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6
    {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul
    {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6
    {ED027C6A-DE62-4BD2-BD00-3CF183A6BDAD} Adobe Photoshop CS6 Core_13.0.1_AdobePhotoshop13-Core
    {FA148573-E0E5-400F-8978-D95410035F18} Photoshop Camera Raw 7_7.1_AdobeCameraRaw7.0All
    [       0] Thu Sep 27 16:04:30 2012  INFO
    ______ Verify Dependency Subscribers ______
    [       0] Thu Sep 27 16:04:30 2012 ERROR
    DW023: The extension payload: {05DDE640-EBCC-11E1-8A98-35B78AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_IL 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_IL
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {07BB5D70-EBCD-11E1-B49F-0FE18AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-hu_HU 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-hu_HU
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {09929A90-EBCE-11E1-AC69-F00A8BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-sv_SE 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-sv_SE
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {2495EBF4-EBCD-11E1-A7C8-AEE58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-it_IT 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-it_IT
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {24DDC164-EBCC-11E1-962D-DDBB8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-fr_MA 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fr_MA
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {255D1016-EBCE-11E1-8C5B-970F8BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-tr_TR 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-tr_TR
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {408ED52E-EBCC-11E1-AFB4-84C08AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_GB 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_GB
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {41164F6C-EBCD-11E1-88CB-54EA8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-ja_JP 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-ja_JP
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {42EC21C6-EBCE-11E1-AE4B-3A148BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-uk_UA 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-uk_UA
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {5CF79D62-EBCD-11E1-833A-07EF8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-ko_KR 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-ko_KR
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {60323BF8-EBCE-11E1-BC1D-D6188BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-zh_CN 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-zh_CN
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {78CEC222-EBCD-11E1-B799-B9F38AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-nb_NO 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-nb_NO
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {7A081202-EBCC-11E1-A2E4-DBC98AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-es_ES 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-es_ES
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {7D33794C-EBCE-11E1-B7F0-881D8BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-zh_TW 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-zh_TW
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {90E58E06-EBCB-11E1-8CE3-C3068AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-cs_CZ 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-cs_CZ
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {959D400A-EBCC-11E1-BB1C-74CE8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-es_MX 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-es_MX
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {95BC6218-EBCD-11E1-9FC4-60F88AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-nl_NL 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-nl_NL
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {B02F5558-EBCB-11E1-A2C2-4EA98AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-da_DK 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-da_DK
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {B16842A2-EBCD-11E1-9A00-FAFC8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-pl_PL 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-pl_PL
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {B2A19462-EBCC-11E1-9FF3-1AD38AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-fi_FI 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fi_FI
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {CC5435AA-EBCB-11E1-9C3D-F4AD8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-de_DE 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-de_DE
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {CF2830AA-EBCC-11E1-9DB7-C0D78AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-fr_CA 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fr_CA
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {CF8AE050-EBCD-11E1-B36C-A0018BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-pt_BR 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-pt_BR
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {EA0D10DA-EBCB-11E1-A012-9BB28AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_AE 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_AE
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {EBE8085A-EBCC-11E1-9109-67DC8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-fr_FR 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fr_FR
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {ECD40F7E-EBCD-11E1-BFD1-48068BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-ru_RU 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-ru_RU
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    ______ Checking payloads upgrade/conflict relationships ______
    Checking for payloads having same family and product names but different adobe codes
    ______ Checking payloads upgrade/conflict relationships : Passed ______
    Operation order summary:
    When distributing payloads across media, the following order must be preserved, except that
    adjacent payloads with the same mediaGroup can be re-ordered across media boundaries without introducing
    extraneous media swaps for the user.
    [       0] Thu Sep 27 16:04:30 2012  INFO
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406: 0 (0,0)
      {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406: 0 (0,0)
      {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    :: END TIMER :: [CreatePayloadSession] took 374 milliseconds (0.374 seconds) DTR = 85.5615 KBPS (0.0835561 MBPS)
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Patch {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406 can be applied to product {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2 8.0.0.0
    Patch {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406 can be applied to product {E51F8824-78E8-11E1-AD81-3C805723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_US 8.0.0.0
    Patch {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406 can be applied to product {327492D4-78EB-11E1-8ABE-84C55623D190} Adobe InDesign CS6 Application Base Files 8.0.0.0
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    *** Checking patch payload : {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    installDBPath : /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppBase2-mul-220812020326/Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2 8.0.0.0
    Parent Installation directory : /Applications
    *** Checking patch payload : {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    installDBPath : /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_US-220812014130/Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {E51F8824-78E8-11E1-AD81-3C805723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_US 8.0.0.0
    Parent Installation directory : /Applications
    *** Checking patch payload : {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    installDBPath : /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppBase-mul-220812015950/Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {327492D4-78EB-11E1-8ABE-84C55623D190} Adobe InDesign CS6 Application Base Files 8.0.0.0
    Parent Installation directory : /Applications
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    Requested action "install" for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    Requested action "install" for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    Requested action "install" for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    Using installer mode 0
    ::START TIMER:: [Setting Payload Actions]
    PayloadPolicyInit: BEGIN Updating installstate for payloads
    PayloadPolicyInit: END Updating installstate for payloads
    PayloadPolicyInit: BEGIN Creating policyNodes
    PayloadPolicyInit: END Creating policyNodes
    PayloadPolicyInit: BEGIN Calculating initial graph
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 0 0, N for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    PayloadPolicyNode._SetPayloadAction: install for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    PayloadPolicyNode.SetAction: FN->FY for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 0 0, N for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    PayloadPolicyNode._SetPayloadAction: install for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    PayloadPolicyNode.SetAction: FN->FY for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 2 12, Y for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyNode._SetPayloadAction: install for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyNode._SetPayloadAction: install for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyNode.SetAction: IY->IY for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyInit: END Calculating initial graph
    [       0] Thu Sep 27 16:04:30 2012  INFO
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406 is: false
    Action string for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406  is install
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    Setting action for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406 per deployment file.
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Value returned on lookup of payload: {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406 is: false
    Action string for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406  is install
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    Setting action for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406 per deployment file.
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Value returned on lookup of payload: {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406 is: false
    Action string for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406  is install
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    Setting action for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406 per deployment file.
    PayloadPolicyNode._SetPayloadAction: install for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyNode.SetAction: IY->IY for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    [       0] Thu Sep 27 16:04:30 2012  INFO
    END Setting requested payload actions
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    :: END TIMER :: [Setting Payload Actions] took 28 milliseconds (0.028 seconds) DTR = 142.857 KBPS (0.139509 MBPS)
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Applications

    Alright, well, uninstalling and reinstalling InDesign allowed the updates to run successfully, so I guess that fixes it.

  • Windows server 2012 update standalone installer error: the certificate for the signer of the message is invalid

    I have a windows server 2012 Hyper V machine which acts as a web front end for my sharepoint 2013 farm.
    It is set to install updates automatically.
    I have 4 patch to install to correct an issue with my search:
     KB
    2567680, KB
    2554876 , KB
    2708075 , KB
    2472264 
    These are Microsoft patches
    Whenever I try to install them I receive an error
    Googling the error, I have tried extracting the file and using CMD prompt to install the xml file to install but to no avail.
    I have installed Windows Identity Foundation as a role. It is necessary for this to be 
    I have also noticed that all updates for a couple of weeks have failed. I have 2 other servers in the farm, both of which are joined to the same private network cannot look for updates with another error. Not sure if these are related.
    Anyone know of anything like this?
    Thanks in advance

    right-click the file and select properties.
    On "Digital Signatures" the tab, select the "Microsoft Corporation" entry and click "Details"
    In the "Digital Signature Details" dialog, click "View Certificate"
    In the  "Certificate" dialog, click "Install Certificate..."
    In the "Certificate Import Wizard" dialog, select "Local Machine" (though current user might work, didn't use it, so I can not attest to it) and click "Next"
    Select the "Place all certificates in the following store" option and click "Browse"
    In the "Select Certificate Store" dialog, select "Trusted Publishers" and click "Ok"
    Back in the "Certificate Import Wizard" click "Next"
    You should now be at the "Completing the Certificate Import Wizard" step of the "Certificate Import Wizard" ... click "Finish"
    You should get "Import was successful"
    You should now be able to install the package.
    gimme some slamming techno!!!!

  • After soak test update, I get error messages repeatedly. The majority are "unfortunately, messaging has stopped", but you can replace messaging with "android os", or any other process, as it happens with more than just messaging. I have had numerous peopl

    After soak test update, I get error messages repeatedly. The majority are "unfortunately, messaging has stopped", but you can replace messaging with "android os", or any other process, as it happens with more than just messaging. I have had numerous people call and ask why I didn't reply to their texts...and I look, but have not received any new texts. YES, I have restarted phone. I have cleared data as well as cache on all apps. I have downloaded the vzw messaging app, which seems silly, since it happens with several different processes and apps, but all to no avail. I am missing texts from my employer, from my family. This did happen, but rarely, before this "soak test". It is now Kitkat version 19.6.3.obake_verizon.en.US. THIS is when I started having problems...like 50 times a day kind of problems! I have seen hundreds of posts all over the internet over the past 3 days. Does no one know how to fix this??? Shouldn't there be a way to revert phone to a pre-update state? and no, hard reset did NOT work!!!! I have been with verizon for well over 15 years, but I have not upgraded my lines and will not in July either. This is ridiculous. It's not like my games aren't working, it is my messaging and "android os"...my lifeline at work!

    kristinaf333,
    Oh no, I am sorry to hear your messages are not working since the software update. I greatlly appreciate doing all that troubleshooting to try and get the messaging application back in business. I know how much I rely on my messages so I can understand the urgency to get this resolved. Have you had a resolution ticket opened since you started experiencing issues with your messages? Does this happen with all contacts or just some? Please provide additional information to ensure we get to the bottom of this for you.
    KarenC_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • Black Screen with Cursor (Tried most solutions)

    To save your time and mine, I’ve tried all options in “press f8” and “recovery disk”. Over the past 3 days, I read almost all threads, videos, articles, and official MS help containing any mention of this problem. I also applied many commands, create

  • Help with iphoto book in iphoto 08

    Ok.. I made a book in iphoto 08 using the Crayon theme. the cover in my theme is blue... When I click order book... it only gives me two options for a cover... brown or black... am I missing something??? are these themes not available to print even t

  • Using Mail, sender and receiver addresses getting mixed.

         I'm using the mail app for my company gmail account (@companyname.com) we have them set up for the whole office. Well what appear to be normal when I write an email and sent it to the desired person, it will later say on their screen or mine tha

  • Http authentication failing on all sites, does not even prompt me for user/pass

    Hi, After an apt-get update, sites that use HTTP authentication do not prompt for credentials and go straight to HTTP:401. It is only affecting this browser, others have no issues. I also updated a FF in Windows, no issues there after the update.

  • Interesting effects shot. Any takers?

    I realize this may not be the correct forum for this, but if there's a better one, someone please point me to it. I may need to do an effects shot involving miniatures. Specifically, a miniature exploding. I have an Canon XL1 for the shoot, but I've