-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ps1
40 lines (31 loc) · 1.6 KB
/
config.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
37
38
39
40
# Shared tools
winget install git.git --accept-source-agreements
winget install 7zip.7zip --accept-source-agreements
winget install Lexikos.AutoHotkey --accept-source-agreements
winget install voidtools.Everything --accept-source-agreements
winget install Microsoft.VisualStudioCode --accept-source-agreements
winget install Microsoft.WindowsTerminal --accept-source-agreements
winget install SublimeHQ.SublimeText.4 --accept-source-agreements
winget install WinSCP.WinSCP --accept-source-agreements
winget install Google.Chrome --accept-source-agreements
# Personal tools
winget install GitHub.GitHubDesktop --accept-source-agreements
# Games
# winget install Valve.Steam --accept-source-agreements
# winget install EpicGames.EpicGamesLauncher --accept-source-agreements
# Windows Configration
winget install startallback --accept-source-agreements
# Remove windows widgets
winget uninstall MicrosoftWindows.Client.WebExperience_cw5n1h2txyewy
###
# Old win10 config to test
##
# Disable Stick keys
Write-Output "Disabling Sticky keys prompt..."
Set-ItemProperty -Path "HKCU:\Control Panel\Accessibility\StickyKeys" -Name "Flags" -Type String -Value "506"
# Show all tray icons
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer" -Name "EnableAutoTray" -Type DWord -Value 0
# Hide Search button / box
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Type DWord -Value 0
# Hide the Windows 11 chat button
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarMn" -Type DWord -Value 0