[随時更新] Windows 11 にインストールするアプリケーション一覧

管理者としてターミナルを実行してインストールを実施する。(Windows キー + x)

# 既定でインストールされているターミナルを最新化
winget upgrade --id Microsoft.WindowsTerminal

# スコープはすべてシステム。--interactive を外すと完全自動インストールになるが設定を既定値以外にしたいので対話型インストールにしている。
winget install --scope machine --id Microsoft.PowerShell --interactive
winget install --scope machine --id Microsoft.VisualStudioCode --interactive
winget install --scope machine --id Git.Git --interactive
winget install --scope machine --id Google.Chrome --interactive
winget install --scope machine --id Mozilla.Firefox --interactive
winget install --scope machine --id 7zip.7zip --interactive
winget install --scope machine --id NickeManarin.ScreenToGif --interactive
winget install --scope machine --id Adobe.Acrobat.Reader.64-bit --interactive
winget install --scope machine --id Microsoft.PowerToys --interactive

# --scope machine を入れると失敗する。入れなくても Program Files 配下にインストールされる
winget install --id Microsoft.VisualStudio.2022.Community --interactive