Skip to main content

Posts

Showing posts with the label Silent Switches

Silent Installation of Notepad++

What is It? Notepad++ is a free source code editor and Notepad replacement that supports several languages. It  ensures a higher execution speed and smaller program size. The source is ava ilable for dow nload  here . How to Install Silently? To Install: Step 1:  Download the source from  web  and get the installer npp.7.5.2.Installer.x64.exe. Step 2:  Run following command:  npp.7.5.2.Installer.x64.exe /S /noUpdater            /noUpdater switch is introduced from v7.5 onwards. Step 3:  (only if below v7.5 is being used) Delete "updater" folder located in: "%ProgramFiles%\Notepad++\updater" To Uninstall: Run following two commands: "%ProgramFiles%\Notepad++\uninstall.exe /S" Additional Notes: Following install/uninstall instructions are created based on version 7.5.2 of Notepad++ in 64-bit machine. Ensure that Notepad++ (notepad++.exe) isn't running when ins...

Commonly Used Setup.exe Silent Switches

Setup.exe Silent Switches Perhaps there is some undocumented process you can uncover. Below are some command lines found to work, try “setup.exe /?” first then go through the list below- you may get lucky! ●       setup.exe /q ●       setup.exe /qn ●       setup.exe /silent ●       setup.exe /s ●       setup.exe /NoUserInput ●       setup.exe /unattended ●       setup.exe /CreateAnswerFile ●       setup.exe /quiet ●       setup.exe /passive ●       setup.exe /NoUI ●       setup.exe -s ●       setup.exe -silent ●       setup.exe /VerySilent ●    ...