How do I update the Logos to match my company brand? (Web Page and Agent)
By default, when you sign up for an Evo account, the theme is defaulted to the Evo logo and colors. You can upload your company logo and change the color scheme presented.
You company logo and selected colors will show up in the Evo web (user and admin) portals, and email notifications only. The settings are not applied to the Evo Secure Login mobile app.

How to set your company theme
- From the dashboard, click Customization.
- For Company Logo, click in the Upload Logo square and locate the logo image you want to upload.
- Select a new color by clicking the color picker. To use the color picker, click and drag your cursor inside the picker. Optionally, you can also enter the HEX, RGB, or HSL values.
- Once your color has been selected, close the color picker.
- Click Apply Changes.
How to reset to original theme
- From the dashboard, click Customization.
- Click Reset to Original.
If you would like to change the Evo logo to your own logo and re-name the app on your end-user's Windows computers, please follow the instructions below.
How to Change the Evo Secure Login logo at Login Screen
If you would like to change the Evo logo to your own logo and re-name the app on your end-user's Windows computers, please follow the instructions below
Requirements
- Logo must be in 192x192 size pixel image. The image must be a BMP, PNG, JPEG, TIFF, or GIF. Microsoft recommends a 192x192 pixel image. If it’s not that, it will be scaled to something else.
- The image must be present on the machine(s) you plan on displaying the logo.
Steps
- Copy the logo image to a location on your machine.
- You could copy to "c:\Program Files\EvoSecurity\EvoSecureLogin\logo.bmp" (change logo.bmp to whatever the real name of the image is.)
- Alternatively, you can use the
Invoke-WebRequest -uri "URLHERE"
command to grab the logo from a URL. Example:
Invoke-WebRequest -Uri "https://LogoURLhere" -OutFile "c:\Program Files\EvoSecurity\EvoSecureLogin\logo.name"
- Run these commands in an elevated prompt to add 2 registry keys. Please make sure you change the text in the quote " " to your own.
Set-ItemProperty HKLM:\\SOFTWARE\\EvoSecurity\\EvoLogin-CP login_text "Your Company Secure Login"
Set-ItemProperty HKLM:\\SOFTWARE\\EvoSecurity\\EvoLogin-CP v1_bitmap_path "c:\\Program Files\\EvoSecurity\\EvoSecureLogin\\logo.bmp"
- Verify that the image displayed is how you'd want it to look.
- To Undo it, open the Registry Editor and navigate to:
HKEY_LOCAL_MACHINE\Software\EvoSecurity\EvoLogin-CP
- Rename or delete the key
login_text
value name to_login_text
- Rename or delete the key
v1_bitmap_path
value name to_v1_bitmap_path
- After changing, you will see your own logo and name.

PowerShell Script
You can use a template script below for silent installation. Please make sure to change your logo filename and path.
#Change Evo Logo to your custom logo
#Copy an image of your logo and resize it to 192x192 pixel and copy it to this folder
#Change the image name to match with the name in this script, we use logo.bmp
#Make sure Credential Provider agent has been installed
Copy-Item logo.bmp "c:\\Program Files\\EvoSecurity\\EvoSecureLogin"
Set-ItemProperty HKLM:\\SOFTWARE\\EvoSecurity\\EvoLogin-CP login_text "Your Company Secure Login"
Set-ItemProperty HKLM:\\SOFTWARE\\EvoSecurity\\EvoLogin-CP v1_bitmap_path "c:\\Program Files\\EvoSecurity\\EvoSecureLogin\\logo.bmp"
Download,Install EvoCredPro-LOGO PS1
- ChangeLogo.zip
7 KB Download