SmartSDR v4.2.20 | SmartSDR v4.2.20 Release Notes
SmartSDR v3.10.15 | SmartSDR v3.10.15 Release Notes
The latest 4O3A Genius Product Software:
The latest 4O3A Genius Product Software and Firmware
If you are needing assistance with FlexRadio products, please refer to the product documentation or check the Help Center for known solutions. Need technical support from FlexRadio? It's as simple as creating a HelpDesk ticket.
Cleaning up old versions of SmartSDR
I (me, not FlexRadio) wrote this script to help remove all copies of SmartSDR which makes it a bit easier than doing it through Add or Remove programs. You still have to use your mouse, but it is a LOT faster. :)
As you can see, I had a few versions on my computer.
I had a bunch to remove.
It should not remove 4.2.18, but I haven't tested that part.
Run it as Admin under Windows Power Shell.
And, if doing this scares you, then you should not do it. :)
$apps = Get-ChildItem "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall",
"HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall" |
ForEach-Object { Get-ItemProperty $_.PSPath } |
Where-Object { $_.DisplayName -like "*SmartSDR*" -and $_.DisplayVersion -ne "4.2.18" } |
Sort-Object DisplayVersion
Write-Host "Will uninstall $($apps.Count) versions..."
$apps | ForEach-Object {
Write-Host "Uninstalling: $($_.DisplayName) $($_.DisplayVersion)"
if ($_.UninstallString -match "msiexec") {
$guid = $_.UninstallString -replace '.*(\{[^}]+\}).*','$1'
Start-Process msiexec.exe -ArgumentList "/x `"$guid`" /qn /norestart" -Wait
} else {
Start-Process $_.UninstallString -Wait
}
}
Write-Host "All done."
Comments
-
100% Noob here, only a month into this journey. When you are talking about uninstalling old software I am assuming you mean the SmartSDR software that resides on the computer, and not what is in the Flex Radio itself. Is that correct?0
-
Yes, just the client software on the computer, not the server software on the radio.
0 -
I believe the radio side of SmartSDR is updated as part of the install process. There are deeper layers of software in the Flex radio box that are not touched by SmartSDR, so are not affected by the update.
0
Leave a Comment
Categories
- All Categories
- 398 Community Topics
- 2.2K New Ideas
- 678 The Flea Market
- 8.6K Software
- 191 SmartSDR+
- 6.6K SmartSDR for Windows
- 196 SmartSDR for Maestro and M models
- 456 SmartSDR for Mac
- 278 SmartSDR for iOS
- 267 SmartSDR CAT
- 218 DAX
- 392 SmartSDR API
- 9.6K Radios and Accessories
- 91 Aurora
- 335 FLEX-8000 Signature Series
- 7.2K FLEX-6000 Signature Series
- 988 Maestro
- 58 FlexControl
- 872 FLEX Series (Legacy) Radios
- 962 Genius Products
- 478 Power Genius XL Amplifier
- 352 Tuner Genius XL
- 132 Antenna Genius
- 317 Shack Infrastructure
- 222 Networking
- 480 Remote Operation (SmartLink)
- 143 Contesting
- 845 Peripherals & Station Integration
- 147 Amateur Radio Interests
- 1.1K Third-Party Software


