Evernote Silent Install (How-To Guide)

Evernote is an app designed for note taking, organizing, task management, and archiving. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Evernote from the command line using both EXE & MSI installers.

How to Install Evernote Silently

Evernote Silent Install (EXE) (Version 10.x)

  1. Navigate to: https://evernote.com/download
  2. Download the EXE to a folder created at (C:\Downloads)
  3. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  4. Navigate to the C:\Downloads folder
  5. Enter the following command: Evernote-10.x.y-z-setup.exe /AllUsers /S
  6. Press Enter

After a few moments you should see the Evernote Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.

Software Title:Evernote
Vendor:Evernote Corporation
Version:10.x
Architecture:x86
Installer Type:EXE
Silent Install Switch:Evernote-10.x.y-z-setup.exe /AllUsers /S
Silent Uninstall Switch (32-bit System)"%ProgramFiles%\Evernote\Uninstall Evernote.exe" /AllUsers /S
Silent Uninstall Switch (64-bit System)"%ProgramFiles(x86)%\Evernote\Uninstall Evernote.exe" /AllUsers /S
Download Link:https://evernote.com/download
PowerShell Script:https://silentinstallhq.com/evernote-install-and-uninstall-powershell/
Detection Script:https://silentinstallhq.com/create-a-custom-detection-script-for-evernote-powershell/

Evernote Silent Install (EXE) (Version 6.x)

  1. Navigate to: https://cdn1.evernote.com/win6/public/Evernote_6.25.1.9091.exe
  2. Download the EXE to a folder created at (C:\Downloads)
  3. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  4. Navigate to the C:\Downloads folder
  5. Enter the following command: Evernote_6.x.y.z.exe /qn
  6. Press Enter

After a few moments you should see the Evernote Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.

Software Title:Evernote
Vendor:Evernote Corp.
Version:6.x
Architecture:x86
Installer Type:EXE
Silent Install Switch:Evernote_6.x.y.z.exe /qn
Silent Uninstall Switch:MsiExec.exe /x {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} /qn
Download Link:https://cdn1.evernote.com/win6/public/Evernote_6.25.1.9091.exe
PowerShell Script:https://silentinstallhq.com/evernote-install-and-uninstall-powershell/
Detection Script:https://silentinstallhq.com/create-a-custom-detection-script-for-evernote-powershell/

Evernote Silent Install (MSI) (Version 6.x)

  1. Navigate to: https://cdn1.evernote.com/win6/public/Evernote_6.25.1.9091.exe
  2. Download the EXE to a folder created at (C:\Downloads)
  3. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  4. Navigate to the C:\Downloads folder
  5. Enter the following command: Evernote_6.x.y.z.exe /x
  6. Cancel & Exit the Evernote Setup Wizard
  7. Navigate to C:\Users\<User Name>\AppData\Local\Temp\
  8. Copy Evernote.msi to C:\Downloads folder
  9. Enter the following command: MsiExec.exe /i Evernote.msi ALLUSERS=1 /qn
  10. Press Enter

After a few moments you should see the Evernote Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.

Software Title:Evernote
Vendor:Evernote Corp.
Version:6.x
Architecture:x86
Installer Type:MSI
Silent Install Switch:MsiExec.exe /i Evernote.msi ALLUSERS=1 /qn
Silent Uninstall Switch:MsiExec.exe /x Evernote.msi /qn
Repair Command:MsiExec.exe /fa Evernote.msi ALLUSERS=1 /qn
Download Link:https://cdn1.evernote.com/win6/public/Evernote_6.25.1.9091.exe
PowerShell Script:https://silentinstallhq.com/evernote-install-and-uninstall-powershell/
Detection Script:https://silentinstallhq.com/create-a-custom-detection-script-for-evernote-powershell/

The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.


Additional Configurations

Create a Evernote Installation Log File

The Evernote MSI installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following commands to create a verbose log file with details about the installation.

Evernote Silent Install (MSI) with Logging

MsiExec.exe /i Evernote.msi ALLUSERS=1 /qn /L*v "%WINDIR%\Temp\Evernote-Install.log"

Exclude Evernote Desktop Shortcut During Install

The Evernote installer creates a desktop shortcut by default. If you don’t want the desktop shortcut, then you can run the following command line switch to exclude it.

Evernote Silent Install (MSI) with No Desktop Shortcut

MsiExec.exe /i Evernote.msi ALLUSERS=1 NODESKTOPSHORTCUT=1 /qn

How to Uninstall Evernote Silently

Check out the following posts for a scripted solution:

Evernote Install and Uninstall (PowerShell)
Evernote Silent Uninstall (PowerShell)
  1. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  2. Enter the following command:

Evernote Silent Uninstall (EXE) (Version 10.x) on 32-bit System

"%ProgramFiles%\Evernote\Uninstall Evernote.exe" /AllUsers /S

Evernote Silent Uninstall (EXE) (Version 10.x) on 64-bit System

"%ProgramFiles(x86)%\Evernote\Uninstall Evernote.exe" /AllUsers /S

Evernote Silent Uninstall (EXE) (Version 10.x) – User Profile

"%LocalAppData%\Programs\Evernote\Uninstall Evernote.exe" /CurrentUser /S

Evernote Silent Uninstall (EXE) (Version 6.x)

MsiExec.exe /x {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} /qn

Evernote (MSI) Silent Uninstall

MsiExec.exe /x Evernote.msi /qn

Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.

Jason Bergner

I am an accomplished Software Engineer at Patch My PC, leveraging more than 18 years of hands-on experience in Configuration Manager administration and application packaging. I am driven by a genuine passion for solving complex problems and consistently strive to discover innovative and effective solutions. Sharing my extensive knowledge of application deployments is a true joy for me, and I am honored to contribute to the community here at Silent Install HQ.

Recent Posts