How do I update Evo software?

There are a couple of ways a user can update their Evo software (The LDAP agent and/or the Evo Credential Provider):

  1. Scripting
  1. Manually downloading/updating

We'll first go over the scripting portion:

Download the script

Unzip the file to create the EvoInstall.ps1 PowerShell script file.

Upgrade the Evo Credential Provider to the latest version

  1. Start an elevated PowerShell instance
  1. Change the directory to the location of the EvoInstall.ps1 script file
  1. Execute the command:ย .\\EvoInstall.ps1 -upgrade -product CredPro
    1. If you want logging of the installer:ย .\\EvoInstall.ps1 -upgrade -product CredPro -Log
      1. โ€œIfโ€ the log was created, view:ย cat $Env:Temp\\EvoSecureLogin_install.log
      2. If credential provider was already at latest version, that log will not be created

Upgrade the LDAP Agent to the latest version

  1. Start an elevated PowerShell session
  1. Change the directory to the location of the EvoInstall.ps1 script file
  1. Stop the LDAP agent:ย stop-service evoldapsauth
  1. Execute the command:ย .\\EvoInstall.ps1 -upgrade -product LdapAgent
    1. If you want logging of the installer:ย .\\EvoInstall.ps1 -upgrade -product LdapAgent -Log
      1. โ€œIfโ€ the log was created, view catย $Env:Temp\\EvoLDAPSAgent_install.log
      2. If LDAP Agent was already at the latest version, that log will not be created

Manual Updating

If scripting is not what you are looking for, you can also manually update the software by navigating to the Evo portal and downloading the latest version(s) of the products you need!

LDAP Agent

  1. Log-in to the Evo Portal
  1. Navigate to the customer that the LDAP agent is linked to
  1. Click Directories
  1. Click the LDAP tab
  1. Click on the "Edit" button next to the correct directory and generate a new LDAP Agent

Evo Credential Provider

  1. Log-in to the Evo Portal
  1. Navigate to the customer in question
  1. Click Applications
  1. Click the Windows Desktop Tile
  1. Download the latest Evo Credential Provider

Disabling The Evo Agent auto update

If you would like a more controlled roll-out of the Evo Credential Provider and would like to disable the auto-updater, there are a few ways you can accomplish this:

1. If the Evo Credential Provider is already installed, run the following command on the endpoint

Set-ItemProperty hklm:\Software\EvoSecurity\EvoLogin-CP disable_update 1

2. During a silent install using a script, add the following property

msiexec.exe /i EvoCredentialProviderSetep.msi DISABLE_UPDATE=1

Re-enabling The Evo Agent auto Update

If you would like to turn the auto update back on you can do one of the two methods below:

Set-ItemProperty hklm:\software\evosecurity\evologin-cp disable_update 0

Or

Remove-ItemProperty hklm:\software\evosecurity\evologin-cp disable_update

Did this answer your question?
๐Ÿ˜ž
๐Ÿ˜
๐Ÿคฉ