Endpoint Encryption

 View Only
  • 1.  HOW TO CHECK IF PGP DESKTOP IS RUNNING ?

    Posted Apr 07, 2011 05:03 PM

    Hi  All - I have need where my Network Secuirty Team needs to scan the Machines to ensure PGP Desktop is running on each Machine.

    Which is the best process to check.I wouldnt want to user to intiate any process, but the process should be trigerred by the System itself

    Appreciate any answers!

    Thanks and Regards !



  • 2.  RE: HOW TO CHECK IF PGP DESKTOP IS RUNNING ?

    Posted Apr 08, 2011 07:51 AM

    Hi,

    you need to check if tasks pgpserv.exe and pgptray.exe are running.

    I built a script that checks this before starting outlook to ensure users are not risking to send unencrypted mails caused by malfunction.

    Echo off

    tasklist | findstr /i outlook.exe

    if %errorlevel%==0 (
    Color 0c
    Echo *******************************FEHLER************************************
    Echo Outlook ist bereits gestartet. Bitte beenden Sie das Programm und
    Echo starten Sie die Ueberpruefung erneut!
    Echo -
    Echo Als Active Sync Nutzer trennen Sie bitte vor der Ueberpruefung das mobile 
    Echo Endgeraet vom System.
    Echo *************************************************************************
    pause
    goto Ende
    ) else (
    goto Abfrage1
    )
    :Abfrage1
    tasklist | findstr PGPserv.exe

    if %errorlevel%==0 (
    Echo Der Dienst PGPserv.exe ist gestartet.
    goto Abfrage2
    ) else (
    ECHO Der Dienst PGPserv.exe ist nicht gestartet
    goto Fehler
    )
    :Abfrage2
    tasklist | findstr PGPtray.exe

    if %errorlevel%==0 (
    Echo Der Dienst PGPtray.exe ist gestartet.
    goto Erfolg
    ) else (
    ECHO Der Dienst PGPtray.exe ist nicht gestartet
    goto Fehler
    )

    :Fehler
    Color 0c
    Echo ******************************ACHTUNG*************************************
    echo **************************************************************************
    echo Die PGP Dienste laufen nicht korrekt. Die E-Mail Verschluesselung ist NICHT
    echo funktionstuechtig. Bitte wenden Sie sich an die Hotline!
    echo **************************************************************************
    echo **************************************************************************
    pause
    goto Outlook

    :Erfolg

    Color 0a
    Echo ********************************INFO**************************************
    echo **************************************************************************
    echo Die Ueberpruefung der PGP Dienste war erfolgreich. Outlook wird gestartet...
    echo **************************************************************************
    echo **************************************************************************
    sleep 3
    goto Outlook

    :Outlook

    cd\
    start Outlook.exe
    goto Ende

    :Ende
    color 0f

    Best regards

    Andreas Krix