Delphi: uninstalling the ancient CollabNet 1.7.5 version
Posted by jpluimers on 2018/10/24
Somehow the integration team at Embarcadero still hasn’t discovered there are [WayBack] newer CollabNet SVN Client versions than 1.7.5 which has been shipped since Delphi XE3 until Delphi XE6. The newer version (currently 1.8.8 when writing this, now 1.10.2 in 2018) have plenty [WayBack1/WayBack2] SVN security issues fixed.
The easiest way to uninstall the CollabNet SVN Client is running this small script:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call :start %ProgramFiles% | |
call :start %ProgramFiles(x86)% | |
goto :end | |
:start | |
startlocal | |
set CollabNet="%*\CollabNet\uninst.exe" | |
echo %CollabNet% | |
if exist %CollabNet% start "CollabNet uninstall" %CollabNet% | |
endlocal | |
goto :end | |
:end |
Then install the [WayBack] Slik SVN client. Like [WayBack] Јοеу, I’ve switched to [WayBack] Slik SVN a long ago. Here is [WayBack] his reasoning:
I have long since stopped using the CollabNet-branded version because it’s behind a registration wall. I found Slik SVN as a good alternative. It’s exactly the same command-line client you get from CollabNet, sans the hassle in downloading it.
I hope someone at Embarcadero enters this in QC^w QualityPortal as I’m awaiting Embarcadero response about a security issue there.
–jeroen
EMB said
“The newer version (currently 1.8.8)”.. What?
jpluimers said
that was when I wrote the post, back when I did not save WayBack links; now I do, and I forgot it was scheduled that far ahead in the future (:
I’ve added some WayBack links from back then, and added the current version number.