Intune App Packaging

Deploy Greenshot via Intune | Win32 App Packaging

Published 17 March 2026 · 5 min read

Greenshot is a popular free screenshot tool used across many business environments. It uses an Inno Setup EXE installer, which supports silent deployment with the /VERYSILENT switch. The main things to get right are the correct silent switches and suppressing the desktop shortcut.

Contents
  1. Download the installer
  2. Wrap with the Content Prep Tool
  3. Add the app in Intune
  4. Install and uninstall commands
  5. Detection rule
  6. Pre-configuring Greenshot settings

Download the installer

Download the latest Greenshot installer from GitHub releases:

https://github.com/greenshot/greenshot/releases

Download the Greenshot-INSTALLER-x.x.x.x-RELEASE.exe file. Greenshot is open source and all releases are on GitHub.

💡
Use the RELEASE build, not DEBUG
Always download the RELEASE build from GitHub. The DEBUG builds include verbose logging and are not suitable for deployment.

Wrap with the Content Prep Tool

IntuneWinAppUtil.exe -c "C:\AppSource\Greenshot" -s "Greenshot-INSTALLER-1.3.4.6-RELEASE.exe" -o "C:\IntunePackages"

Add the app in Intune

Intune Admin Centre → Apps → Windows → + Add → Windows app (Win32)
  1. Upload the .intunewin file
  2. Name: Greenshot
  3. Publisher: Greenshot

Install and uninstall commands

Greenshot uses Inno Setup. The silent switches are different to NSIS:

⚙️
Program settings
Inno Setup silent switches
Install command/VERYSILENT = fully silent, /TASKS="!desktopicon" suppresses desktop shortcut
Greenshot-INSTALLER-1.3.4.6-RELEASE.exe /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES /TASKS="!desktopicon"
Uninstall commandInno Setup uninstaller accepts the same silent switches
C:\Program Files\Greenshot\unins000.exe /VERYSILENT /NORESTART
Install behaviour
System
Device restart behaviour
No specific action

Detection rule

🔍
File detection rule
[]
Rule type
File
Path
C:\Program Files\Greenshot
File or folder name
Greenshot.exe
Detection method
File or folder exists
💡
Test your detection rule first
Before deploying to users, install the app manually on a test device and verify the detection rule matches. Run the detection script or check the file path exists before assigning to a group.

Pre-configuring Greenshot settings

Greenshot stores its configuration in an INI file at %APPDATA%\Greenshot\Greenshot.ini. You can pre-deploy a default config by including a Greenshot.ini file in your package and copying it to the correct location via a wrapper script:

# install.ps1 - install Greenshot and deploy default config
Start-Process "Greenshot-INSTALLER-1.3.4.6-RELEASE.exe" -ArgumentList "/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" -Wait

# Create config directory for all users
$configPath = "C:\Users\Default\AppData\Roaming\Greenshot"
New-Item -ItemType Directory -Force -Path $configPath
Copy-Item "$PSScriptRoot\Greenshot.ini" -Destination $configPath -Force

Frequently Asked Questions

Q: How do I deploy Greenshot silently via Intune?

Use: Greenshot-INSTALLER-x.x.x.x-RELEASE.exe /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES. These are Inno Setup switches. /VERYSILENT suppresses all UI and /SUPPRESSMSGBOXES prevents any popup dialogs.

Q: Does Greenshot have an MSI installer?

No. Greenshot only provides an Inno Setup EXE installer. There is no official MSI. Use the EXE with Inno Setup silent switches and wrap it with IntuneWinAppUtil as normal.

Q: How do I detect Greenshot in Intune?

Use a file detection rule: check for Greenshot.exe in C:\Program Files\Greenshot. This path is consistent across versions.

Q: How do I suppress the Greenshot desktop shortcut during Intune deployment?

Add /TASKS="!desktopicon" to the install command to prevent the desktop shortcut being created during silent installation.

More App Packaging Guides
Deploy 7-Zip via Intune Deploy Notepad++ via Intune Deploy VLC Media Player via Intune
Installer typeEXE (Inno Setup)
Silent installYes - /VERYSILENT /NORESTART
Desktop shortcut suppression/TASKS="!desktopicon"
Config pre-deploymentVia Greenshot.ini + wrapper script
Reboot requiredNo
// need intune set up properly?
Fixed-price Intune setup for UK businesses

I set up Intune for UK small businesses at a fixed price - app deployment, compliance policies, Conditional Access, and full documentation handed over at the end.

View Packages
#intune #app-packaging #win32