Sccm Software Center Uninstall Greyed Out
Posted By admin On 08/05/19May 10, 2015 If I refresh Software Center the Uninstall button is greyed out of that app. If I change the focus to another package in Software Center and then click on the first app again the Uninstall button comes back. Mar 1, 2018 - SCCM12R2 App Installed - Install Uninstall Greyed Out. Via Software Center), and uninstall works as well. Popular Topics in Software. Nov 14, 2017 - SCCM 2. 2 R2 application uninstall button is grayed out. An application cannot be uninstalled using Software Center when it contains more.
In SCCM 2012 R2 RTM,
There is a known issue that if an application contains multiple Deployment Types, after the application gets installed successfully on the client as available, uninstall button in the software centre is disabled and there is no easy way to perform Uninstallation of the software.
In my example, I have used the application name as 'Orca'
Here are couple of approaches:
Approach 1:
Launch wbemtest
Connect to rootccmclientsdk namespace
Query CCM_Application to get the application (Orca) installed on the client and click show mof and store the information with you.
Now go back to wbemtest
Click ExecuteMethod
Select CCM_Application as class
Choose the method “uninstall” from the drop down
Click Edit Parameters
Enter Id, IsMachineTarget, Revision etc fields from the mof saved and keep rest of the fields as default (I believe null).
Click Execute
Now uninstall action gets trigged on the application.
Approach 2:
I have got the below code from http://social.technet.microsoft.com/Forums/en-US/e41a516f-210a-4124-8ceb-c70972d20168/ccmapplication-0-instances-found-via-powershell?forum=configmanagersdk
Run this powershell script.
$ComputerName = $env:COMPUTERNAME
$ApplicationName = 'Orca'
$ApplicationClass = [WmiClass]'$($ComputerName)rootccmclientSDK:CCM_Application'
$Application = Get-WmiObject -Namespace 'rootccmclientSDK' -Class CCM_Application Where-Object { $_.Name -like '*$($ApplicationName)*' }
$ApplicationID = $Application.Id
$ApplicationRevision = $Application.Revision
$Properties = $ApplicationClass.psbase.GetMethodParameters('Uninstall')
$Properties.EnforcePreference = 0
$Properties.Id = $ApplicationID
$Properties.IsMachineTarget = $false
$Properties.IsRebootIfNeeded = $false
$Properties.Priority = 'High'
$Properties.Revision = $ApplicationRevision
$ApplicationClass.psbase.InvokeMethod('Uninstall',$Properties,$null)
Approach 3:
Install SCCM 2012 R2 CU1 from http://support.microsoft.com/kb/2938441
I just installed ubuntu 11.10 from a usb stick.
After installation, none of the software which I had collected and run on 11.10 or 11.04 runs on it. Even my newly downloaded opera or chrome installations does not work. Midtronics celltron battery tester.
I do not have a internet connection.
Whenever i try to install any .deb file by double clicking it,software center opens up but the install button is grayed out.
Uninstall Sccm Client Manually
closed as off-topic by Braiam, BuZZ-dEE, Warren Hill, mikewhatever, Florian DieschJan 23 '14 at 20:23
This question appears to be off-topic. The users who voted to close gave this specific reason:
- 'Bug reports and problems specific to development version of Ubuntu should be reported on Launchpad so that developers can see, track and fix these issues.' – Braiam, BuZZ-dEE, Warren Hill, mikewhatever, Florian Diesch
6 Answers
Gdebi package manager is removed from default application set and unfortunately softwarecentre also stopped offline installation support from Oneric (but install option in the menu may still work)so you have to use command line for offline installation.
Sp flash tool failed to open com. try this
The button is greyed out because a deb
package doesn't contain all dependencies; they still need to be downloaded from the internet.
Deb packages usually only contain the files from the application itself, but not the other packages the program needs to work correctly. They're just referenced to in a text file inside the package.
You might want to give this a try:
http://www.webupd8.org/2011/12/portable-software-center-create-custom.html
You'll still have to install python-glade2
first though.
I know..old post (and I wrote a lot, in hopes a reader cares why), but 'greyed out install and remove buttons' / no reviews / no screen caps wasn't just driving me nuts; it's been annoying a lot of people. There are numerous irrelevant answers and altruistic guesses out there, even advice to give up on Ubuntu Software Center (USC) despite comments that Synaptic can be a good way to screw up your system..because the real issue is that you need USC not to care about the network state (especially when it's clearly wrong).
The most common fix appears to be Patches/Update USC/etc, and monitoring for errors by starting USC from a terminal (I had none), but for me and many others it looks like it's Network Connections. It didn't help that I answered the installer's 'which interface is your primary' question thinking it was temporary, which turned out to be permanent (forcing me to edit /etc/network/interfaces), but I installed 'Wicd network manager' because Network Connections was broken anyway. After this, USC always thought I was offline (so? I should be able to remove stuff, or install downloads). While you can always use the 'File' menu in USC, it's counterintuitive for it to work when the same buttons are all disabled.
Download game house bounce out gratis full version. Skip the following paragraph if you never got a network connection of any sort.
With one, you can do a simple sanity check: If you are using another network manager (like Wicd or have edited /etc/network/interfaces) see if Network Connections needs a kick. Right-click its panel icon (an 'up'/'down' arrow side-by-side. Google for how to put it there if it's missing). With USC open, try choosing 'auto' for whatever interface is working just fine, and viola!--USC immediately enables the 'install' and 'remove' buttons. If this breaks your connection, you can use 'dhclient', restart networking, use the menus, or maybe just restart (I'm not writing a network setup answer, so restarting should put you back where you were).
Regardless of online or offline, once I knew it was Network Connections, I found a post from Doctoa that says to run this in a terminal:
sudo stop network-manager
From https://askubuntu.com/users/68386/doctoa at UBUNTU's Network Connection Manger can't detect Huawei ETS2051 Modem device!
In case this isn't a fix, remember that the 'File' menu in USC still works despite what Network Connections thinks.
Uninstall Deployment Type
Run software-center
from the Terminal, you should see the errors, this should point you to the more specific issues of your problem.
Also see:
I encountered the same problem. Restarting the network manager helped me.
or simply you can try
I use a dongle to connect to the internet. For this I use gnome-ppp. Gnome-ppp do not signals the network manager that the system is connected with the internet. This creates a problem in system application like Software center. So restarting the network manager will surely help you in this case.