Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        


W10 Logo

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
```