Scoop: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(Created page with "== Scoop == '''⚠️ This is third-party installation method without official support''' A command-line installer for Windows, supporting PowerShell 5.1 and later. === Usage === Add the extra bucket to Scoop. This is a one-time operation. <code>scoop bucket add extras</code> Install NSIS <code>scoop install extras/nsis</code> === Related Links === * [https://scoop.sh/ Scoop] * [https://github.com/ScoopInstaller/Extras/blob/master/bucket/nsis.json NSIS manifest...")
 
No edit summary
Line 14: Line 14:


<code>scoop install extras/nsis</code>
<code>scoop install extras/nsis</code>
'''Alternative:'''
If you want to target specific versions, add the nsis bucket instead:
<code>scoop bucket add nsis https://github.com/NSIS-Dev/scoop-nsis</code>
You can now install any version of NSIS
<code>scoop install nsis/nsis-3.11</code>


=== Related Links ===
=== Related Links ===

Revision as of 13:55, 15 June 2025

Scoop

⚠️ This is third-party installation method without official support

A command-line installer for Windows, supporting PowerShell 5.1 and later.

Usage

Add the extra bucket to Scoop. This is a one-time operation.

scoop bucket add extras

Install NSIS

scoop install extras/nsis

Alternative:

If you want to target specific versions, add the nsis bucket instead:

scoop bucket add nsis https://github.com/NSIS-Dev/scoop-nsis

You can now install any version of NSIS

scoop install nsis/nsis-3.11

Related Links