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