Radmin Viewer, broadly used for distant management and community monitoring, generally requires uninstallation throughout a number of units, particularly in managed environments. Utilizing PowerShell to take away it’s environment friendly and may be automated by means of Distant Monitoring and Administration (RMM) instruments, simplifying the method for IT directors. This information offers a PowerShell script to detect and take away Radmin Viewer, which you’ll be able to deploy seamlessly by means of most RMM instruments.

Easy methods to Take away Radmin Viewer with PowerShell
- Set Up the Script in Your RMM Device: Most RMM instruments, reminiscent of SuperOPS, Syncro, or N-Ready, help PowerShell scripts. Copy the script beneath into the scripting or automation part of your RMM instrument and configure it to run with administrative privileges.
- Run the Script to Detect and Uninstall Radmin Viewer: As soon as arrange, this script will routinely detect and uninstall Radmin Viewer if put in.
# Outline the partial identify for Radmin Viewer, permitting for model numbers $applicationNamePattern = "^Radmin Viewer" # Verify if any model of Radmin Viewer is put in $app = Get-WmiObject -Class Win32_Product | The place-Object { $_.Identify -match $applicationNamePattern } # If Radmin Viewer is discovered, uninstall it if ($app) Out-Null Write-Output "Radmin Viewer has been uninstalled." else { Write-Output "Radmin Viewer isn't put in on this method." }
Script Breakdown
The script detects any model of Radmin Viewer by matching the appliance identify. It makes use of the Get-WmiObject
command to record put in software program and filter for matches primarily based on a specified identify sample. Right here’s a more in-depth have a look at every part:
- Outline the Software Identify Sample:
$applicationNamePattern = "^Radmin Viewer"
Utilizing a daily expression, this sample finds any Radmin Viewer set up, no matter model.
- Seek for the Software:
$app = Get-WmiObject -Class Win32_Product | The place-Object { $_.Identify -match $applicationNamePattern }
This line retrieves put in software program particulars and filters for “Radmin Viewer.” If discovered, the script proceeds to uninstall; if not, it outputs that Radmin Viewer isn’t put in.
- Uninstall the Software:
if ($app) Out-Null Write-Output "Radmin Viewer has been uninstalled."
If Radmin Viewer is detected, the Uninstall()
methodology removes it from the system. The output messages confirm the uninstallation standing, making it simple to observe in your RMM console.
Operating the Script in an RMM Device
Utilizing an RMM instrument to deploy this script offers a number of benefits:
- Automation Throughout A number of Units: RMM instruments will let you schedule the script throughout endpoints, streamlining the uninstallation course of for all techniques in your managed surroundings.
- Monitoring and Logging: RMM instruments show output messages straight within the console, so that you’ll see whether or not Radmin Viewer was efficiently uninstalled or not current, simplifying the verification course of.
- Scheduled and Triggered Execution: You may set the script to run on demand, on a schedule, or as a triggered occasion, reminiscent of when a tool checks in.
Conclusion
Operating this PowerShell script by means of an RMM instrument permits fast and environment friendly uninstallation of Radmin Viewer throughout a number of units, making it perfect for MSPs and IT admins. It ensures a constant removing course of and reduces handbook effort, enhancing the general effectivity of managing software program environments.
Associated
Uncover extra from Patrick Domingues
Subscribe to get the most recent posts despatched to your e mail.