You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

@echo off
REM========================================================================================
REM Install Notepad ++ 6.2.3
REM========================================================================================
REM Script Details:
REM --------------
REM This script will:
REM + silently install or upgrade Notepad ++ 6.2.3
REM + Works for Windows 7 32-bit and 64-bit
REM .
REM========================================================================================
echo Installing Notepad ++ - Please Wait.
echo Window will close after install is complete

REM Install Notepad ++ 6.2.3
"%~dp0npp.6.2.3.Installer.exe" /S

REM Removes Notepad Desktop Icon - Windows 7
if exist "%PUBLIC%\Desktop\Notepad+.lnk" del "%PUBLIC%\Desktop\Notepad+.lnk"

REM Return exit code to SCCM
exit /B %EXIT_CODE%

  • No labels