Silently install/uninstall windows applications

Silently install/uninstall windows applications



How to silently install exe from cmd?
How do I install software silently?

Following are the few well known (or not known) applications and way to silently install and uninstall those applications without user interaction using elevated command prompt on windows.


1) 7-Zip                https://www.7-zip.org/a/7z1900-x64.exe
  
    SHA-256    :      0f5d4dbbe5e55b7aa31b91e5925ed901fdf46a367491d81381846f05ad54c45e
    Install:               \Downloads>7z1900-x64.exe /S
    Uninstall:          "C:\Program Files\7-Zip\Uninstall.exe" /S
    Powershell query:
    Get-ItemProperty HKLM:/Software/Microsoft/Windows/CurrentVersion/Uninstall/* |
     Where-Object { $_.DisplayName -ilike '*zip*' }


2) WinRAR     https://www.win-rar.com/fileadmin/winrar-versions/winrar/winrar-x64-571.exe

    SHA-256    :     acebac5e119160b1db688d915ad40358e4419d39d2b6efb4b6892b59df09a4eb
Install:                winrar-x64-571.exe /S
    Uninstall:           "C:\Program Files\WinRAR\uninstall.exe" /S
    Powershell query: 
    Get-ItemProperty HKLM:/Software/Microsoft/Windows/CurrentVersion/Uninstall/* |
    Where-Object { $_.DisplayName -ilike '*win*' }
 

3) Notepad++  https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe

    SHA-256: 9ce95883c5821c3fa7b9319f4952d67ae077cdd79d5327dd7bed63542703cb82
Install:       npp.7.5.6.Installer.exe /S
    Uninstall: "C:\Program Files (x86)\Notepad++\uninstall.exe" /S
    Powershell query:
    Get-ItemProperty        HKLM:/Software/Wow6432Node/Microsoft/Windows/CurrentVersion/Uninstall/*  |
   Where-Object {  $_.DisplayName -ilike '*note*' }

4) VLC Media Player https://mirrors.estointernet.in/videolan/vlc/3.0.8/win64/vlc-3.0.8-win64.exe

     SHA-256:         0cc54e69016e3d5a80e229c768ac37a02aea3a973a5447593c0132281e383942
Install:              vlc-3.0.8-win64.exe /L=1033 /S /NCRC
     Uninstall:         "C:\Program Files\VideoLAN\VLC\uninstall.exe" /S
     Powershell query:
     Get-ItemProperty HKLM:/Software/Microsoft/Windows/CurrentVersion/Uninstall/* |
     Where-Object { $_.DisplayName -ilike '*vlc*' }


5) Teamviewer    https://dl.teamviewer.com/download/TeamViewer_Setup.exe

     SHA-256      :  b86fd18e8b5cbbac9b2522358ebe1c601714bd9810d81159cbd315b3854bc969
Install:            TeamViewer_Setup.exe /S
     Uninstall:       "C:\Program Files (x86)\TeamViewer\uninstall.exe" /S
     Powershell query:
     Get-ItemProperty             HKLM:/Software/Wow6432Node/Microsoft/Windows/CurrentVersion/Uninstall/* |
    Where-Object { $_.DisplayName -ilike '*team*' }


Post a Comment

Previous Post Next Post