ConEmu Silent Install (How-To Guide)

ConEmu is a free and open-source tabbed terminal emulator for Windows. ConEmu presents multiple consoles and simple GUI applications as one customizable GUI window with tabs and a status bar. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of ConEmu from the command line using both EXE & MSI installers.

How to Install ConEmu Silently

ConEmu 32-bit Silent Install (EXE)

  1. Navigate to https://conemu.github.io/en/Downloads.html
  2. Download the ConEmuSetup.xxxx.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: ConEmuSetup.xxxx.exe /p:x86,adm /qn
  6. Press Enter

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

Software Title:ConEmu (32-bit)
Vendor:Maximus5
Architecture:x86
Installer Type:EXE
Silent Install Switch ConEmuSetup.xxxx.exe /p:x86,adm /qn
Silent Uninstall Switch:See Uninstall Section Below
Download Link:https://conemu.github.io/en/Downloads.html
PowerShell Script:ConEmu | PowerShell Script
Detection Script:ConEmu | Custom Detection Script

ConEmu 64-bit Silent Install (EXE)

  1. Navigate to https://conemu.github.io/en/Downloads.html
  2. Download the ConEmuSetup.xxxx.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: ConEmuSetup.xxxx.exe /p:x64,adm /qn
  6. Press Enter

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

Software Title:ConEmu (64-bit)
Vendor:Maximus5
Architecture:x64
Installer Type:EXE
Silent Install Switch ConEmuSetup.xxxx.exe /p:x64,adm /qn
Silent Uninstall Switch:See Uninstall Section Below
Download Link:https://conemu.github.io/en/Downloads.html
PowerShell Script:ConEmu | PowerShell Script
Detection Script:ConEmu | Custom Detection Script

ConEmu 32-bit Silent Install (MSI)

  1. Navigate to https://conemu.github.io/en/Downloads.html
  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. Extract the 32-bit MSI by entering the following command:
    • ConEmuSetup.xxxx.exe /e:C:\Downloads /p:x86
  6. Enter the following command:
    • MsiExec.exe /i ConEmu.xxxx.x86.msi /qn
  7. Press Enter

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

Software Title:ConEmu (32-bit)
Vendor:Maximus5
Architecture:x86
Installer Type:MSI
Silent Install Switch MsiExec.exe /i ConEmu.201011.x86.msi /qn
Silent Uninstall Switch:MsiExec.exe /x ConEmu.201011.x86.msi /qn
Repair Command:MsiExec.exe /fa ConEmu.201011.x86.msi /qn
Download Link:https://conemu.github.io/en/Downloads.html
PowerShell Script:ConEmu | PowerShell Script
Detection Script:ConEmu | Custom Detection Script

ConEmu 64-bit Silent Install (MSI)

  1. Navigate to https://conemu.github.io/en/Downloads.html
  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. Extract the 64-bit MSI by entering the following command:
    • ConEmuSetup.xxxx.exe /e:C:\Downloads /p:x64
  6. Enter the following command:
    • MsiExec.exe /i ConEmu.xxxx.x64.msi /qn
  7. Press Enter

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

Software Title:ConEmu (64-bit)
Vendor:Maximus5
Architecture:x64
Installer Type:MSI
Silent Install Switch MsiExec.exe /i ConEmu.xxxx.x64.msi /qn
Silent Uninstall Switch:MsiExec.exe /x ConEmu.xxxx.x64.msi /qn
Repair Command:MsiExec.exe /fa ConEmu.xxxx.x64.msi /qn
Download Link:https://conemu.github.io/en/Downloads.html
PowerShell Script:ConEmu | PowerShell Script
Detection Script:ConEmu | Custom Detection Script

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


Additional Configurations

Create a ConEmu Installation Log File

The ConEmu 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.

ConEmu 32-bit Silent Install (EXE) with Logging

ConEmuSetup.xxxx.exe /p:x86,adm /qn /L*v "%WINDIR%\Temp\ConEmux86-Install.log"

ConEmu 64-bit Silent Install (EXE) with Logging

ConEmuSetup.xxxx.exe /p:x64,adm /qn /L*v "%WINDIR%\Temp\ConEmux64-Install.log"

ConEmu 32-bit Silent Install (MSI) with Logging

MsiExec.exe /i ConEmu.xxxx.x86.msi /qn /L*v "%WINDIR%\Temp\ConEmux86-Install.log"

ConEmu 64-bit Silent Install (MSI) with Logging

MsiExec.exe /i ConEmu.xxxx.x64.msi /qn /L*v "%WINDIR%\Temp\ConEmux64-Install.log"

Change the ConEmu Default Installation Directory

You can also change the default installation directory by using the following command line parameters. In this example, I’m installing ConEmu to “C:\ConEmu”

ConEmu 32-bit (EXE)

