/scoomander

devenv installer

Primary LanguagePowerShellThe UnlicenseUnlicense

Scoomander

Features | Installation | Documentation


Code Size Repository size License

Scoomander is a scoop orchestrator for Windows.

What does Scoomander do

Scoomander install a configurable list of programs on your machine thanks to Scoop.

Scoomander allows users to use complex configuration in order to create and maintain a development environment.

Requirements

  • Windows 7 SP1+ / Windows Server 2008+
  • PowerShell 5 (or later, include PowerShell Core) and .NET Framework 4.5 (or later)
  • PowerShell must be enabled for your user account e.g. Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Installation

Run the following command from your PowerShell to install:

  • Scoop to its default location (C:\Users\<user>\scoop) or the one specified during installation
  • Git
  • 7zip
  • Scoomander
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/scayssials/scoomander/master/bin/install.ps1')

# or shorter
iwr -useb 'https://raw.githubusercontent.com/scayssials/scoomander/master/bin/install.ps1' | iex

# automated installation
iwr -useb 'https://raw.githubusercontent.com/scayssials/scoomander/master/bin/install-scoomander.ps1' | iex; Install -NoPrompt

# automated installation with custom path
iwr -useb 'https://raw.githubusercontent.com/scayssials/scoomander/master/bin/install-scoomander.ps1' | iex; Install -NoPrompt -DefaultScoopTarget C:\some-path

Installation under the administrator console has been disabled by default for security considerations. If you know what you are doing and want to install as administrator you can add the -RunAsAdmin flag on the Install command.

Once installed, run scoomander help for instructions.

The default Scoop setup is configured so all user installed programs Scoop and Scoomander itself live in C:\Users\<user>\scoop. These settings can be changed through scoop directly (see scoop wiki).

Scoomander configurations are in C:\Users\<user>\scoop\apps\scoomander\current\config

Scoomander plugins are in C:\Users\<user>\scoop\apps\scoomander\current\plugins

More

Scoomander wiki