How to install Notepad++ using bolt task

210 Views Asked by At

To install apache2, we can use command similar to below

bolt task run package action=install name=apache2

I want to install Notepad++ in windows machine using bolt task.

Is there any Notepad++ package similar to below to install using bolt task.

bolt task run package action=install name=notepad++
1

There are 1 best solutions below

2
On

If you're using chocolatey, the package name (for the community repo) is notepadplusplus.

So your command would be:

bolt task run package name=notepadplusplus action=install

If you're not using chocolatey in your windows environment, then you'll need to find a different way to do this.