M
M
MrFallen2020-07-27 03:05:39
System administration
MrFallen, 2020-07-27 03:05:39

How do I uninstall Adobe Acrobat Pro from all computers in my enterprise?

Hello, I have Adobe Acrobat Pro. Installed on 180 computers in the enterprise. We delete now through RDP and we go we delete hands. Maybe there is some kind of utility for Active Directory that will allow you to remove this software on all computers on the network? Or what are the options? Preferably free or not very expensive.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Andrew AT, 2020-07-27
@AAT666

Import-Module ActiveDirectory
$mass = Get-Adcomputer -filter "Enabled -eq 'TRUE'" -SearchBase "OU=computers,OU=OU-name-1,DC=DC-name-1,DC=ru" | select name
$mass | { if(Test-Connection -CN $_.name -Count 1 -BufferSize 16 -Quiet) {(gwmi win32_product -filter "Name = 'Java(TM) 6 Update 38'" -namespace root/cimv2 -ComputerName $_.name).uninstall() }

Removed Java. It was necessary to do "here and now", otherwise I would not have sculpted this crap ...

K
Kir aka Dober, 2020-07-27
@dobergroup

It depends on how the application was installed.
If it is assigned through AD - in the same place in group policies it is canceled.
If set "by hand" - then you can create a script, work it out on one computer and assign it to all. Read about the script methods here: www.outsidethebox.ms/17408 - it's a simple task

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question