Gimp silent install is another tutorial of unattended installation articles. What is GIMP? Gimp Image Manipulation Program is free program that can replace Adobe Photoshop on your desktop. The article tech silent installation of Gimp on personal computer as well as over the network. Using both version msi and exe. We will try v2.8.22 but should work for other version.
Gimp silent install.
- Offline install of Gimp exe:
- Gimp offline installer download
- Create command line.
- Execute script.
- Gimp msi silent install:
- Gimp msi installer download.
- Create command line.
- Execute script.
- Uninstall Gimp silently.
- Deploying Gimp with sccm.
Attention! Silent install guides for other application here: Complete List
Gimp exe offline install.
Download Gimp offline installer.
If you need to install Gimp on multiple PCs you would want also the offline installer of Gimp. Instead of downloading the setup on every PC, you can download it once and then install it everywhere.
To download Gimp offline installer you can go directly to application webpage: https://www.gimp.org/downloads/
Note! Click on “Download GIMP 2.8.22 directly”.
Copy the exe to a folder on your computer. Next name the folder like “Gimp offline installer”
Create cmd file for Gimp unattended installation.
Create a text file to the folder created previously. Copy commands below and save like “Install.cmd”.
@ECHO Gimp silent install command line
start /wait gimp-2.8.22-setup.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
@Echo Done
Note! Change the “gimp-2.8.22-setup.exe” with your Gimp offline installer name.
Command line explanation
gimp-2.8.22-setup.exe – the exe file
/VERYSILENT – Silent Installation without interface
/norestart – Don’t restart PC after installation
/SUPPRESSMSGBOXES – Instructs installation to suppress message boxes.
/SP- Disables the “This will install….. Do you wish to continue?” prompt at the start of Setup.
Execute command.
Run as Administrator the Install.cmd script as a result Gimp offline version will be installed silently.
Gimp msi silent install.
Msi application is an offline installer package.
Gimp msi installer download.
In fact Gimp do not supply any msi version of application. We have checked but not found and good website that provide Gimp msi installer for download.
We will update the post if official website or any other also will provide Gimp msi installer download.
Create cmd file for msi silent install.
Gimp Msi silent installer command line explanation.
Uninstall Gimp Silently
Uninstall Gimp silently using the commands:
@echo off
cls
echo.
===============================================
echo Gimp uninstall silently
===============================================
"C:\Program Files\GIMP 2\uninst\unins000.exe" /VERYSILENT
Echo Done
Copy the commands to a text file and save like “Install.cmd”. As a result Run “As administrator” and Gimp will be uninstalled silently.
Deploying Gimp with sccm.
The both packages explained above can be deployed with SCCM 2012. To deploy packages on sccm please visit the post: Deploying Package SCCM
If you have any question about Gimp silent install, feel free to ask.