Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Credits to Chris Titus for installing Windows the Arch Linux Way.
- https://www.youtube.com/watch?v=vtxedkuUCas
- ### PREINSTALL ###
- /* Press Shift F10 to run Command Prompt. */
- diskpart
- # BOOT DIRECTORY #
- select disk 0
- convert gpt
- /* if there is a efi partition, select the partition you want to delete, typ delete partition override */
- create partition efi size=100
- format fs=fat32 quick
- assign letter=B
- # WINDOWS DIRECTORY #
- create partition primary
- format fs=ntfs quick
- assign letter=C
- list volume
- exit
- ### INSTALLATION PHASE ###
- /* Select installation media */
- D:
- cd sources
- /* Check which version you want to install with: dism /Get-ImageInfo /ImageFile:install.wim */
- dism /Apply-Image /ImageFile:install.wim /Index:5 /ApplyDir:C:
- bcdboot C:\Windows /s B: /f all
- ### SKIP ONLINE ACCOUNT ###
- /* Press Shift F10 to run Command Prompt. */
- oobe\bypassnro
- ipconfig /release
- /* For WIFI users disable WIFI */
- ### POST INSTALLATION ###
- Run Command Prompt
- ipconfig /renew
- /* For WIFI users enable WIFI */
- # PRODUCT ACTIVATION #
- Run PowerShell as Administrator.
- irm https://massgrave.dev/get | iex
- # WINDOWS DEBLOAT #
- /* Disable Antivirus as the script is flagged as malware */
- Run PowerShell as Administrator.
- iwr -useb https://christitus.com/win | iex
- /* When not using Chris Titus Toolkit */
- Run PowerShell as Administrator.
- Chocolatey:
- Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
- Software:
- choco install chocolateygui -y
- # COPILOT #
- /* For European users, after Preview Update */
- Press Windows +R
- microsoft-edge://?ux=copilot&tcp=1&source=taskbar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement