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
- 396 Community Topics
- 2.2K New Ideas
- 676 The Flea Market
- 8.5K Software
- 187 SmartSDR+
- 6.6K SmartSDR for Windows
- 193 SmartSDR for Maestro and M models
- 454 SmartSDR for Mac
- 276 SmartSDR for iOS
- 267 SmartSDR CAT
- 216 DAX
- 389 SmartSDR API
- 9.5K Radios and Accessories
- 87 Aurora
- 327 FLEX-8000 Signature Series
- 7.2K FLEX-6000 Signature Series
- 985 Maestro
- 58 FlexControl
- 870 FLEX Series (Legacy) Radios
- 959 Genius Products
- 477 Power Genius XL Amplifier
- 351 Tuner Genius XL
- 131 Antenna Genius
- 314 Shack Infrastructure
- 219 Networking
- 476 Remote Operation (SmartLink)
- 143 Contesting
- 839 Peripherals & Station Integration
- 146 Amateur Radio Interests
- 1.1K Third-Party Software