ConEmuSetup.xxxx.exe /p:x86,adm APPLICATIONFOLDER=C:\ConEmu /qn

ConEmu 64-bit (EXE)

ConEmuSetup.xxxx.exe /p:x64,adm APPLICATIONFOLDER=C:\ConEmu /qn

ConEmu 32-bit (MSI)

MsiExec.exe /i ConEmu.xxxx.x86.msi APPLICATIONFOLDER=C:\ConEmu /qn

ConEmu 64-bit (MSI)

MsiExec.exe /i ConEmu.xxxx.x64.msi APPLICATIONFOLDER=C:\ConEmu /qn

How to Uninstall ConEmu Silently

Check out the following posts for a scripted solution:

ConEmu Install and Uninstall (PowerShell)
ConEmu Silent Uninstall (PowerShell)
  1. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  2. Enter one of the following commands:
VersionConEmu Silent Uninstall String
11.230.7240 (32-bit)MsiExec.exe /x {1CF56CEE-0FED-4663-91C2-388B486C32C9} /qn
11.230.7240 (64-bit)MsiExec.exe /x {DE293FDE-C181-46C0-8DCC-1F75EA35833D} /qn
11.230.7230 (32-bit)MsiExec.exe /x {9A773434-D338-4F62-B22A-74F4E4743533} /qn
11.230.7230 (64-bit)MsiExec.exe /x {0E118C30-863D-409D-A6C2-8A244C8FF00D} /qn
11.221.2180 (32-bit)MsiExec.exe /x {7A87220A-D9F3-4EEC-BE3F-9BE3256F1869} /qn
11.221.2180 (64-bit)MsiExec.exe /x {185976B2-0DC5-44A4-A764-660810ABE996} /qn
11.220.8070 (32-bit)MsiExec.exe /x {4C8CC47C-E272-4304-A22A-2FB4C897D2C8} /qn
11.220.8070 (64-bit)MsiExec.exe /x {31676EAE-C3C6-4A43-B07C-0373051E306D} /qn
11.220.4180 (32-bit)MsiExec.exe /x {DC75D262-7C4B-4EB8-AC29-6A81F4CDEECE} /qn
11.220.4180 (64-bit)MsiExec.exe /x {70320E43-B75D-4519-ADBA-0C0D0157354D} /qn
11.220.3080 (32-bit)MsiExec.exe /x {7A0C5031-21C3-49AE-AECA-9F8DB7E0022B} /qn
11.220.3080 (64-bit)MsiExec.exe /x {9592B7F5-6754-47DF-A200-04B51D2F9727} /qn
11.210.9120 (32-bit)MsiExec.exe /x {1DAA595D-AB19-435F-B18F-3BE1DEBE00E8} /qn
11.210.9120 (64-bit)MsiExec.exe /x {6D49AE6E-A5F4-4236-958C-2497F81280C8} /qn
11.210.9050 (32-bit)MsiExec.exe /x {27F1339E-BA1A-41CE-A1A2-6406C5F013A5} /qn
11.210.9050 (64-bit)MsiExec.exe /x {B38A6F4D-1BD4-47AE-AB23-05DF2D10F06A} /qn
11.210.8220 (32-bit)MsiExec.exe /x {DC791B5F-42F6-4D4A-ADF8-95D2DCD24F00} /qn
11.210.8220 (64-bit)MsiExec.exe /x {E05E8C2D-4C6B-4C67-85DA-F8CF7E097AF1} /qn
11.210.8160 (32-bit)MsiExec.exe /x {1604AB29-A49D-40CC-A703-DB61C09E060B} /qn
11.210.8160 (64-bit)MsiExec.exe /x {5B2CFA77-ADAD-4BD9-86FC-0655B1F62DA1} /qn
11.210.7180 (32-bit)MsiExec.exe /x {C7A1E9D7-555B-4812-8FC5-D6B8A5958A0C} /qn
11.210.7180 (64-bit)MsiExec.exe /x {484D5DEB-598C-4FD5-8F5D-F6F839CE0ADC} /qn
11.210.6270 (32-bit)MsiExec.exe /x {40307076-83F5-49E0-8574-37AAB1D166DC} /qn
11.210.6270 (64-bit)MsiExec.exe /x {F39A56B4-208F-48BD-9323-777292D90546} /qn
11.210.6240 (32-bit)MsiExec.exe /x {224C1E63-8057-4656-9969-A7ECC23CEC07} /qn
11.210.6240 (64-bit)MsiExec.exe /x {D4166920-98D7-4796-A0F5-9746CB748653} /qn
11.210.6200 (32-bit)MsiExec.exe /x {36920561-5552-4D5E-AA18-57C233467EA6} /qn
11.210.6200 (64-bit)MsiExec.exe /x {0A36C9F0-CC9D-42AA-BD68-546B60C119BB} /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