Last active
March 19, 2025 13:07
-
-
Save eggbean/c6074011d92b79090dfb40381265080f to your computer and use it in GitHub Desktop.
PowerShell script to install scoop for multi-users and install packages that I use.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PowerShell script to install scoop for multi-user and packages. | |
# If re-run when scoop is already installed, any additional packages | |
# are installed and shims are reset in order of the package list. | |
# I prefer to keep user and global packages as the same, so there's | |
# a minor inconvenience in some situations where packages will | |
# be listed twice with global commands. | |
# | |
# To avoid git ownership warnings, read this: | |
# https://stackoverflow.com/a/71904131/140872 | |
# git config --global --add safe.directory "*" (double quotes on Windows) | |
# Test if Admin | |
if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) | |
{ Write-Host "This script requires administrative privileges."; Exit } | |
# Check if scoop is installed | |
Function Test-ScoopInstalled { | |
$scoopPath = "C:\ProgramData\Scoop" | |
return (Test-Path $scoopPath) | |
} | |
$initiallyInstalled = Test-ScoopInstalled | |
# Install scoop for all users if not installed | |
if (-NOT $initiallyInstalled) { | |
$env:SCOOP = "C:\ProgramData\Scoop" | |
$env:SCOOP_GLOBAL = "C:\ProgramData\Scoop" | |
[Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'Machine') | |
[Environment]::SetEnvironmentVariable('SCOOP_GLOBAL', $env:SCOOP_GLOBAL, 'Machine') | |
Set-ExecutionPolicy RemoteSigned -scope CurrentUser | |
iex "& {$(irm get.scoop.sh)} -RunAsAdmin" | |
icacls $env:SCOOP /grant "Users:(OI)(CI)F" /T | Out-Null | |
# Install aria2c for multi-connection downloads | |
scoop install aria2 -u | |
scoop config aria2-warning-enabled false | |
# Install buckets | |
scoop bucket add extras | |
scoop bucket add nirsoft | |
scoop bucket add sysinternals | |
} | |
# Install packages | |
$packages = @( | |
'uutils-coreutils' | |
'bat' | |
'bind' | |
'broot' | |
'ccat' | |
'charm-gum' | |
'clink' | |
'croc' | |
'curl' | |
'delta' | |
'diffutils' | |
'dos2unix' | |
'dust' | |
'eza' | |
'fastfetch' | |
'fd' | |
'ffmpeg' | |
'file' | |
'findutils' | |
'fzf' | |
'gawk' | |
'geoipupdate' | |
'gh' | |
'git-crypt' | |
'glow' | |
'grep' | |
'imagemagick-lean' | |
'jq' | |
'less' | |
'lf' | |
'mediainfo' | |
'minio-client' | |
'monolith' | |
'nirsoft/batteryinfoview' | |
'nirsoft/hotkeyslist' | |
'nirsoft/nircmd' | |
'rclone' | |
'ripgrep' | |
'scoop-search' | |
'sed' | |
'sfsu' | |
'spotify-tui' | |
'starship' | |
'sysinternals/autoruns' | |
'sysinternals/handle' | |
'sysinternals/pstools' | |
'sysinternals/regjump' | |
'sysinternals/sdelete' | |
'sysinternals/shellrunas' | |
'time' | |
'tlrc' | |
'tre-command' | |
'unzip' | |
'vcredist2022' | |
'wakemeonlan' | |
'wget2' | |
'whois' | |
'xmllint' | |
'zoxide' | |
) | |
foreach ($package in $packages) { | |
scoop install $package -u | |
} | |
# Reset shims in order of package list | |
# if scoop was already installed | |
if ($initiallyInstalled) { | |
scoop update * | |
foreach ($package in $packages) { | |
scoop reset $package | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment