Important note about SSL VPN compatibility for 20.0 MR1 with EoL SFOS versions and UTM9 OS. Learn more in the release notes.

Desinstalación Forzada de SSL VPN Sophos (Semáforo)

Buenas tardes,

Me pueden ayudar por favor con algún comando o instrucción para forzar la desinstalación de la VPN "SSL VPN Sophos (Semáforo)" de forma desatendida (Remota) en 150 equipos para luego actualizar e instalar a Sophos Connect, Muchas gracias.

Saludos.



Added TAGs
[edited by: Erick Jan at 12:46 AM (GMT -7) on 14 Jun 2024]
  • Hi,

    Thank you for reaching out to Sophos Community.

    This would be a feature request. I recommend reaching out to Sophos Support to have this link added to your account.

    Also, kindly try to check the following older post, which might assist you.

    Erick Jan
    Community Support Engineer | Sophos Technical Support
    Sophos Support Videos Product Documentation  |  @SophosSupport  | Sign up for SMS Alerts
    If a post solves your question use the 'Verify Answer' link.

  • Buen día Erick, ya pude solucionar con el comando:

    "C:\Archivos de programa (x86)\Sophos\Sophos SSL VPN Client\Uninstall.exe" /S /q 

    y/o el Script:

    @echo desactivado

    SI NO EXISTE "c:\Archivos de programa (x86)\Sophos\Sophos SSL VPN Client\uninstall.exe" goto :eof
    REM Eliminar el cliente antiguo
    REM Eliminar los programas en ejecución, evitando la desinstalación
    taskkill /im openvpn* /F
    timeout 2
    REM Copia de seguridad del archivo de configuración de OVPN
    rem rmdir "c:\!vpn" /s /q
    mkdir c:\!vpn
    copy "c:\ Archivos de programa (x86)\Sophos\Sophos SSL VPN Client\config\*.ovpn" c:\!vpn\
    REM Usar el desinstalador para eliminar el cliente
    cd\Program Files (x86)\Sophos\Sophos SSL VPN Client
    Uninstall.exe /S
    timeout 10
    REM Realice la limpieza de carpetas: si no es así, Sophos Connect se niega a instalarlo
    cd\
    rmdir "c:\Program Files (x86)\Sophos\Sophos SSL VPN Client" /s /q

    SET Sophos_Connect=Sophos\Connect\scvpn
    IF "%PROCESSOR_ARCHITECTURE%" == "x86" GOTO X86_PROG
    SI NO EXISTE "%ArchivosPrograma(x86)%\%Sophos_Connect%" GOTO INSTALL
    exit /b 0
    :X86_PROG
    SI NO EXISTE "%ProgramFiles%\%Sophos_Connect%" GOTO INSTALL
    exit /b 0
    :INSTALL
    msiexec.exe /i "\\server\share\SophosConnect.msi" /QN
    tiempo de espera 5
    REM Implementación del archivo de aprovisionamiento SSLVPN: el usuario debe conectarse una vez con el cliente para obtener su perfil cuando SF está en su lugar.
    REM ¡El portal de usuario en SF debe ser accesible y tener un certificado válido!
    copy /Y "\\server\share\xgsslvpn.pro" "C:\Program Files (x86)\Sophos\Connect\Import\"
    REM Implementación de SSLVPN antiguo para UTM
    copy /Y "c:\!vpn\*.ovpn" "C:\Program Files (x86)\Sophos\Connect\Import\"
    Popd
    REM Iniciar la interfaz gráfica de usuario - icono de la bandeja.
    start "" "C:\Archivos de programa (x86)\Sophos\Connect\GUI\scgui.exe"

    :Ef

    FIN Y SALIDA

    Muchas gracias.

  • Hi,

    That is great to hear. Thank you for the update and for sharing the script. This will be a good help to others in the future.

    Erick Jan
    Community Support Engineer | Sophos Technical Support
    Sophos Support Videos Product Documentation  |  @SophosSupport  | Sign up for SMS Alerts
    If a post solves your question use the 'Verify Answer' link.