Answer the question
In order to leave comments, you need to log in
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
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() }
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 questionAsk a Question
731 491 924 answers to any question