Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mateleo/w10clean
Personal scripts/commands to speed up and clean a W10 fresh install.
https://github.com/mateleo/w10clean
scripts windows-10
Last synced: 20 days ago
JSON representation
Personal scripts/commands to speed up and clean a W10 fresh install.
- Host: GitHub
- URL: https://github.com/mateleo/w10clean
- Owner: Mateleo
- Created: 2024-12-10T15:46:06.000Z (29 days ago)
- Default Branch: main
- Last Pushed: 2024-12-10T15:49:26.000Z (29 days ago)
- Last Synced: 2024-12-19T11:17:26.307Z (20 days ago)
- Topics: scripts, windows-10
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
W10Clean
This is a readme for myself and also for others that would like some scripts/commands to speed up and clean a W10 fresh install. From top to bottom it will go from general to more specific.
> [!CAUTION]
> Grayzone or redzone commands are flagged with π΄ββ οΈ## W10 Clean Install π¦
### Activate Windows with MAS π΄ββ οΈ
```bash
irm https://get.activated.win | iex
```_Choose (1) HWID for Windows activation._
### Clean OS
_Go for Standard_
[Privacy.sexy](https://privacy.sexy/)### Delete all native apps
```bash
Get-AppxPackage | where-object {$_.name βnotlike β*store*β} | Remove-AppxPackage
```## Install Apps π²
[Spinel](https://spinel.ovh)
## Developer specific π©βπ»
### Git config
```bash
git config --global user.name Username
git config --global user.email [email protected]
```## Python π
### [uv](https://github.com/astral-sh/uv)
```bash
# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
```### Pip error: Microsoft Visual C++ 14.0 is required
_[source](https://hub.tcno.co/software/vs/buildtools/)_
```bash
choco install visualstudio2022buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.MSBuildTools;includeRecommended --add Microsoft.VisualStudio.Workload.VCTools;includeRecommended --quiet" -y
```## JavaScript π¦
### [pnpm](https://pnpm.io/)
```bash
npm install -g pnpm
```