Feeling ready to part ways with Webroot? Don’t worry, this script is here to make the transition as smooth as possible. First, the script will determine if the 32-bit or 64-bit version of Webroot is installed on the device. It will then prompt your end-user to confirm before beginning the uninstalltion process. Once completed, the script will display a message indicating the successful removal of Webroot and will automatically restart the device.
The Script:
Atera does not guarantee the integrity, availability, security, virus-free, safety, lawfulness, non-infringement, rights’ status, or functionality of the scripts. The use of the shared scripts is at your own risk. Scripts are provided “AS IS”. *
$Folder = 'C:\Program Files\Webroot'
if (Test-Path -Path $Folder) {
Start-Process 'C:\Program Files\Webroot\WRSA.exe' -ArgumentList '-uninstall'
}
$Folder = 'C:\Program Files (x86)\Webroot'
if (Test-Path -Path $Folder) {
Start-Process 'C:\Program Files (x86)\Webroot\WRSA.exe' -ArgumentList '-uninstall'
}
while($WRSA){
$WRSA = Get-Process -Name WRSA
sleep 5
}
Write-host "Webroot uninstalled"
Restart-computer -force
Technical Notes:
After uninstalling Webroot, it’s possible that some remnants of the software may still be present on the device. To ensure a thorough removal, after the system reboot it’s recommended to delete the WRData and WRCore directories (if present) from ProgramData, a hidden system directory,
To do this:
- Press the Windows key + R to open the Run dialog box.
- In the Run dialog box, enter %PROGRAMDATA% and press Enter. This will open the ProgramData folder in the File Explorer.
Find and delete the WRD folder in the ProgramData folder.
Note: You may need administrative privileges to delete the WRD folder.