Skip to content

Personal scripts/commands to speed up and clean a W10 fresh install.

Notifications You must be signed in to change notification settings

Mateleo/W10clean

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

6 Commits
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

W10 Logo

W10Clean

A personal guide and repository of scripts to accelerate and optimize a fresh Windows 10 installation.

๐Ÿ› ๏ธ Initial Setup & System Prep

Before running scripts, you may need to allow local scripts to run on your system.

Set Execution Policy

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

Activate Windows (MAS) ๐Ÿดโ€โ˜ ๏ธ

irm https://get.activated.win | iex
  • Step: Choose option (1) HWID for permanent activation.

๐Ÿงน System Debloat

Privacy & Optimization

Use Privacy.sexy to generate a cleanup script.

  • Recommendation: Stick to the Standard ruleset for a balance of stability and privacy.

Delete Native Apps (Keep Microsoft Store)

Get-AppxPackage | where-object {$_.name โ€“notlike โ€œ*store*โ€} | Remove-AppxPackage

๐ŸŽจ Personalization & UI

Typography

Wallpapers

App Installation

  • Use Spinel for streamlined app deployment.

๐Ÿ‘ฉโ€๐Ÿ’ป Developer Environment

Git Configuration

git config --global user.name "YourUsername"
git config --global user.email "your@email.com"

Python: Fix Visual C++ Build Errors

If you encounter Microsoft Visual C++ 14.0 is required during a pip install:

choco install visualstudio2022buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.MSBuildTools;includeRecommended --add Microsoft.VisualStudio.Workload.VCTools;includeRecommended --quiet" -y

JavaScript: Package Management

Enable pnpm via Node.js Corepack:

corepack enable pnpm

About

Personal scripts/commands to speed up and clean a W10 fresh install.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published