What is the state of JavaFX Deployment?

I did a search for deployment, self-contained apps, etc and found not a single thread in this forum about these topics.
I watched Mastering Java Deployment from JavaOne 2012 and I've proposed that my company leverage these technologies for our product to simplify our deployment to Enterprise customers.
I've done a lot of reading of the Java Deployment blog (https://blogs.oracle.com/talkingjavadeployment/) but it appears to have been abandoned when Igor Nekrestyanov left Oracle for Intel in Nov 2012.
Here is the latest update from that blog:
+"> fx:platform doesn't support the "basedir" attribute+
+Please use JDK8 builds from http://jdk8.java.net/download.html+
+Due to change of release plans some changes had been postponed till next 7u update and will NOT be available in 7u10. Packaging changes are among them.+
+Posted by Igor on October 29, 2012"+
Specifically what features were postponed out of Java 7u10?
It just says 'packaging changes'?
Which packaging changes were postponed?
If we plan to use JavaFX packaging to create a self-contained app from a Swing application, will that not work in Java 7u10 and is it implemented in the current JDK 8 builds?
Can you confirm whether or not this will work in any version of Java 7?
There is now more up to date documentation here (http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm). It says last update was April 2013, but indicates that the information applies to JavaFX 2.2.21 and not JavaFX 8. It covers self-contained applications and using JavaFX in Swing applications, but it is not completely clear to me that packaging Swing applications with JavaFX 2.2.21 is supported.
Where can I go to find the latest updates on JavaFX deployment now that the Blog is dead?
Will there be talks at JavaOne 2013? I really need to get updates on the latest state of JavaFX deployment before then.
Note: I posted comments on the blog and was told that I had to wait for moderator approval, but it has been many days now without those comments being posted. So I'm not sure that there is an active moderator.
Thank you.

@bouye
If you have time, you may wish to create feature requests against the deployer in the JavaFX jira for some of the items in your post.
Note that some of your requests such as pre-post packaging scripts might not ever be implemented in the deployment tools (or would only be implemented as a loose shell like the maven rpm plugin), but might be delegated to some of the package specific packaging tools which the JavaFX deployment tools delegate too (for example the rpmbuild tool for rpm scripts).
While the JavaFX 2 branch is pretty much receiving very few updates now and most of the development effort is on JavaFX 8, I think a bunch of fixes and feature enhancements to the deployment tools will be added in a forthcoming JavaFX 2.2.40 release.  There are 55 deployment issues addressed for 2.2.40.  Some of those fixes were performed six months ago, so it is frustrating that it takes so long for Oracle to officially release them - they did seem to be making such good progress on this a year ago.  If you accept or work around some of the warts in the self-contained application packaging process, the tools work pretty well (at least for me).
You can also find the deployment issues scheduled for Lombard (JavaFX 8.0).  Most of the stuff you mention is not in there I think, also I think a lot of the deployment tasks which are not currently completed will likely end up getting dropped from the Lombard release as JavaFX 8 goes through a feature freeze and restricted high priority bug fix lockdown.
It may be worth investigating 3rd party tools such as the JavaFX maven plugin or JavaFX gradle plugin, you can log feature requests (or contribute code) against those projects for additional features you require - the features might end up getting deployed quicker (as long as capable people are willing and have time to work on them) than trying to integrate into the main JavaFX deployment tool code.  The JavaFX maven plugin has picked up 54 stars and 13 forks on github, so it is a mildly active project.

