Skip to main content

What is Adobe_Updater.exe and Why Is It Running?



What is Adobe Updater.exe and Why Is It Running?



You are probably reading this article because you’ve noticed a process called Adobe_Updater.exe running in your task manager, or you’ve started getting the popup balloon message in the system tray that there is a new update available, and would like to get rid of it.
This process is used to update Adobe software, just like the name implies.

Important Security Concerns

You should really think twice before removing this process or disabling it… the vast majority of websites use Adobe Flash, and PDF has become a standard document format…
Unfortunately, because of the success of these formats there have been quite a few critical security holes found in Flash and Reader over the last few years, and it’s only through updating of these software packages that you’ll be protected. You can’t simply rely on your virus protection and firewalls to protect you.
If you still want to disable these processes from running, I would recommend signing up for Adobe’s Security Notification Service, which will email you whenever there is an important security update so you can update manually.

Getting Rid of Adobe_Updater.exe

If you are able to click on the tray icon, you should see this dialog show up on your screen, and you’ll want to click the Preferences button:
In the preferences dialog, you can uncheck the box for “Automatically check for Adobe updates”, and click the OK button to close the dialog.
This should get rid of the update checking.

Getting Rid of Adobe Updater When You Don’t See the Tray Icon

I had already clicked on the Cancel button the first time, and I wasn’t able to get to the preferences page through the method above. Luckily I was able to find the directory that the executable was running from by enabling the Command Line field in Task Manager:

You should be able to browse down to the following path (note that 64-bit users will find it in the x86 Program Files, and you may have to repeat the process for the Updater5 directory depending on what you have installed)
Directory:
                                            
C:\Program Files\Common Files\Adobe\Updater6

Double-click on the Adobe_Updater.exe file in this directory:



You should get this dialog, where you can click the Preferences link.
Then you can uncheck the same box as listed in the step above.
This should turn off the Adobe Updater.

Disabling Update Checking in Adobe Reader 

Alternatively, you can also open up Adobe Reader and turn off update checking from here, which should keep Reader from checking for updates each time you open the application, although the regular update checker will still run.
Just go to Edit \ Preferences…
 
And then uncheck the “Check for updates” box.
This should disable update checking… but keep the security concerns in mind before doing this. 
Your safest bet is to just disable checking for updates on application startup, but leave the other process alone.







Comments

Popular posts from this blog

Defacing Sites via HTML Injections (XSS)

Defacing Sites via HTML Injections Defacing Sites via HTML Injections What Is HTML Injection: "HTML Injection" is called as the Virtual Defacement Technique and also known as the "XSS" Cross Site Scripting. It is a very common vulnerability found when searched for most of the domains. This kind of a Vulnerability allows an "Attacker" to Inject some code into the applications affected in order to bypass access to the "Website" or to Infect any particular Page in that "Website". HTML injections = Cross Site Scripting, It is a Security Vulnerability in most of the sites, that allows an Attacker to Inject HTML Code into the Web Pages that are viewed by other users. XSS Attacks are essentially code injection attacks into the various interpreters in the browser. These attacks can be carried out using HTML, JavaScript, VBScript, ActiveX, Flash and other clinet side Languages. Well crafted Malicious Code can even hep the ...

EKS Cluster and Create CSI Driver to store credentials in AWS Secrets Manager via SecretProviderClass

EKS Cluster | CSI Driver | SecretProviderClass | AWS Secrets Manager Setup EKS Cluster and Manage Credentials at runtime using CSI driver using SecretProviderClass and Secrets Manager Assuming you have Configured/Installed AWS CLI, EKSCTL, KUBECTL, HELM. CSI Basic Information: CSI (Container Storage Interface) widely used as a Storage Technology. Created by Google | Mesosphere | Docker.  It has two two Plugins one runs on the Master Node (Centralized Controller Plugin) and another one on Worker Nodes (Decentralized headless Node Plugin).  CSI communication protocol is gRPC.   The communication between Container Orchestration to Controller Plugin (Master) and to Node Plugin (Worker Node) happens using gRPC .  CSI Drivers : vendor specific compiled into Kubernetes/openshift binaries. To use a CSI driver, a StorageClass needs to be assigned first.  The CSI driver is then set as the Provisioner for the Storage Class. CSI drivers provide three main service...

Linux Systems Performance/Observability (BPF (bpfcc-tools), BCC Tools

  Linux System Performance/Observability Tools Linux Systems Performance/Observability (BPF (bpfcc-tools), BCC Tools Assuming you have Linux Server in place and have the required BPF aka BCC related packages installed on the system(s) for the required Linux distribution. BPF(eBPF) aka BCC Tools (bpfcc-tools) : BPF, which originally stood for Berkley Packet Filter is the dynamic tracing tools for Linux Systems.  BPF initially used for the speeding up for the tcpdump expressions and since then it has been know as the extended Berkley packet Filter (eBPF).  Its new uses are Tracing Tools where it provides programmability for the BPF Compiler Collection (BCC) and bpftrace front ends .   Example: execsnoop, biosnoop etc is a BCC Tool. When facing production performance crisis these such list of tools comes handy to trace and fix the issue. However, it requires certain KERNEL level config options to be enabled such as CONFIG_FTRACE, CONFIG_BPF. Profiling tools typically re...