Screenpresso screen capture allows you to grab an image or video of what you see on your computer screen, annotate, and share with anyone. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Screenpresso from the command line using both the EXE & MSI installers.
How to Install Screenpresso Silently
Screenpresso Silent Install (EXE)
- Navigate to: https://www.screenpresso.com/binaries/releases/stable/dotnet47/Screenpresso.exe
- Download the Screenpresso.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command:
Screenpresso.exe deploy --install --programfiles --quiet
- Press Enter
After a few moments you should see the Screenpresso shortcut in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Screenpresso |
Vendor: | Learnpulse |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: | Screenpresso.exe deploy --install --programfiles --quiet |
Silent Uninstall Switch: | "%ProgramFiles%\Learnpulse\Screenpresso\Screenpresso.exe" deploy --programfiles --quiet --uninstall |
Download Link: | https://www.screenpresso.com/binaries/releases/stable/dotnet47/Screenpresso.exe |
PowerShell Script: | https://silentinstallhq.com/screenpresso-install-and-uninstall-powershell/ |
Screenpresso Silent Install (MSI)
- Navigate to: https://www.screenpresso.com/binaries/releases/stable/dotnet47/ScreenpressoSetup.msi
- Download the ScreenpressoSetup.msi to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command:
MsiExec.exe /i ScreenpressoSetup.msi /qn
- Press Enter
After a few moments you should see the Screenpresso shortcut in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Screenpresso |
Vendor: | Learnpulse |
Architecture: | x86_x64 |
Installer Type: | MSI |
Silent Install Switch: | MsiExec.exe /i ScreenpressoSetup.msi /qn |
Silent Uninstall Switch: |
|
Repair Command: |
|
Download Link: | https://www.screenpresso.com/binaries/releases/stable/dotnet47/ScreenpressoSetup.msi |
PowerShell Script: | https://silentinstallhq.com/screenpresso-install-and-uninstall-powershell/ |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Create a Screenpresso Installation Log File
The Screenpresso MSI installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following commands to create a verbose log file with details about the installation.
Screenpresso Silent Install (MSI) with Logging
MsiExec.exe /i ScreenpressoSetup.msi /qn /L*v "%WINDIR%\Temp\Screenpresso-Install.log" |
Update the Targeted Screenpresso Install
Screenpresso.exe deploy --update --programfiles --quiet |
Configure Screenpresso to Start with Windows
Screenpresso.exe deploy --install --setautostart --programfiles --quiet |
Configure Screenpresso to Not Start with Windows
Screenpresso.exe deploy --install --unsetautostart --programfiles --quiet |
How to Uninstall Screenpresso Silently
Check out the Screenpresso Install and Uninstall (PowerShell) post for a scripted solution.
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter one of the following commands:
Screenpresso Silent Uninstall (EXE) – Program Files
"%ProgramFiles%\Learnpulse\Screenpresso\Screenpresso.exe" deploy --programfiles --quiet --uninstall |
Screenpresso Silent Uninstall (EXE) – User Profile
"%LocalAppData%\Learnpulse\Screenpresso\Screenpresso.exe" deploy --quiet --uninstall |
Screenpresso Silent Uninstall (MSI)
|
Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.