Advertisement
Notepad++ icon

How to Silently Install Notepad++

Save time and reduce user prompts by deploying Notepad++ silently and consistently across managed Windows devices. This guide is built for IT admins who need a dependable, repeatable rollout using the verified silent install command, with attention to machine-wide installation, admin requirements, and reliable detection logic. Whether you package apps for Intune/SCCM/PDQ or standardize desktop builds, it helps you streamline deployment and keep installs predictable in enterprise environments.

Overview

ApplicationNotepad++Install scopeMachine
Version8.9.6.4Requires adminYes
PublisherNotepad++ TeamRestart behaviorNo restart
Installer typeMSIDetection methodMSI
Installer fileNotepad.Notepad.8.9.6.4.X64.msiDownloaddownload
Silent installAvailableArchitecturex64
Silent uninstallAvailableHomepagehttps://notepad-plus-plus.org/

Silent Install Steps

Run any one of the methods below to install Notepad++ silently with zero user interaction. Both Command Prompt and PowerShell produce the same result — use whichever fits your deployment workflow.

Method 1: Install with Command Prompt

Run the installer from an elevated Command Prompt.

01

Download or copy the installer file to a local folder, for example C:\Installers.

02

Open Command Prompt as Administrator.

03

Switch to the installer folder.

cd /d "C:\Installers"
04

Run the silent install command.

msiexec /i "Notepad.Notepad.8.9.6.4.X64.msi" /qn REBOOT=ReallySuppress ALLUSERS=1 ADDLOCAL=MainApplication REMOVE=AutoUpdaterFeature

Method 2: Install with PowerShell

Run the same silent install command through PowerShell.

01

Download or copy the installer file to a local folder, for example C:\Installers.

02

Open PowerShell as Administrator.

03

Switch to the installer folder.

Set-Location "C:\Installers"
04

Run the silent install command.

$Installer = 'Notepad.Notepad.8.9.6.4.X64.msi'
& msiexec.exe /i $Installer /qn REBOOT=ReallySuppress ALLUSERS=1 ADDLOCAL=MainApplication REMOVE=AutoUpdaterFeature
exit $LASTEXITCODE

Deployment Notes

Key facts to confirm before rolling this out to production machines — permissions required, scope of install, and reboot behavior.

RequirementAdministrator privileges required
Install scopeMachine
Restart behaviorNo restart expected

Detection Rules

Configure your deployment tool with the detection rule below to confirm a successful install of Notepad++. The same rule works for Microsoft Intune, SCCM, PDQ Deploy, and most RMM platforms — just paste the values into the matching fields.

MSI detection

Product code{6F342D5B-F778-439D-9F98-8ECC24CCFEB4}
Expected version8.9.6.4

PowerShell detection script

$ProductCode = '{6F342D5B-F778-439D-9F98-8ECC24CCFEB4}'
$UninstallKeys = @(
    "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\$ProductCode",
    "HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$ProductCode"
)
foreach ($Path in $UninstallKeys) {
    if (Test-Path $Path) {
        $Item = Get-ItemProperty -Path $Path -ErrorAction SilentlyContinue
        if ($Item.DisplayVersion -eq '8.9.6.4') { exit 0 }
    }
}
exit 1
Advertisement

Silent Uninstall Steps

Remove Notepad++ silently from one machine or your entire fleet. The commands below uninstall without prompts and suppress automatic reboots so you control the timing.

Method 1: Uninstall with Command Prompt

Run the uninstall command from an elevated Command Prompt.

01

Open Command Prompt as Administrator.

02

Run the silent uninstall command.

msiexec /x "{6F342D5B-F778-439D-9F98-8ECC24CCFEB4}" /qn REBOOT=ReallySuppress

Method 2: Uninstall with PowerShell

Run the same silent uninstall command through PowerShell.

01

Open PowerShell as Administrator.

02

Run the silent uninstall command.

$ProductCode = '{6F342D5B-F778-439D-9F98-8ECC24CCFEB4}'
& msiexec.exe /x $ProductCode /qn REBOOT=ReallySuppress
exit $LASTEXITCODE

Deployment Examples

Drop one of the snippets below into your deployment tool, Group Policy, or scheduled task. Each script wraps the silent install command for Notepad++ as a batch file or PowerShell script — copy, save, and run.

Batch file example

Save the following content as install-notepad.bat in the same folder as the installer.

@echo off
cd /d "%~dp0"
msiexec /i "Notepad.Notepad.8.9.6.4.X64.msi" /qn REBOOT=ReallySuppress ALLUSERS=1 ADDLOCAL=MainApplication REMOVE=AutoUpdaterFeature
exit /b %errorlevel%

PowerShell script example

Save the following content as install-notepad.ps1 in the same folder as the installer.

Set-Location -Path $PSScriptRoot
$Installer = 'Notepad.Notepad.8.9.6.4.X64.msi'
& msiexec.exe /i $Installer /qn REBOOT=ReallySuppress ALLUSERS=1 ADDLOCAL=MainApplication REMOVE=AutoUpdaterFeature
exit $LASTEXITCODE
Advertisement

Frequently Asked Questions

Can I silently install Notepad++ on Windows?
Yes. This guide uses MSI switches to install Notepad++ 8.9.6.4 completely unattended, with no user interaction or prompts. These commands are commonly used with Intune, SCCM, PDQ Deploy, and RMM tools.
Do I need administrator privileges to install Notepad++?
Yes. Notepad++ requires elevated permissions for installation. Run the installer as Administrator, or deploy it using the SYSTEM context.
Will installing Notepad++ restart the computer?
No. The Notepad++ install command uses REBOOT=ReallySuppress, which prevents any automatic restart from happening during deployment.
How do I verify Notepad++ installed successfully?
To confirm Notepad++ installed correctly, use the detection rule from this guide: file path, registry key, MSI product code, or MSIX package family name. These methods are commonly supported by Intune, SCCM, and PDQ.
How do I silently uninstall Notepad++?
To silently remove Notepad++, use msiexec /x with the MSI product code and /qn REBOOT=ReallySuppress.
Which deployment tools support these commands?
These Notepad++ commands are commonly used with Intune, SCCM/MECM, PDQ Deploy, ManageEngine, NinjaOne, Datto RMM, Atera, and Action1. Other deployment tools usually work as well if they can run the command in the required SYSTEM or User context.

Troubleshooting

If the install fails, exits with a non-zero code, or leaves no trace on the target machine, work through the checks below. Most issues come down to permissions, paths, or exit code handling.

Run as administrator

Make sure Command Prompt or PowerShell is opened as Administrator. This installer writes to a machine-wide location and will fail silently without elevated permissions.

Verify the installer file name

Confirm that the installer file name matches the command shown in this guide: Notepad.Notepad.8.9.6.4.X64.msi.

Run from the correct folder

Run the command from the folder that contains the installer file. For batch or PowerShell deployments, place the script and installer in the same folder.

Check exit codes

If the installer returns a non-zero exit code, review the installer log or deployment tool logs. Some packages may use additional success exit codes.

Restart if required

If the application does not appear immediately after installation, sign out and sign back in, or restart the device — this refreshes Start menu shortcuts, file associations, and Path entries written by the installer.

Validate detection rules

If your deployment tool reports the app as not installed, verify that the detection rule matches the installed version, MSI product code, registry key, or file path.

Use the detection rule above to confirm whether the application was installed successfully.

Advertisement