Silently uninstall applications installed with Exceptions Deployment tool

How are we supposed to uninstall applications installed via the Exceptions Deployment tool?
At the time of writing this I can only see listed install as a supported workflow.
It would be a great help if we could have an uninstall workflow too.
Any suggestions on how to work round this also appreciated.

A little more detail on uninstalling AIR applications
http://help.adobe.com/en_US/air/redist/WS485a42d56cd19641-70d979a8124ef20a34b-8000.html#WS 485a42d56cd19641-70d979a8124ef20a34b-7ffa

Similar Messages

  • Deploy a web service with the deploy tool (J2EE)

    Hi!
    I want to deploy a web service with the Deploy Tool (J2EE 1.4).
    (For info, I'm working on Win 2000.)
    I have the following error when I'm trying to deploy:
    distribute: C:\monHello2\monApp.ear
    Deploy action running...
    Deployment failed on target localhost:4848_server : Fatal Error from EJB Compiler -- jaxrpc compilation exception
    !!! Operation Failed !!!
    Someone can help me, please? What's the problem?
    Other question: when I create the WAR file, I have to add : my interface class, my implementation class, my others java classes, my WSDL file and my mapping.xml file.
    Should I add the .jar that is used by one of my class???? I think yes, but...
    thank you and excuse me for my english... ;o)

    Only primitive types can be returned? Is thatcorrect????
    true - for more details check out section 3.4.1.3 of
    this book which is available for purchase or online
    http://java.sun.com/blueprints/guidelines/designing_w
    ebservices/I meant to say primitive type and "special POJOs" called "JAXRPC Value Types" - check out the reference I listed

  • Problem deploying web service with the deploy tool (J2EE)

    Hello,
    I am trying to deploy a sample Web Service on the Sun Java System Application Server Platform Edition 8.1 2005Q1.
    I run into a deployment problem ("jaxrpc compilation exception") when I have one of the web methods declared (in the endpoint interface) to throw a service-specific exception. The problem disappears when I change the declaration to throw an Exception.
    Here is the exception class:
    public class StockNotFoundException extends Exception {
    private String message;
    public StockNotFoundException(String message) {
    super(message);
    this.message = message;
    public String getMessage() {
    return message;
    the endpoint interface:
    public interface StockServiceIF extends Remote {
    // the service methods
    public boolean sellStocks(String ticker, int quantity)
    throws RemoteException, StockNotFoundException;
    and here are the error messages I am seeing:
    in the deploy tool dialog:
    distribute: C:\Beginning J2EE 1.4\Ch13\StockServiceApp\StockServiceApp.ear
    deployment started : 0%
    Deploying application in domain failed; Fatal Error from EJB Compiler -- jaxrpc compilation exception
    ; requested operation cannot be completed
    !!! Operation Failed !!!
    !!! With The Following Failure Messages !!!
    Deploying application in domain failed; Fatal Error from EJB Compiler -- jaxrpc compilation exception
    ; requested operation cannot be completed
    Fatal Error from EJB Compiler -- jaxrpc compilation exception
    and in the server log:
    [#|2005-02-01T18:30:47.856-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|DPL5109: EJBC - START of EJBC for [StockServiceApp]|#]
    [#|2005-02-01T18:30:47.856-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Processing beans ...|#]
    [#|2005-02-01T18:30:47.936-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.stream.out|_ThreadID=12;|
    error: incorrect fault part name for fault "StockNotFoundException" of operation "sellStocks": "StockNotFoundException"|#]
    [#|2005-02-01T18:30:47.966-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Total Deployment Time: 1001 msec, Total EJB Compiler Module Time: 0 msec, Portion spent EJB Compiling: 0%|#]
    [#|2005-02-01T18:30:47.966-0600|SEVERE|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Exception occured in J2EEC Phase
    com.sun.enterprise.deployment.backend.IASDeploymentException: Fatal Error from EJB Compiler -- jaxrpc compilation exception
         at com.sun.enterprise.webservice.codegen.JaxRpcRICodegen.accept(JaxRpcRICodegen.java:206)
         at com.sun.enterprise.deployment.EjbBundleDescriptor.visit(EjbBundleDescriptor.java:584)
         at com.sun.enterprise.deployment.Application.visit(Application.java:1333)
         at com.sun.enterprise.webservice.codegen.JaxRpcRICodegen.run(JaxRpcRICodegen.java:103)
         at com.sun.ejb.codegen.IASEJBC.doCompile(IASEJBC.java:785)
         at com.sun.ejb.codegen.IASEJBC.ejbc(IASEJBC.java:563)
         at com.sun.enterprise.deployment.backend.EJBCompiler.preDeployApp(EJBCompiler.java:340)
         at com.sun.enterprise.deployment.backend.EJBCompiler.compile(EJBCompiler.java:209)
         at com.sun.enterprise.deployment.backend.AppDeployer.runEJBC(AppDeployer.java:284)
         at com.sun.enterprise.deployment.backend.AppDeployer.deploy(AppDeployer.java:176)
         at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.java:107)
         at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:146)
         at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:71)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:633)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:188)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:520)
         at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:143)
         at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:171)
    |#]
    I would appreciate any pointers to resolving this issue.
    Thanks,
    Satyen

    Can you post the WSDL that was generated by the tool
    for this interface ?I generate the WSDL using "wscompile -define -nd . -classpath ..\build\classes -f:wsi service-config.xml", and here it is:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="StockService" targetNamespace="urn:stockService" xmlns:tns="urn:stockService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <schema targetNamespace="urn:stockService" xmlns:tns="urn:stockService" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="StockNotFoundException">
    <sequence>
    <element name="message" type="string" nillable="true"/></sequence></complexType>
    <element name="StockNotFoundException" type="tns:StockNotFoundException"/></schema></types>
    <message name="StockServiceIF_sellStocks">
    <part name="String_1" type="xsd:string"/>
    <part name="int_2" type="xsd:int"/></message>
    <message name="StockServiceIF_sellStocksResponse">
    <part name="result" type="xsd:boolean"/></message>
    <message name="StockNotFoundException">
    <part name="StockNotFoundException" element="tns:StockNotFoundException"/></message>
    <portType name="StockServiceIF">
    <operation name="sellStocks" parameterOrder="String_1 int_2">
    <input message="tns:StockServiceIF_sellStocks"/>
    <output message="tns:StockServiceIF_sellStocksResponse"/>
    <fault name="StockNotFoundException" message="tns:StockNotFoundException"/></operation></portType>
    <binding name="StockServiceIFBinding" type="tns:StockServiceIF">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
    <operation name="sellStocks">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal" namespace="urn:stockService"/></input>
    <output>
    <soap:body use="literal" namespace="urn:stockService"/></output>
    <fault name="StockNotFoundException">
    <soap:fault name="StockNotFoundException" use="literal"/></fault></operation></binding>
    <service name="StockService">
    <port name="StockServiceIFPort" binding="tns:StockServiceIFBinding">
    <soap:address location="REPLACE_WITH_ACTUAL_URL"/></port></service></definitions>
    ---------------------------------------------------------------------------------------------------------

  • Csa 6.0 problem with software deployment tool

    Hi Guys,
    I am having some problems with csa 6.0 and a software deployment tool called capainstaller, it resides on the client and picks up packages on some server shares and executes them from there, or copies it locally. We have added it to the class that defines mass software deployment like we did in 5.2, which works fine in 5.2, in 6.0 we are getting alot of applications getting put into @untrusted, for some reason. I can't figure out if i am supposed to make general exeptions for shares and local directories where the deployment tool reads its packages from ? In that case which classes should i modify, i am seeing alot of classification from the module called Security - Untrusted Content Classification, and this gives me alot of headaches.

    Well, the Mass Software Deployment class, is where you are supposed to put marimba, in 5.2 this was fine, and worked for most of the installations i have done. in 6.0 the big break came when i found out that you can't use UNC network paths in a file set, it just doesn't work. If you put it is a literal straight in the same field as the altiris and sms are in the built-in rules, that works, maybe your marimba agent is also part locally installed and part gotten from the network like ours is ?

  • MDT 2013 Windows 8.1 application install with reboot problem

    Hello!
    I have a problem with an application install on Windows 8.1. I'm trying to install two applications and have activated "Reboot the computer after installting this application" for the first application. After rebooting the deployment window does
    not show up agagin. BDD.log shows, that the deployment starts after the reboot but seems to hang, before the UI shows.
    I tried to install this two applications under Windows 7, which works without any problems.
    Here is the BDD.log for the failed deployment: http://pastebin.com/PbUH1LUq
    Can anyone confirm this problem with MDT 2013 and Windows 8.1? Any ideas how to fix this?
    Additional information: Further testing showed, that this problem just occurs, if the application install gets started separately after deploying the OS. If the applications are installed in one deployment together with the OS, everything works fine.

    I did the same install on Windows 7, which worked without any problems. Here is the log file: http://pastebin.com/Qgn2PzyC
    To make it clear:
    If I run a Lite Touch Install task sequence to install Windows 8.1 and install the two applications within this LTI, everything works fine. The computer reboots after installing the first application and the deployment goes on and finishes successfully after
    the reboot.
    If I first install Windows 7 or Windows 8.1 via LTI and then (after LTI successfully finished) start a separate application install (using a custom task sequence with only one "Install Application" task in it), everything works fine with Windows
    7 (installation continues and finishes after the reboot) but fails with Windows 8.1.
    In Windows 8.1 the computer reboots after installing the first application, but after rebooting, the installation does not start again.
    Keith, as you said, my environment is corrupted, I created an new fresh deployment share, just added the two test applications and the custom task sequence and tried again. Same result, Windows 7 works fine, Windows 8.1 fails by not starting the installation
    after the reboot.

  • Web Deploy Package : Create WebDeploy package without installing the web deploy tool on remote server.

    Hi,
    I didn't get any valid category for this item. Hence creating it under C#.
    I have two machines source machine, where the web deploy tool is installed and the target machine where the websites are hosted.
    I want to run the web deploy command in the source machine and it has to create the Web Deploy package for the website hosted on the Target server.
    Basically the Web deploy tool will NOT be installed on the destination server, but still i want to create packages from it. How this can be achieved?
    Regards,
    Pradeep R

    Hello,
    you can move your thread to the asp.net forum, in the installation ans setup section:
    http://forums.asp.net/17.aspx/1?Installation+and+Setup

  • Cant uninstall application installed from source with pacman.

    I made and installed the songbird-nightly program. It couldnt import a library, thus, wasnt even worth fully testing, unless I was going to manually get it to read all of my songs-- which I will not do.
    Now, to get this off my computer, I tried several things, and then determined that I must not be using the right package name, so I ran:
    pacman -Q | grep songbird
    and it returned :
    songbird-nightly 20080720-1
    thus, I did:
    pacman -Rsc songbird-nightly-20080720-1
    and it returned:
    error: 'songbird-nightly-20080720-1': could not find or read package
    So, how do I get this poo off my computer.
    Ok, its not poo. I love mozilla and virtually every program they make, but right now, its poo.

    Misfit138 wrote:
    miesnerd wrote:i hate that it was that easy.
    Thanks though. Still learning the in's and out's of pacman. It's not exactly apt-get.
    Don't hate pacman for being perfect.
    If pacman is perfect, then how come it won't improve anymore?

  • Two step application install with reboot in between

    I have run into a interesting situation.
    1.  Deploying upgrade of IBM I Access from v5 to v7.  V5 was installed before SCCM was deployed. 
    Requirement
    * I have to uninstall v5 (script done to do this), reboot, then install v71 all in one step.
    * I have to publish this to the application catalog as a single step process.
    The obvious way would be to use a Task sequence to accomplish this, however; we can't put Task Sequences in the application catalog.
    Building a application just to "Uninstall" the previous version and reboot would not work either due to detection requirements and the reboot between.
    How can I run these 3 steps as one application in the application catalog?  Any ideas?
    Thanks
    Andrew

    hmmm...  V5 was installed before SCCM was deployed.  I have not tried this, but could I build v5 now and just use the Supersedence portion so the uninstall of V5 would be used?
    Would inventory detection tie the v5 application to each machine as detecting an installed app?
    Thanks so much!
    I "think" supersedence only works with apps that were installed from CM. Not sure though.
    John Marcum | http://myitforum.com/myitforumwp/author/johnmarcum/
    It doesn't matter was it installed through CM or not, it's all about detection methods. Here's what happens if supersedence is configured for the new app (v7)
    Because v7 supersedes v5, it will first check is v5 found based on the detection method of v5 that you've configured
    v5 is found and because v7 supersedes it and you've configured to uninstall v5 first, it will do it, after v5 is uninstalled, v7 will be installed
    You'll have to carefully test this, you could configure v5 to make mandatory restart by ConfigMgr client from the settings, it should do it it then. Also, I'm not 100% sure how the supersedence works if the deployment is made as an available to users (refering
    to Application Catalog you mentioned) instead of devices. If this was an available deployment to devices, ConfigMgr client would automatically uninstall v5 on the machines it's found and then install v7, no user action needed even though the deployment is
    available, this is by design of the supersedence function.

  • Language Pack Application Install via Linked Deployment Share

    I created an application for a Language Pack (French) to install in the task sequence.  I Created a batch file and pointed to the necessary .cab file.. my question is, where do I point it to in the bat file?  this is my script:
    DISM /Online /Add-Package /PackagePath:lp.cab /norestart
    bcdedit /set {current}locale fr-FR
    bcdboot %WinDir% /l fr-FR
    I have the files and the applications folder in the linked deployment share.. should the path be: /Packagepath:.\Applications\lp.cab ?  BDD log indicates everything installed successfully but nothing installs.
    I added this is my TS:
    SkipApplications=YES
    Applications001={b1900f04-0d66-4cce-9bbd-e1bfd0a8e463}

    To deploy Office 2010 va GPO, refer to the following video, follow the detailed steps in it to see if it works well:
    http://www.youtube.com/watch?v=dYPbFyLH66k
    Here's also a link for your reference:
    http://blogs.technet.com/b/office_resource_kit/archive/2010/01/19/deploying-office-2010-with-multiple-languages.aspx
    http://technet.microsoft.com/en-us/library/ff602181.aspx
    Hope it helps

  • How to run a pure java application client with ear deployed on 9ias

    Hello all,
    We want to run a pure java application client which is packed with target bean in the same ear file. In the application-client.xml we refer to some EJBs.
    We deployed the ear file which contains ejb jar module and application client module to oracle 9ias 904 through enterprise manager on unix. The jndi.properties we used looks like this
    java.naming.factory.initial=com.evermind.server.rmi.ApplciationClientInitialContextFactory
    java.naming.provider.url=opmn:ormi://opmn_host:opmn_port:oc4j_instance_name/application_name
    java.naming.security.principal=test
    java.naming.security.credentials=test
    Is there anybody knows how to run such an application client? Do we need to provide such a jndi.properties or not at all?
    Thanks,
    9ias user

    Refer OpenEJB User - Oracle ADF Essential and TomEE+
    Also refer Bug in tomee 1.5.2. Fixed in 1.6.
    https://issues.apache.org/jira/browse/TOMEE-756

  • Applications installed with pacman only start with root

    Hi,
    I used linuxdcpp a few times some weeks ago, but now when I try to run it in terminal nothing happens and...
    $ linuxdcpp
    $
    as if it closed directly after it starts.
    $ linuxdcpp
    $ echo $?
    returns 0. Also, I can run it in root without any problem.
    Since the time when it worked fine, I moved my home folder into another partition but I don't think it can cause the problem.
    Last edited by Zikael (2014-03-05 22:10:08)

    On my home folder, ownership & permissions don't seem to have actually changed :
    $ ls -l
    total 40
    drwxr-xr-x 2 antoine users 4096 5 févr. 16:19 Bureau
    drwxr-xr-x 3 antoine users 4096 10 mars 21:19 Documents
    drwxr-xr-x 24 antoine users 4096 8 mars 21:32 Fichiers
    drwxr-xr-x 4 antoine users 4096 6 mars 16:11 Images
    drwxr-xr-x 2 antoine users 4096 4 févr. 09:48 Modèles
    drwxr-xr-x 3 antoine users 4096 11 mars 13:21 Musique
    drwxr-xr-x 3 antoine users 4096 2 mars 04:03 My Games
    drwxr-xr-x 5 antoine users 4096 11 mars 12:44 Public
    drwx------ 2 antoine users 4096 11 mars 12:41 Téléchargements
    drwxr-xr-x 2 antoine users 4096 5 mars 10:51 Vidéos
    $ cd ..
    $ ls -l
    total 24
    drwx------ 44 antoine users 4096 11 mars 13:21 antoine
    drwx------ 2 root root 16384 26 févr. 22:02 lost+found
    drwx------ 16 test test 4096 9 mars 14:56 test
    I don't really know how they're supposed to be but I don't see any big difference with the test user I created and with which it works.
    If I want to copy my files to the folder of my new user, which command should I use and which dot files should I be specially careful with ?
    EDIT : It seems that all the applications don't cause the same issue : I just installed rsync, it works perfectly fine. I think that only applications with a graphical interface are concerned.
    Last edited by Zikael (2014-03-11 16:54:23)

  • Superseding Application Installed when NOT deployed and NOT set to Automatically Upgrade

    SCCM 2012 SP1  
    I have an application of Adobe Reader X which is deployed as "available" to the "All Workstations" collection.  (It is also installed as part of our OSD task sequence for all workstations, if that matters.) 
    Some months ago I packaged Adobe Reader XI and did NOT set it to supersede Adobe Reader X.  It was deployed as available to a small user collection.
    Flash forward to yesterday.  I wanted Reader XI to be available to all IS staff, but not to automatically install for any of them or to automatically replace existing Reader X installs for anyone.   I went into my existing Adobe Reader XI application
    and set it to supersede the Adobe Reader X deployment type.  I then deployed Adobe Reader XI as "Available" to my "IS Staff" user collection and did NOT select the "Automatically upgrade any superseded versions of this application." 
    Overnight, all existing installs of Adobe Reader X were replaced by Adobe Reader XI on all workstations that were powered on during the maintenance window.  I was understandably surprised and double-checked my deployment settings.  It *is* deployed
    as "available" to all IS staff and to the pre-existing user collection.  and verified that I do not have Adobe Reader XI deployed to ANY other collections other than the original small user collection and now to my IS Staff collection, both
    as "Available".
    I checked APPINTENTEVAL.log on some of the affected workstations and noted that once I had created the supersedence relationship, all workstations that I've checked started logging as "Applicability = Applicable" and as soon as the maintenance window
    started, they installed.
    I'm very confused.  I've used Application Supersedence many times, and it has never applied to a collection to which the superseding application was not deployed.  Can anyone suggest a mechanism I might have missed that made this app evaluate as
    applicable on every workstation that had Reader X deployed to it?  I'm confident that it should have have.

    Is Reader XI used in a (OSD) task sequence?
    Torsten Meringer | http://www.mssccmfaq.de

  • Run application developed with Oracle dev tools in Linux client

    Hi,
    In my organization we're using Oracle forms and reports as development tools and 10g database.
    We have developed an app that runs on Windows XP, and I would like to know what are the possibilities for it to run in a Linux client, such as Fedora, Ubuntu, etc.
    Is it possible? What would I need to do that?
    Thanks

    For Forms and Reports to run in Linux it (Linux) will need a Java plug-in.
    The last time I did this I used this:
    The file jre-6u12-linux-i586-rpm.bin was download from:
    http://www.java.com/en/download
    There should be instructions there on how to install and configure.
    I will include my short enable notes below: (Keep in mind these are about two years old)
    Enable and Configure
    1. Go to the plugins sub-directory under the Firefox installation directory
    This directory was:
    /usr/lib/firefox-3.0.1/plugins (On Red Hat AS 4)
    2. Enter the following command to create a symbolic link to the Java Plug-in for the Mozilla browser.
    ln -s /usr/java/jre1.6.0_12/plugin/i386/ns7/libjavaplugin_oji.so
    Note: Use ns7-gcc29 if Firefox was compiled with gcc2.9. (It was not)

  • Help with JWSDP Deployment tool

    Hi,
    I'm currently following what the tutorial is asking me to do regarding the application deployment of the converter application. However, when I try to use the deploytool to create the WAR file (GSApp.war), it seems that when I click Next button, an error with the following message appears.
    Error: Parent directories does not appear or is read-only. I have checked all the folders and it really exists as well as it is not read-only. Can anyone help me with this problem.
    Thanks,
    Patrick

    Patrick,
    I solve the problem.... Reinstall the JWSDP in a directory without underscore "_" in the folder name and you will solve the problem.
    Good Luck!!!
    Lucas

  • Error installing 365 Pro Plus from deployment tool

    I have 1 Windows 7 x64 PC which is failing to install from the deployment tool. It is built from the same image as 50-60 other PCs which had no issues installing using the same XML configuration file and network share. The log always shows the same few lines
    at the end implying there is some kind of pre-requisite missing. So far I have tried:
    Scanned for Windows updates and installed all available
    Ran the Fix It tool from KB 2739501 which said it could not detect any problems
    Checked that the registry entries did not exist for HKLM\Software\Microsoft\Office\15.0 and HKCU\Software\Microsoft\Office\15.0
    Checked "C:\Program files\Microsoft Office 15" does not exist
    Checked "C:\Program files (x86)\Microsoft Office 15" does not exist
    Tried creating a new local administrator account
    Uninstalled the previous version of Office
    The last few lines of the log are:
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run anhmn Unexpected Prereq::PrereqsFailed: OException has occured ErrorCodeOnly (failed MsiEnumProducts , Error:0x64a). Exiting bootstrapper. 
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run aoh88 Medium RunPrereqs::HandleStateAction Prereq check has failed. 
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run aoh9e Unexpected HandlePrereqFailure::HandleStateAction: Failure has occured with unknown action: 160 
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run aoh71 Medium BootstrapperState::OnError: Error has occured. Go to ExitBootStateMachine. 
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run aoh9f Medium BootStateMachine::ShowFailureUI: Showing failure UI. 

    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run anhmn Unexpected Prereq::PrereqsFailed: OException has occured ErrorCodeOnly (failed MsiEnumProducts , Error:0x64a).
    0x64a = 1610 (hex-to-decimal)
    MSI error reference:
    ERROR_BAD_CONFIGURATION
    1610
    The configuration data for this product is corrupt. Contact your support personnel.
    -=-=-
    Not terribly helpful. Are there other errors in the event log of the machine (maybe bad hardware or other issues)?
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

Maybe you are looking for