Applications with two deployment types makes uninstall button in software center "greyed" out.

Hi
SCCM 2012 R2 running on Windows server 2012 with Windows 7 clients.
We are publishing applications to users that are available (not required), so that they can be downloaded from the application catalog web site. We have som applications that needs more then one deployment type (different pre requirements depending
on OS architecture) and when I create two deployment types for one Application the uninstall button in Software center is greyed out? If i remove one of the deployment types so there is just one, well then the Uninstall button is available again.
An example is Itunes. I publish one Itunes application to the store that has two deployment types, one for X86 and another for X64 with requirments on OS architetcure. the correct version gets installed but the uninstall button is not possible to use. If
i remove one of the deployment types then the deployment button is not greyed out.
Is this a bug?
Thanks everyone. 

We will be installing CU3 this Friday. During the next week or so, I will deploy the CU3 client to the workstations.
I do not believe that the uninstall button issue will be addressed with this update either, according to what I have read so far.
If, by some small yet profound miracle, my uninstall button regains full functionality, I will gladly let all of you know.
I would hope that Microsoft would address this issue seriously, as I am sure the rumblings of dissatisfaction are beginning to grow louder with each passing CU that ignores the problem.

Similar Messages

  • I had Copernic Desktop Search installed with an add in to Firefox. On removing CDTS it has left the add-in and the remove button is inactive ie greyed out and I can not delkete it or see the folder in the extentions. Help appreciated to get rid of it.

    I had Copernic Desktop Search installed with an add in to Firefox. On removing CDTS it has left the add-in and the remove button is inactive ie greyed out and I can not delkete it or see the folder in the extensions. Help appreciated to get rid of it.

    uninstalled firefox ....deleted all files still remaining under mozilla firefox directory in program files ... to avoid having to reprogram all my settings, reisntall all addons as well .. I did not remove anything from mozilla firefox that is stored in either appdata or under the windows users directory (if any)
    ... the as suggested reinstalled the latest version of the firefox browser using the link you provided in the email ..; tested and several issues still remain present and unresolved ....
    so please this is urgent or I will have to jump browsers and start using chrome .. because we work 14 hours a day 6 (sometimes 7) days a week, to get ready for the launch of our newest venture and we cannot lose that much days on browser related issues ... so please instead of putting me through week long step process .. of do this .. do that .. can you please actually look into the issue from your end .. I use firefox for so many, many years thta I deserve this kind of support .. thnx Robert

  • IPhone V will not sync.  The sync button in itunes is greyed out.

    Have synced many time without problems but now the iPhone shows up in Devices, but the sync button is greyed out.  If I make a change to any of the parameters for syncing the "Apply" button shows up normally and I can click "Apply" but then the synch button immediately appears butis greyed out.

    Hi Fbrown,
    Do you have a firewall turned on? If so, try turning it off to see if it resolves your issue.
    Cheers,
    GB

  • TS4002 when I was assigned my ".me accounts.... I used the name of the company that I worked for. Then I received a iCloud account.  The problem is I want to change the two original names but can't because they're greyed out.  Is there anything I can do?

    When I was assigned my ".me accounts I used the name of the company that I worked for. Then I received a iCloud account.  The problem is I want to change the two original names but can't because they're greyed out.  Is there anything I can do?
    Thanks in advance,
    Majormidi

    http://discussions.apple.com/thread.jspa?messageID=3366422
    Odd, the link works for me.
    -mj
    [email protected]

  • Using a form with two input type="submit" ... buttons...

    Hello All!
    I'm using a form to add and remove parameters for a service definition.
    <form action="serviceinput.jsp" method="post">
                   <table>
                        <tr>
                             <td><b>Level</b></td>
                             <td><b>Fieldname</b></td>
                             <td><b>Stucturename</b></td>
                             <td><b>Type</b></td>
                             <td><b>Format</b></td>
                             <td><b>Optional</b></td>
                             <td><b>Semantics</b></td>
                        </tr>          
         <%
                        for (Iterator iterParameters = parameters.iterator(); iterParameters.hasNext();)
              Parameter parameter = (Parameter) iterParameters.next();
         %>
                        <tr>
              <td><%= parameter.getLevel() %></td>
              <td><%= parameter.getFieldname() %></td>
              <td><%= parameter.getStructurename() %></td>
              <td><%= parameter.getType() %></td>
              <td><%= parameter.getFormat() %></td>
              <td><%= parameter.getOptional() %></td>
              <td><%= parameter.getSemantics() %></td>
                        </tr>     
         <%
         %>
                   </table>
                   <input type="submit" name="<%= parameters.addParameter() %>" value="add"/>
                   <input type="submit" name="<%= parameters.removeParameter() %>" value="remove"/>
              </form>
    The special thing about is, that I'm using two <input type="submit"...> buttons.
    The idea is, that I'd like to add one more row with attributes by clicking the "add" button and removing one row by clicking the "remove" button.
    If I use just one of them, it works fine. If I use both of them, nothing happens at all.
    Isn't it allowed to use two <input type="submit"...> fields?
    Is there an alternative? How can I implement my form the correct way?
    Thanks a lot in advance to all!
    Regards,
    Tomi

    Hi,
    Hai Tomi ,
    As swati already Explained U can try it with buttons,
    But u have to make a Hidden field and set the value of the hidden field
    with the Javascript code after pressing the button , Call a client side function which has an argument as given below
    Validate the Flag field in the JSP file
    <script language=javascript>
    function Validate(s)
    if(s==1)
         document.forms['ServiceInput'].elements["flag"].value="add";
    else
         document.forms['ServiceInput'].elements["flag"].value="Remove";
    document.forms['ServiceInput'].submit();
    alert("hai");
    </script>
    <form name="ServiceInput" action="serviceinput.jsp" method="POst">
    <table>
    <tr>
    <td><b>Level</b></td>
    <td><b>Fieldname</b></td>
    <td><b>Stucturename</b></td>
    <td><b>Type</b></td>
    <td><b>Format</b></td>
    <td><b>Optional</b></td>
    <td><b>Semantics</b></td>
    </tr>
    <%
    for (Iterator iterParameters = parameters.iterator(); iterParameters.hasNext();)
    Parameter parameter = (Parameter) iterParameters.next();
    %>
    <tr>
    <td><%= parameter.getLevel() %></td>
    <td><%= parameter.getFieldname() %></td>
    <td><%= parameter.getStructurename() %></td>
    <td><%= parameter.getType() %></td>
    <td><%= parameter.getFormat() %></td>
    <td><%= parameter.getOptional() %></td>
    <td><%= parameter.getSemantics() %></td>
    </tr>
    <%
    %>
    </table>
    <input type=hidden name=flag value="bb">
    <input type="Button" name="b1" value="add" onclick= "Validate(1)">
    <input type="Button" name="b2" value="remove" onclick= "Validate(2)">
    </form>

  • PCR with two notification types

    Namaste all.
    Is there any way to customize a PCR which contains two notification types.
    I want SPEG function combined with SPSD. SPEG has a notification type 56 and SPSD has 57. While customizing the PCR, i'm unable to include these functions.
    Regards,
    Krishna Murthy

    I will give you the detials of the Function modules used for this in the backend, all you have to do is to combine both the functionalities and make a single custom FM which solves your requirement and goahead.
    The function modules to perform personnel actions are scenario specific and can be found in the function groups HRWPC_PCR_xx_ACTIONS. They are called HRWPC_PCR_xx_TRANSACTION_PA40 and they differ by the fields that are pre-filled. Those function modules are only available for scenarios that allow stand-alone personnel actions: In the standard delivery, the scenarios SPEG, SPPA, SPWT, SPSE and SPSD are linked with a stand-alone personnel action.
    These function modules first get the table SPECIAL_DATA to get the form data that is filled into a table PROPOSED_VALUES that is afterwards used to pre-fill infotype data. Then the function module HR_MAINTAIN_MASTERDATA is called with the personnel number, the personnel action stored for the scenario and with the effective date as start date. Furthermore the copy mode (actio = u2018COPu2019) must be chosen and the dialog_mode is set to u20182u2019. The table PROPOSED_VALUES pre-fills the data in the infotypes that are called within the personnel action.
    In order to trigger a personnel action, the function module HR_MAINTAIN_MASTERDATA must be chosen instead of HR_INFOTYPE_OPERATION that does not offer capabilities to prefill data in infotypes called within the personnel action.

  • One application with two projects, nothing works....

    1st of all hope here is the right place to post this question. And sorry for a bad title, but I couldn't think of nothing better.
    2nd, hello everyone!
    And now:
    I have created a new application in JDeveloper 11.1.1.1.0 and started a project (lets say EXAMPLE_P). I had problems integrating the project with an already existing library (which I did as well). Therefore I opened the project of this library (LIBRARY_P) in the same application as EXAMPLE_P project. Now I wanted to debug, like I used to do in JDeveloper 11TP4, in the classes in the LIBRARY_P while running my EXAMPLE_P web-app.
    The problem is that LIBRARY_P has a web-application as example/test, but when I pack the jar I use just certain packages.
    Now when I come to JDev 11.1.1.1.0 (Studio Edition Version 11.1.1.1.0, Build JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407) none of the projects works, with or without dependency. For the LIBRARY_P web-application I use a DataSource that I no longer have, so everything falls apart and absolutely nothing works, not even EXAMPLE_P, which does not even have a dependency defined to LIBRARY_P. As soon as I remove LIBRARY_P from the application, EXAMPLE_P works.
    Can anyone shed some light on a workaround or explanation why?? (I know already that JDev tries to deploy both of them... question is for the love of god WHY!??!) TP4 was so much better.....
    Thank you

    Quoting Shay Shmeltzer: "In general if you have a library that you need to use in another project all you need to do is add the JAR to the project properties->libraries and class path."
    I agree, but I don't want to just use the library, I want to debug that library using my application.
    For this case my EXAMPLE_P is a wep-application, a portal. The LIBRARY_P is a CMS framework. They use struts, tiles, spring, etc....
    The library for the cms framework has just classes like actions, filters, listeners, etc, no jsps, no web.xml, just classes. Problem is that the JDev project (v. 11g TP4) for this cms framework has an example application (web-application with struts and so on), so that we can understand on a test (practical test) basis how it works, for a little experimenting, etc.
    Now my new portal uses the actions, filters, listeners, etc present in this library and I need to debug how my project behaves with these actions, etc. and where it fails.
    These projects were done for OC4J and therefore don't have a weblogic.xml, nor anything for deployment on weblogic, and I have in fact no interest in deploying it, I just want to debug the classes. On JDev 11gTP4 with OC4J I just defined project dependency and as long as it compiled it was possible to debug everything.
    Hope now I'm a bit more clear on what is my problem. Me and my metaphors... :)
    Thanks for the feedback
    Edited by: user11199488 on Sep 16, 2009 10:37 AM

  • BPM startting with two IDoc Types

    Hi All!!
    I have designed a BPM starting with two IDocs (MATMAS05 y CLFMAS02). Is designed with two start process in a switch. When one comes, wait a minute for the other. I'm not sure what IDoc comes first to the process, the I can lose data.
    Somebody has any idea tto encapsulate the infornmation of the 2 IDocs without a ZIDoc?
    Thanks and regards,
    Manuel Míguez.

    Hi,
    sounds like a
    > Collecting and Bundling Messages - Multiple Interfaces
    scenario like described here:
    http://help.sap.com/saphelp_nw04/helpdata/en/0e/56373f7853494fe10000000a114084/frameset.htm
    Regards
    Patrick

  • I am having a lot of issues but the big one is that my menu, buttons and toolbar keep greying out

    I am having multiple issues and they all seem related to the menu/settings:
    • Every time I start Firefox, my bookmarks toolbar is invisible. The box to display Bookmarks Toolbar IS checked but I have to disable and then re-enable it on the toolbar menu in order to get them to display again.
    • "Tabs on Top" keeps defaulting to off. I check the box every time I run the browser, but every time I close it, it's back off again when I restart.
    • I keep getting tabs that cease to be interactive. They are stuck open and I cannot close, move, or pin them. In fact, if I try to click on the tab, it selects the tab immediately to the right of it. It's like Firefox does not realise these tabs exist.
    All of these are frustrating but I could handle them if this also wasn't happening:
    • Periodically, all my menus and buttons grey out and I am unable to use any of them. I can't click bookmarks, I can't use my back/forward buttons, I can't access anything on the menus. I can still use the URL bar and interact with the websites themselves. It seems particularly prone to doing this while I am adjusting settings or toolbars which unfortunately I have to do a lot because of the aforementioned issues. I have not yet been able to use the browser for longer than 15 minutes before it happens. I am having to restart it constantly.
    Potentially Helpful Information:
    I have reinstalled Firefox (once as an upgrade, once I uninstalled the original one first) several times at home in hopes this would help, but it has not.
    I am using Windows 7. (at work I am still running 2k and Firefox 4 works great)
    The only addons I am using are Morning Coffee, Personas, Adblock and Noscript. I use them also at work with Firefox 4 without issue. They are all updated for the latest version. Additionally, disabling them makes no difference in the presentation of these issues.

    If you are having that many issues, and if you have tried all five of the Five Rs, then what I would do is take it to an Apple store to the genius bar and let them look at it. It surely sounds as if there might be something wrong with the iPod itself, and if there is, and they can't fix it, they will give you a new one on the spot (assuming they have them in stock).
    12" PB, Mac Mini (x2), G3 iMac (x3), G4 iMac, G5 iMac, Centris 610, SE30, Mac+ Mac OS X (10.4.4) 3G iPod, iPod shuffle, iPod nano

  • Applications Installed through task sequence not showing up in Software Center

    In the task sequence we use for our OSD Windows 7 machine build, we have Custom-Install Application steps which install a number of of our Applications.  Each of these Applications has the "Allow this application to be installed from the Install
    Application task sequence action without being deployed" checkbox checked.  All of the Applications have the following properties set:
    Installation behavior: Install for system
    Logon requirement: Whether or not a user is logged in
    Installation program visibility: Hidden
    When a machine is built using this task sequence, all of the Applications install successfully - they show up in Control Panel\Programs and Features, and they run correctly. However, none of them show up in the Software Center. I'm not seeing anything in
    any of the logs that indicates a problem, and the Software Center remains empty even after running all the client evaluation cycle actions  
    Interestingly, if I add a couple of the newly build machines to a collection, then target deployments for the already installed Applications to that collection, after running the Machine Policy Retrieval and Evaluation Cycle the Applications immediately
    show up in Software Center as installed.
    Does anyone know if Applications installed through a task sequence do not show up in the Software Center by default, or could you give me some troubleshooting tips if this is not normal?
    Thanks for any suggestions!
    SCCM 2012 SP1, Single site, W7 clients

    Why you deploy applications through task sequences? Task sequences are built and meant to be used with OSD, not application deployment.
    To my knowledge, if you have application install step in a task sequence and you deploy that task sequence to a collection of machines, the software center on those machines only sees the task sequence itself, not the applications inside the task sequence.
    If you want your applications to be shown in the software center, change the method of deploying stuff and deploy applications as they're are meant to.

  • BCALV_EDIT_02 - Edit button making the ALV grey out, i want to retain??

    Dear Friends,
    My problem:
    want to retain the appearance of ALV with a column Editable.
    I observe same thing is happening with example program BCALV_EDIT_02, when we click 'Edit' button, it is making Airfare Editable but all other columns are greyed out.
    My problem is v similar. I want to retain the apprearance as it used to be when non-editable mode, but i want a column to be editable.
    What is the solution. Do i have to  pass any other things?
    Regards,
    Simha

    On clicking on EDIT button, you have to enable only the column which you want to edit and make it ready for input.
    Refer to the below thread for more information:
    [Re: Alv grid: editable individaul fields or editable rows]
    Get back to me if you still have doubts.
    Regards,
    Lakshmi.

  • PLAY button and search bar greyed out

    Hello!  I've had an issue the past couple of days where my play bar and the search bar are greyed out. I can still play music, and pause it by clicking next to the track currently playing, but the main controllers at the bottom do not work. This persisted through the update I just ran on Spotify, updating it to the most recent version, 1.0.2.6.g9977a14b. See attached image for how this looks in my client. I have a premium subscription if that makes any difference, and as said, I can still play music. Thanks for the attention,Nuala ETA: And of course another update gets pushed out after I post this message, and I now have a functioning play button again. Never mind this. :) 

    Hello:
    Fantastic glad it got fixed with an update. Rock on \m/

  • Build Button in Encore CS4 Greyed Out

    Hi working in a College using CS4 Suite Encore on a LAN.  When an administrator logs on the Build button is OK.  When student user logs on Build button greyed out and unavailable.  What needs adjusting to allow student users to make the Build button active without granting Admin rights ? - Thanks, Michael

    Here are just a few things to chew on. Encore does not support burning 24fps Bluray.
    http://kb2.adobe.com/cps/405/kb405543.html
    http://forums.adobe.com/message/1989101
    http://forums.creativecow.net/thread/145/863669
    http://forums.creativecow.net/thread/145/863820
    http://www.netblender.com/main/resources/wikipapers/aacs-for-independent-producers/
    http://forums.adobe.com/thread/400159
    http://muvipix.com/phpBB3/viewtopic.php?f=57&t=5980
    http://www.emedialive.com/Articles/ReadArticle.aspx?ArticleID=14528
    http://digitalcontentproducer.com/videoencodvd/revfeat/bluray_blues/
    http://forums.adobe.com/thread/398740
    http://mograph.net/board/index.php?showtopic=16700
    http://forum.videohelp.com/topic346292.html

  • My Firefox 10 navigation buttons are present but greyed out.

    My Firefox 10 navigation buttons are present but are always greyed out. They have been like this for several versions of Firefox and I cannot find out how to make them work again.

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • HT5361 I have Snow Leopard on my late model IMac. I downloaded Mountail Lion and paid for it from the Mac Store. It will not install. It takes me through several pages and then button to install is greyed out. A message that this disc is used for Time Mac

    I have a late mode IMac 27" running Snow Leopard. I downloaded Mountain Lion from the Apple Store and paid for it. When I trie to install it took me through the first few pages of installation such as agrreeing to terms and the Lion Page showed up asking where I wanted to intall Mountain Lion. The install button was greyed out. I also had a message this disc is used for Time Machine. I had no other disc to choose from. Time Mahine was in the OFF position. I tried hooking up an external drive and tried using it as th Time Machine Backup. That did not work and it also said this disc is used by Time Machine. I have read of several other cases like this but have found no solution other than doinh a complee wipe of the hard drive and doing a reinstall which I really want to avoid if I can.

    Look at the root of your hard drive for a folder called Backups.backupdb.
    Or, a sparse bundle disk image for one of mobile computers that might have tried to back up to your Mac.
    If you have those, remove them and try again.

