-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwinget.ps1
36 lines (25 loc) · 892 Bytes
/
winget.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Set PowerShell Execution Policy
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
# Install by winget
## Chrome
winget install --id Google.Chrome --source winget
## VSCode
winget install --id Microsoft.VisualStudioCode --source winget
## Windows Terminal
winget install --id Microsoft.WindowsTerminal --source winget
## PowerShell(v7)
winget install --id Microsoft.PowerShell --source winget
## Git
winget install --id Git.Git --source winget
# Auto Dark Mode
winget install --id Armin2208.WindowsAutoNightMode --source winget
# Rancher Desktop
winget install --id suse.RancherDesktop --source winget
# Notion
winget install --id Notion.Notion --source winget
# Obsidian
winget install --id Obsidian.Obsidian --source winget
# Google Japanese IME
winget install --id Google.JapaneseIME --source winget
# AWS CLI
winget install --id "Amazon.AWSCLI" --source winget