Similar Messages

  • What is the best way of deploying a jsp and bc4j aplication

    Hi
    I would like to know what is the best way of deploying a jsp and
    bc4j aplication in ias 9i.
    thanks in advanced
    rjc

    In the page I simply referenced the facescontext directly... no need for a custom servlet.
    public void createcookie() {
    FacesContext fc = FacesContext.getCurrentInstance();
    HttpServletResponse resp = (HttpServletResponse)fc.getExternalContext().getResponse();
    Cookie userCookie = new Cookie("cookiename", "cookievalue");
    userCookie.setMaxAge(-1);
    userCookie.setMaxAge(3600);
    resp.addCookie(userCookie);
    return null;
    public String readcookie() {
    FacesContext fc = FacesContext.getCurrentInstance();
    ExternalContext ec = fc.getExternalContext();
    Map cookiemap = ec.getRequestCookieMap();
    if (cookiemap != null) {
    Cookie cookie = (Cookie) cookiemap.get("cookievalue");
    return cookievalue;
    For reference I could not get getCookies() method of HttpServletRequest to work.. it would only return JSESSIONID.

  • What is the best way to deploy/update custom security realm classes to WLS 6.0?

    From the WLS 6.0 console, I see that I can specify the Java class that
    implements my custom security realm but I am wondering what is the best way
    to deploy/update this code. I don't see a way to do this from the console.
    Does this mean that I have to manually copy the class files over that
    implement my custom security realm?

    Thanks Danut,
    A jar file seems to be a good way to package it up but it sounds like it
    still needs to be manually copied to each Weblogic server install directory
    post-installation and whenever it is updated. I thought it would be nice to
    be able to deploy/update the custom security realm by uploading it through
    the Console just as you can with web applications and EJBs.
    Brian
    "Danut Prisacaru" <[email protected]> wrote in message
    news:3aba2db0$[email protected]..
    You have to have your Custom Realm class in the class path. I usually havea
    jar file with all the Custom Realm classes and that jar I copy it in thelib
    folder. Then I modify "startWebLogic.cmd" and I add to the classpath
    ".\lib\CustomRealm.jar"
    set
    CLASSPATH=.;.\lib\weblogic_sp.jar;.\lib\weblogic.jar;.\lib\CustomRealm.jar;
    >
    Be aware that in order to have you custom realm besides creating thecustom
    realm using the console you also have to create a custom caching andchoose
    that one as your default caching realm.
    Here is how the security settings are looking in my "config.xml"
    <CustomRealm Name="CustomRealm"
    RealmClassName="Custom.appserver.weblogic.security.CustomRealm"/>
    <CachingRealm BasicRealm="CustomRealm" CacheCaseSensitive="true"
    Name="CustomCachingRealm"/>
    <Realm CachingRealm="CustomCachingRealm" FileRealm="wl_default_file_realm"
    Name="wl_default_realm"/>
    <FileRealm Name="wl_default_file_realm"/>
    <Security GuestDisabled="false"
    Name="mydomain" PasswordPolicy="wl_default_password_policy"
    Realm="wl_default_realm"/>
    Danut

  • What's the purpose of javafx.util.Pair K, V ?

    Hi,
    what's the purpose of javafx.util.Pair<K, V> if we can just use java.util.AbstractMap.SimpleEntry<K, V> for the same use cases?

    You are seriously asking why you should use a proper API-class over a static inner class of some random collection class?

  • What is the state if flex, and air development for air

    Hi,
    1- I wanted to know what is the state of affairs in flex and air as cross platform mobile development solutions?
    2- Are they still worth learning and spending time developing mobile application using these technologies?
    Becuase all the documnetation forum posts and most of the help material I come across is almost a year old.
    Any guidance in this regard would be greatly appreciated.
    Thank you.

    The right place to look for updates on Flex is http://flex.apache.org
    The good thing is that activities are still going on. The bad things are that:
    - Unless the dependency to Adobe air is cut, Flex as an open source project is bound to fail imho. See FlexJS for updates on that point
    - Current activties seem to be focused around making things more polished rather than working on hard stuff (typically developing an independent and open source runtime execution engine => flexJS)
    So...
    For a small company, home development, not so business critical applications, I recommend warmly Flex, since it is one of the best (if not the best) cross-platform mobile development environment (Very good performances if used appropriately, very good programming environment, lots of components, structured language, lots of documentation and tutorials, easy to design, etc.)
    for business critical applications... The risk is high !

  • What's the state out of the box?

    Got my board today. Going through the instructions at
    https://ms-iot.github.io/content/SetupGalileo.htm and I'm confused. I try to apply the image to the SD card and am told that the card needs to be empty. Sure 'nuf looks like a full Windows install is sitting on it. Yet I'm being told in Setup to apply another
    one - so what's on it?
    I tried plugging it in to my PC via the Ethernet cable, etc, and the Galileo Watcher picks up nothing.
    Following the instructions on Intel's site wants Arduino to be installed so the firmware can be updated - is this all accurate?
    I get the feeling the Setup docs and How-Tos need some *serious* going over.
    http://bc3te.ch/brandonh

    The instructions seem fairly simple.
    I'm not certain how you could be applying an image to an SD card and be told that the SD card needs to be empty when the instructions clearly state "Format the microSD card with the Fat32 file system" which would make the SD card empty.
    And if the instructions are followed they probably work. I don't see anywhere in the instructions to use the microSD card OOB. Do you? Or is there some reason you feel the need to do that? Regardless of what the instructions say? Just because you have to
    for no apparent reason? Or you cant plug the microSD card into your PC to see what the state of it is OOB?
    Write Windows to the microSD card
    Format the microSD card with the Fat32 file system.
    Open an Administrative command prompt:    
    Open the Start screen
    type cmd
    right click or tap and hold on Command Prompt, then select
    Run as Administrator
    If you are running on Windows 7 please follow
    these instructions before proceeding.
    In the command window, type the following:
    La vida loca

  • What is the best way to deploy an application ??

    Hi,
    Please advise me how to automate in a best way to Deploy 10 different applications(.ear/.war)
    to 10 different Clusters(containing 40 Managed servers) in wls6.1......and that
    too in a Production environment.
    I know that we can use weblogic Console to deploy an application BUT if i have
    2 unix boxes and each box contains 4-4 clusters(each containing 16-20 managed
    servers) .....then i have to open up 2 Admin server consoles to deploy each of
    the respective applications and that too deploying these application to 8 clusters.....OR
    i can use deploy commad to do the same.
    AND if i have like 100 clusters .....then i would have to "deploy" 100 times ......
    is there any way that we can BEST AUTOMATE this process.
    Thanks a lot.
    -sangita

    Thanks Tommy. but i would like to know a very important point here: this is using
    the weblogic.utility that you just talkd about.
    Suppose iam having an ADMIN server that has say 10 clusters and 50 managed servers
    underneath to take care.
    1 cluster each = 5 managed server
    now iam deploying a simple .war file to say a single managed server, i have found
    out that it takes a looot of time to get the application deployed.
    what do you say about this situation ?
    what is the best approach ??????
    -sangita
    "Tomy Mathew" <[email protected]> wrote:
    >
    >
    To deploy the application from the command prompt in WebLogic 6.1 you
    use the
    following command
    $JAVA_HOME/bin/java -cp $WL_HOME/weblogic.jar weblogic.deploy -port $WEBLOGIC_PORT
    -host $WL_HOST_IP $WEBLOGIC_CMD $WEBLOGIC_PWD -component $WL_Server_NAME:$WL_Server_NAME
    $WL_APPLICATION_NAME YourApplication.war
    $WEBLOGIC_CMD sould be DEPLOY for the first time deployment and UPDATE
    for redeployment
    For deploying in a cluster you better create a shell script which call
    the above
    command with different cluster ip address as a parameter.
    Tomy
    "sangita" <[email protected]> wrote:
    Thanks Rob for your expertise advise. I would check to see wls8.1's
    ANT tasks.....for
    wls6.1, i would guess shell scripts to be a better option for us.
    thanks again.
    Rob Woollen <[email protected]> wrote:
    If you're using 8.1, then it's pretty nice to use ant for
    configuration/deployment/starting and stopping servers etc. There's
    a
    wlconfig task to do configuration, wldeploy to deploy applications,
    wlserver to start/stop servers.
    For 6.1, it's probably not a huge win to use ant. It's up to you.
    If
    you're more comfortable using shell scripts, that's certainly a
    reasonable route.
    -- Rob
    sangita wrote:
    Thanks Rob.
    But all the stuff that ANT can do for me FOR DEPLOYMENT (ONLY) .....ican do it
    from a simple shell script too.
    And i understand of ANT's cross-platform environment and usage of
    JAVA
    .....but
    can i use ANT to do something like CONFIGURING my wls6.1 managed
    servers/clusters/creating
    managed servers/db connection pools ......and all the other configurationthat
    i do from wls console(or manually) ....????
    and if yes, do you know of any examples, suggestions, ideas ?????
    basically, if i need to sell(?) ANT to my juniors ......what are
    the
    basic reasoning
    i can put forward....keeping in mind that these guys use wls6.1 &
    wls8.1......and
    these guys do CONFIGURATION and DEPLOYMENT only.
    sorry for asking, may be these silly questions.
    thanks, sangita
    Rob Woollen <[email protected]> wrote:
    sangita wrote:
    Thanks Rob.
    Rob, do you still consider or suggest using ANT for deploying say
    20
    applications
    on a 10 clustered environment.Yes
    do you see any advantages using [ANT + weblogic.deploy]..... over
    simply
    using
    weblogic.deploy utility ???Yes. ANT essentially gives you a cross-platform environment that
    allows
    extensibility through java. It's very powerful.
    -- Rob
    -sangita
    Rob Woollen <[email protected]> wrote:
    sangita wrote:
    Rob,
    I have found the answer for my question #1 ...this is the URL:
    http://edocs.bea.com/wls/docs81/admin_ref/ant_tasks.html
    iam still hoping to hear back from you for #2, #3
    thanks a ton.
    "sangita" <[email protected]> wrote:
    Thanks Rob.
    quick question:
    1) do you know of any example which illustrates the use of ANT
    wrapper....or
    please
    direct me to a URL where i can find some documentation about
    it.
    2) does this ANT wrapper has any advantages over using weblogic.Deployer
    utility
    ??If you're doing deployment via ant, then it's a bit more convenientto
    use <wldeploy> rather than invoking a raw <java> process, but
    fundamentally it's just a wrapper around weblogic.Deployer
    3) i would certainly check to see weblogic.deploy for wls6.1
    ....can
    i use ANT
    for deployment purpose in wls6.1 ?You'll just need to wrap it in a <java> task
    See:
    http://ant.apache.org/manual/CoreTasks/java.html
    -- Rob
    Rob Woollen <[email protected]> wrote:
    If you were using WLS 7.0 or later, you could use weblogic.Deployer.
    If
    you were using 8.1, you could use wldeploy which is an ant task
    wrapper
    for weblogic.Deployer.
    In WLS 6.1, you'll have to use weblogic.deploy which is a bit
    cumbersome, but it's still certainly possible to script deployment.
    -- Rob
    sangita wrote:
    Hi,
    Please advise me how to automate in a best way to Deploy
    10
    different
    applications(.ear/.war)
    to 10 different Clusters(containing 40 Managed servers) in
    wls6.1......and
    that
    too in a Production environment.
    I know that we can use weblogic Console to deploy an application
    BUT
    if i have
    2 unix boxes and each box contains 4-4 clusters(each containing
    16-20
    managed
    servers) .....then i have to open up 2 Admin server consoles
    to
    deploy
    each of
    the respective applications and that too deploying these applicationto 8 clusters.....OR
    i can use deploy commad to do the same.
    AND if i have like 100 clusters .....then i would have to "deploy"100 times ......
    is there any way that we can BEST AUTOMATE this process.
    Thanks a lot.
    -sangita

  • What is the best way to deploy application that uses web services?

    Hi all,
    I'm having some problems figuring out the best way to deploy our app now that we've switched over to using web services.
    I'm fairly new to Java and web services. From what I understand, JNLP and WebStart are methods to deploy Java clients to users and not for creating war files and the like.
    Here's a little background:
    We have a large PowerBuilder/Oracle application. The db consists of over 500 tables and the client consists of several thousand PB components. A user creates "transactions" which contain a series of "sub-transactions" within. Most of the data is collected and stored locally in the client in a series of datastores. When the "finalize" happens, the records are validated and sent to the database.
    We are in the process of moving each of the subtransactions (currently in the PB client) into subPROCESSES on a java project. We are using the JAX-WS framework to develop the web services in Netbeans. These web services aren't much more than remote xml as the messaging technology. For writing data back to the database, we are using the Java Persistence API to function outside of an EJB container but will shortly be migrating to the Glassfish application server to use several of the EJB container frameworks including the EntityManager.
    We haven't attempted any type of deployment and are unsure of where to start. Any suggestions would be so helpful and appreciated!
    Thanks!
    Edited by: doubleEspresso on Jan 10, 2008 8:06 AM

    >
    I'm fairly new to Java and web services. From what I understand, JNLP and WebStart are methods to deploy Java clients to users and not for creating war files and the like. >Correct, while Java Web Start has 'web' in the name, it has little if anything to do with web applications - certainly not providing much toward their installation. It is for launching rich client GUI based (AWT, Swing, SWT..) applications onto the end-user's desktop.
    There are some parts of JWS that might seem peripherally useful to the installation of a web-app., but it is really not a 'good fit'.
    >
    ..Any suggestions would be so helpful and appreciated!>You might try the forums for the 'web tier' APIs.
    <http://forum.java.sun.com/category.jspa?categoryID=20>
    Or perhaps the forum 'Java Technologies for Web Services' (under 'enterprise technologies')
    <http://forum.java.sun.com/forum.jspa?forumID=331>
    This one in 'BigAdmin' seems particularly relevant, 'Set up and Deploy'
    <http://forum.java.sun.com/forum.jspa?forumID=550>

  • What is the best practice to deploy the SharePoint site from test to production environment?

    We are beginning to start a new SharePoint 2010 and 2013 development projects, soon developing new features, lists, workflows, customizations to the SharePoint site, customization to list forms and would like to put good practice (that will help in deployment)
    in place before going ahead with development.
    What is the best way to go about deploying my site from Development to Production?
    I am using Visual Studio 2012 and also have Designer 2013...
    I have already read that this can be done through powershell, also through visual studio and also via designer. But at this point I am confused as to which are best practices specifically for lists, configurations; workflows; site customizations; Visual studio
    development features; customization to list forms etc. You can also provide me reference to links/ebook covering this topic.
    Thanks in advance for any help.

    Hi Nachiket,
    You can follow below approach where the environments has been built in similar fashion
    http://thesharepointfarm.com/sharepoint-test-environments/
    if you have less data then you can use  http://spdeploymentwizard.codeplex.com/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/b0bdb2ec-4005-441a-a233-7194e4fef7f7/best-way-to-replicate-production-sitecolletion-to-test-environment?forum=sharepointadminprevious
    For custom solutions like workflows etc you can always build the WSP packages and deploy across the environments using powershell scripts.
    Hope this helps.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful
    Hi, can you answer me specifically with regards to the foll:-
    lists
    configurations
    workflows
    site customizations like changes to css/masterpage
    Visual studio webparts
    customization to list forms
    Thanks.

  • What does the statement: "Java has a standard!" mean?

    I'am writing a academic work. For that I need to compare Java and PHP. I found the statement "Java has a standard!" as advantage on a webpage, but what does it exactly mean???
    Edited by: drumn on Aug 6, 2008 5:45 AM

    drumn wrote:
    I'am writing a academic work. For that I need to compare Java and PHP. I found the statement "Java has a standard!" as advantage on a webpage, but what does it exactly mean???Ask the author.
    I'm not being facetious or trying to brush off your question. If you want to know what someone meant when they said something, ask them. It's the most direct line and gives the highest probability of getting a useful, accurate answer to your question.
    ~

  • What is the best way to deploy Web Dynrpo DC without NWDI?

    Hi, SDN Fellow.
    We are currently developed our WDP DC without using NWDI (we are just creating local DC of the Web Dynpro project.)
    Now, we need to send our deployment archive to the sys. admin team to transport them to Dev from Sandbox.
    I just wonder should I just deploy the ear file that located in the .../dc_name/gen/default/deploy/xxx.ear by using SDM? Or there is a more proper way for us to deploy our WDP DC works?
    I know that I can just set up the J2EE engine of the Dev / QA box and deploy them, but it doesn't seems like the right procedure to do so.
    Please suggest, thanks.
    Thanks.
    Kent

    Hi, Maksim
    > >>but it doesn't seems like the right procedure to do
    > so.
    What I means it does not make sense is deployment through NWDS.
    System admin usually will not install a NWDS to deploy the ear, but they will use SDM to deploy the ear files.
    I just need to verify there is the best practice to do so.
    Thanks for your answer.
    Kent

  • What is the best way to deploy a cert office wide

    We need to find a way to deploy a cert to 400 systems. What would be the best way to go about this please and thanks

    HELLO!!! WELCOME BACK!! I THINK YOU SHOULD USE
    deploy....Hey Thanks.
    is there any network congestion OR any other problem that i can anticipate before i use "deploy" utility. I have heared of some problems(i couldn't remember them now ....because honestly, i couldn't understand them atall when a BEA consultant told me those...).
    so, any problem that may arise ....that i need to think about before deploying ~10 applications to like ~70-80 clusters ....all at a time.
    thanks again for your advise. iam learning to see the big picture of application deployment.
    -sangita

  • What is the best way to deploy a java application ??

    Hi,
    I have a question about "deploying" a java application on to a weblogic server.
    Please advise me how to automate in a best way to Deploy 10 different applications(.ear/.war) to 10 different Clusters(containing 40 Managed servers) in wls6.1......and that too in a Production environment.
    I know of using Weblogic Console OR the "deploy" utility to do so ......BUT if i have like 100 clusters .....then i would have to "deploy" 100 times ......
    is there any way that we can BEST AUTOMATE this process.
    Thanks a lot.
    -sangita

    HELLO!!! WELCOME BACK!! I THINK YOU SHOULD USE
    deploy....Hey Thanks.
    is there any network congestion OR any other problem that i can anticipate before i use "deploy" utility. I have heared of some problems(i couldn't remember them now ....because honestly, i couldn't understand them atall when a BEA consultant told me those...).
    so, any problem that may arise ....that i need to think about before deploying ~10 applications to like ~70-80 clusters ....all at a time.
    thanks again for your advise. iam learning to see the big picture of application deployment.
    -sangita

  • What is the best way to deploy Lion over network

    Hi All...
    Ok... so I've created a boot disk using the image I downloaded from the app store..  (the one inside the application)
    and created a netinstall image using package maker and siu.  I transfer that image to the deployment folder om the server... and all seems to be working
    fine on the client side... except that right before installation I get an error saying the image is missing a component... Server...
    Does anyone know why I would get an error saying im missing the Server in my image when I'm not trying to install the server?
    Should I try creating a new boot disk and image in siu?
    Oh... and im burning the image to a disk... and using that as my source in siu... if that helps.
    Thanks for any help

    Thanks Danut,
    A jar file seems to be a good way to package it up but it sounds like it
    still needs to be manually copied to each Weblogic server install directory
    post-installation and whenever it is updated. I thought it would be nice to
    be able to deploy/update the custom security realm by uploading it through
    the Console just as you can with web applications and EJBs.
    Brian
    "Danut Prisacaru" <[email protected]> wrote in message
    news:3aba2db0$[email protected]..
    You have to have your Custom Realm class in the class path. I usually havea
    jar file with all the Custom Realm classes and that jar I copy it in thelib
    folder. Then I modify "startWebLogic.cmd" and I add to the classpath
    ".\lib\CustomRealm.jar"
    set
    CLASSPATH=.;.\lib\weblogic_sp.jar;.\lib\weblogic.jar;.\lib\CustomRealm.jar;
    >
    Be aware that in order to have you custom realm besides creating thecustom
    realm using the console you also have to create a custom caching andchoose
    that one as your default caching realm.
    Here is how the security settings are looking in my "config.xml"
    <CustomRealm Name="CustomRealm"
    RealmClassName="Custom.appserver.weblogic.security.CustomRealm"/>
    <CachingRealm BasicRealm="CustomRealm" CacheCaseSensitive="true"
    Name="CustomCachingRealm"/>
    <Realm CachingRealm="CustomCachingRealm" FileRealm="wl_default_file_realm"
    Name="wl_default_realm"/>
    <FileRealm Name="wl_default_file_realm"/>
    <Security GuestDisabled="false"
    Name="mydomain" PasswordPolicy="wl_default_password_policy"
    Realm="wl_default_realm"/>
    Danut

  • What is the best way to deploy Flash in the Enterprise?

    We would like to deploy Flash Player in our corporate environment.
    Users are NOT administrators of their local machines, so just installing it on the image and leaving it is not an option.
    Telling users not to click the large Adobe Flash Player has an update splash screen is also not an option.
    1) How do you install Flash Player in an Enterprise environment?
    Please include answer with a guided installation document, as the SCUP document is not end-to-end.
    2) How do you disable Flash Player update notifications?
    Please advise,
    Andy

    Hi,
    Thanks for this, but I am looking for a enterprise class solution: i.e. installing hundres of machines with automation and reporting.  We are already aware of the MSI, but the automatic installation recently started failing since we migrated to Windows 7 and users are non-admins.  We also plan on keeping UAC turned on, so running the MSI with the SYSTEM account in a script fails.
    Again, we are looking for an end-to-end solution, possibly using SCCM and SCUP.  In essence, documentation and web chatter points to being able to:
    1) automatically have SCUP poll Adobe.com for updates
    2) automatically have SCUP publish it to SCCM when available
    3) push it out to WSUS as an update
    4) clients automatically update it as part of Windows Update.
    I have the bits and pieces, but have failed putting it all together.
    I know I am not the only person administrating a large company and uses Flash.... help!

Maybe you are looking for