Skip to content

Windows 11 Initialization Configuration

Installation Steps

Install VMware Tools

Ensure that VMware Tools is installed to enhance system performance and usability.

Configure Taskbar

Customize the taskbar settings as per your preference.

Initial Configuration

Perform the following initial system configurations:

powershell
# Show file extensions
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Value 0
Stop-Process -Name explorer -Force; Start-Process explorer
# Set File Explorer to open 'This PC' by default
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v LaunchTo /t REG_DWORD /d 1 /f
# Disable sleep mode
powercfg -change -standby-timeout-ac 0
# Prevent the screen from turning off automatically
powercfg -change -monitor-timeout-ac 0

# 禁用遥测
Enable-WindowsOptionalFeature -FeatureName "Containers-DisposableClientVM" -All -Online

## remove apps
tskill OneDrive
winget uninstall Microsoft.OneDrive

## config http proxy

Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" `
  -Name ProxyEnable -Value 1

Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" `
  -Name ProxyServer -Value "http=192.168.1.1:1080"

Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings"

winget

cmd
winget source update

winget install VentoByte.Proxifier
winget install Google.Chrome
winget install 7zip.7zip

winget install SublimeHQ.SublimeText.4
winget install Microsoft.VisualStudioCode
winget install Git.Git
winget install DBeaver.DBeaver.Community
winget install PawelSalawa.SQLiteStudio

winget install --id GoLang.Go -e
winget install Python.Python.3.12
python.exe -m pip install --upgrade pip
py -3 -m pip install uv

Released under the MIT License.