Maybe you are looking for

  • DSLR footage no longer recognized? Adobe Premiere Pro 8.2.0, OSX 10.10.2

    A few months ago I upgraded my mac to Yosemite, and around the same time updated Premiere. Premiere CC 2014 Now has major issues with DSLR footage. First, I was able to get some DSLR footage in, but whenever I scrubbed through it in the timeline or s

  • Line vendor Items FB1LN

    Hi guru's, I try to display the vendor line items in my program per Company Code, Vendor number, Profit center,  Account, for after that to do a resposting for the atypical balances. I select the datas from BSIK/BSAK table joined to Falglflext table.

  • Time compression / expansion

    New to Logic Pro, need help. I make commercials and constantly have to time compress or expand voiceovers to fit to the donut length in the music beds. Is there an easy way to accomplish this?? These will be voice audio files, not midi files. Also ho

  • Search-MailboxAuditLog is empty - Mailbox Audit Logging not working in Exchange 2013 CU6 environment

    Hello, i activated Mailbox Audit Logging for Admin, delegate and owner with all supported operations (update, delete, etc..) like mentioned here: http://exchangeserverpro.com/using-exchange-server-2013-mailbox-audit-logging/ But also two days later (

  • Cast to DATETIME Function?

    Please someone correct me if I'm wrong, but it seems you can use the cast function to convert correctly formatted data to date, timestamp, etc, but it is not possible to cast to datetime? OBIEE 11.1.1.6.2 Thanks, Geo