Skip to main content

Posts

Showing posts with the label Silent Install

Silent Installation of MPC-HC

What is It? Media Player Classic - Home Cinema (MPC-HC)   is an extremely light-weight, open source media player for Windows ® . It supports all common video and audio file formats available for playback. 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 "MPC-HC.1.7.11.x64.exe" Step 2:  Run following command: "MPC-HC.1.7.11.x64.exe"  /VERYSILENT  /NORESTART /COMPONENTS="main,mpciconlib"                 /VERYSILENT: silent install with no user interface                /COMPONENTS: comma separated list of component names. Overrides default component settings.                 /NORESTART: suppresses any reboot prompt along-with hard reboot itself Other list of arguments which might be useful: ...

Silent Install of TortoiseSVN

What is It? TortoiseSVN   is an  Apache ™  Subversion (SVN)  client, implemented as a Windows shell extension. It's intuitive and easy to use, since it doesn't require the Subversion command line client to run. 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 "TortoiseSVN-1.9.5.27581-x64-svn-1.9.5.msi" Step 2:  Run following command: "%windir%\System32\msiexec.exe" /i  "TortoiseSVN-1.9.5.27581-x64-svn-1.9.5.msi" /qn /norestart            /i: to install the Windows Installer            /qn: silent install with no user interface            /norestart: suppresses any reboot prompt along-with hard reboot itself To Uninstall: Run following command: "%windir%\System32\msiexec.exe" /x  {product code} /qn /noresta...