Good day!
I have CheckPoint R60 That I want to remove. There are new versions that I want to install but I have the older. But I have been trouble removing and doing this. So how can I do it properly? Properly CheckPoint Uninstall R60 procedure? Is there a trick or a tool that can help me do this? Any help would be appreciated. Thank you very much.
What is the Correct Checkpoint Uninstall R60 Procedure?
Hi,
In order for you to remove the older version of CheckPoint R60, you can make it with NSIS (Nullsoft Scriptable Install System). Here are the steps:
1. Download the CPClean tool from Checkpoint.
2. Extract the content, let’s say %TEMP% folder. To execute the silent un installer you need to run this command line: %TEMP%setup.exe” -S -f1%TEMP%setup.iss
3. Here is the NSIS code: ExecWait ‘”$SYSDIRmsiexec.exe” /X{be839ba5-dc35-4ea7-83fb-a7bf5779ab6d} /passive /norestart’ (removes R60 HFA3) ExecWait ‘”$TEMPsetup.exe” -S -f1$TEMPsetup.iss’
4. You can also make some more cleanups like shown below:
nsSCM::Remove SR_WatchDog
nsSCM::Remove SR_Service
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCurrentControlSet|ServicesEventlogSystemVPN-1”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCurrentControlSet|ServicesEventlogSystemFW1”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCurrentControlSet|ServicesSR-Watchdog”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCurrentControlSet|ServicesSR_Service”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCurrentControlSet|ServicesVPN-1’
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCurrentControlSet|ServicesFW1”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointSecuRemote”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointSDS”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointproducts”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointPRNG”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointFW1”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointDTBase”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointCPShared”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointComponents”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointSecuRemote”
DeleteRegKey HKEY_LOCAL_MACHINE “SYSTEMCheckpointCPTMPDIR”
RMDir/r “C:Documents and SettingsAll UsersStart MenuProgramsCheck Point VPN-1 SecureClient”
RMDir/r “C:Program FilesCheckPointSecuRemote”
RMDir/r “C:Program FilesCheckPointCPInstLog”
DeleteRegKey HKEY_LOCAL_MACHINE “SOFTWAREMicrosoftWindowsCurrent VersioUninstall{9FCF2FC0-8268-11D4-A313-0006290D766E}”
Or you can alternatively look for a tool on the Checkpoint site called cp clean on a windows machine it will remove all the Checkpoint products.