How do I remove the 'Adobe Notification Client' process that runs on startup?

Solution 1:

Thanks to Dwinky’s post in the official Adobe Support forums, you can use the following command:

Get-AppxPackage -AllUsers *AdobeNotificationClient* | Remove-AppxPackage -AllUsers

It seems to work. Just run that command in an elevated (administrator) Powershell. It should complete without error and the process will be removed from your system.

I’m not 100% certain that it won’t come back (they always seem to!), but it’s clean for now.