Uninstalling software
Good Morning,
Is there a way to uninstall software from a users computer from my desk using Kace without the user knowing. I am trying to uninstall Adobe Illustrator and want to remove it without having to go to each users computer. I will admit I am lazy and want to do it as simple as I can. :) Thanks.
Is there a way to uninstall software from a users computer from my desk using Kace without the user knowing. I am trying to uninstall Adobe Illustrator and want to remove it without having to go to each users computer. I will admit I am lazy and want to do it as simple as I can. :) Thanks.
0 Comments
[ + ] Show comments
Answers (7)
Please log in to answer
Posted by:
RichB
13 years ago
Under the Scripting section select the tab for Configuration Policy and there you will find the "Un-Installer Wizard" where you can easily create an uninstaller for any inventoried software. It takes a long time for the page to respond since the Software Item selection pull-down menu has to be populated with all possible titles (over 22,000 in our case). After the page has fully loaded you can use the Filter to narrow down your search to a specific software version. If necessary you can have the wizard kill a process first and delete a directory afterwards too.
This will work for software inventory items but not dll's.
This will work for software inventory items but not dll's.
Comments:
-
This one worked beautifully for me. - will1498 12 years ago
Posted by:
dchristian
13 years ago
Here's a report I run that gives me all the uninstall strings for a particular criteria (java in this example).
This works great because you can just copy the strings and run them as a script.
If the machine has the software, then it gets uninstalled.
If it doesn't no harm no foul, next string.
This works great because you can just copy the strings and run them as a script.
If the machine has the software, then it gets uninstalled.
If it doesn't no harm no foul, next string.
SELECT DISPLAY_NAME,
DISPLAY_VERSION,
Concat(REPLACE(UNINSTALL_STRING, '/I', '/X'), ' /QN') AS STRING
FROM SOFTWARE
WHERE DISPLAY_NAME LIKE '%JAVA%'
ORDER BY DISPLAY_NAME,
DISPLAY_VERSION
Posted by:
sivawise
13 years ago
Posted by:
airwolf
13 years ago
Posted by:
dchristian
13 years ago
Posted by:
ereynolds
13 years ago
Posted by:
cblake
13 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.