---
title: "Remove Atera Agent and Splashtop Streamer with PowerShell"
type: "post"
published_at: "2019-03-03T20:06:50+00:00"
modified_at: "2022-07-18T02:09:18+00:00"
url: "https://nmbgeek.com/blog/remove-atera-agent-and-splashtop-streamer/"
excerpt: "What does this do? I recently started managing an office that the previous MSP was using Atera agent for their RMM solution. I did not have access to their uninstall tool and needed a way to automate this across a..."
markdown_url: "https://nmbgeek.com/blog/remove-atera-agent-and-splashtop-streamer.md"
---

### What does this do?

I recently started managing an office that the previous MSP was using Atera agent for their RMM solution. I did not have access to their uninstall tool and needed a way to automate this across a large number of computers. It is very simple code but as always make sure you review what it is going to do and understand everything and then test on a few computers manually before deploying through your network.

### The Code

```powershell
#Kill and Remove Related Services
Get-Service | Where {$_.ServiceName -Like "Splash*"} | Stop-Service -force | Remove-Service
Get-Service | Where {$_.ServiceName -Like "SSU*"} | Stop-Service -force | Remove-Service
Get-Service | Where {$_.ServiceName -Like "Atera*"} | Stop-Service -force | Remove-Service

#Kill Ticketing Agent and System Tray Process
Get-Process | Where {$_.ProcessName -Like "Ticket*"} | Stop-Process -force

#Remove Ticketing Agent from each User's AppData Folder
$users = Get-ChildItem C:\Users.
foreach ($user in $users){
$folder = "C:\users\" + $user + "\AppData\Local\Temp\TicketingAgentPackage"
Remove-Item $folder -Recurse -Force -ErrorAction silentlycontinue
}

#Remove Atera Program Files Folders
Remove-Item "C:\Program Files (x86)\ATERA Networks" -Recurse -Force -ErrorAction silentlycontinue
Remove-Item "C:\Program Files\ATERA Networks" -Recurse -Force -ErrorAction silentlycontinue

#Removes Registry for Software and Autorun
Remove-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" -Name "AlphaHelpdeskAgent"
Remove-Item -Path 'HKLM\SOFTWARE\ATERA Networks'

#Uninstall Splashtop Streamer
$app = get-wmiobject -class Win32_Product -filter "Name = 'Splashtop Streamer'"
$app.Uninstall()
```

#### Share This Post

#### More Posts

[PrevLaView Cameras – Beware of Malware (LaView NET app)](https://nmbgeek.com/blog/laview-cameras-beware-of-malware-laview-net-app/)

[G-Suite to Office 365 Migration – No Contact Folder Permissions SolutionNext](https://nmbgeek.com/blog/g-suite-to-office-365-migration-no-contact-folder-permissions-solution/)

## 4 Responses

1. works great thanks [Reply](#comment-336)
2. Hi, Thanks for this. I got a few errors but it seemed to do the trick. I too found Atera sadly lacking and Splashtop was terrible – like a cancer – could not get rid of it. I work in the UK as a single practioner. Can I ask what you use for your trusty RMM? Best regards Martyn [Reply](#comment-5129)
3. Sorry I never saw the last part asking about what I use and just revamped my website and saw this. I use Microsoft Endpoint manager for clients that are using the 365 ecosystem. For everyone else I actually use Comodo’s ITarian which allows python scripting which will also allow running Powershell scripts. It has a great remote support tool that can be setup to allow unattended access or you can have the user approve, patch management, ticketing system, and more. [https://www.itarian.com/](https://www.itarian.com/) It is free for up to 50 devices and $1.25 each if you go over 50. [Reply](#comment-11445)
  1. I switched from Itarian that was Komodo and “free forever” and then became not free and it’s trash and Atera is 100% better. [Reply](#comment-11986)

## Leave a Reply [Cancel reply](https://nmbgeek.com/blog/remove-atera-agent-and-splashtop-streamer/#respond)

## LLMS

- [llms.txt](https://nmbgeek.com/llms.txt) Markdown text overview for AI agent consumption
- [llms-full.txt](https://nmbgeek.com/llms-full.txt) Complete website text in markdown format for AI agent consumption
