Advertisement
NeoJolt

Windows Installation instructions.

Oct 4th, 2023 (edited)
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. Credits to Chris Titus for installing Windows the Arch Linux Way.
  2. https://www.youtube.com/watch?v=vtxedkuUCas
  3.  
  4. ### PREINSTALL ###
  5. /* Press Shift F10 to run Command Prompt. */
  6. diskpart
  7.  
  8. # BOOT DIRECTORY #
  9. select disk 0
  10. convert gpt
  11. /* if there is a efi partition, select the partition you want to delete, typ delete partition override */
  12. create partition efi size=100
  13. format fs=fat32 quick
  14. assign letter=B
  15.  
  16. # WINDOWS DIRECTORY #
  17. create partition primary
  18. format fs=ntfs quick
  19. assign letter=C
  20. list volume
  21. exit
  22.  
  23. ### INSTALLATION PHASE ###
  24. /* Select installation media */
  25. D:
  26. cd sources
  27. /* Check which version you want to install with: dism /Get-ImageInfo /ImageFile:install.wim */
  28. dism /Apply-Image /ImageFile:install.wim /Index:5 /ApplyDir:C:
  29. bcdboot C:\Windows /s B: /f all
  30.  
  31. ### SKIP ONLINE ACCOUNT ###
  32. /* Press Shift F10 to run Command Prompt. */
  33. oobe\bypassnro
  34. ipconfig /release
  35. /* For WIFI users disable WIFI */
  36.  
  37.  
  38. ### POST INSTALLATION ###
  39. Run Command Prompt
  40. ipconfig /renew
  41. /* For WIFI users enable WIFI */
  42.  
  43. # PRODUCT ACTIVATION #
  44. Run PowerShell as Administrator.
  45. irm https://massgrave.dev/get | iex
  46.  
  47. # WINDOWS DEBLOAT #
  48. /* Disable Antivirus as the script is flagged as malware */
  49. Run PowerShell as Administrator.
  50. iwr -useb https://christitus.com/win | iex
  51.  
  52. /* When not using Chris Titus Toolkit */
  53. Run PowerShell as Administrator.
  54. Chocolatey:
  55. 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'))
  56.  
  57. Software:
  58. choco install chocolateygui -y
  59.  
  60. # COPILOT #
  61. /* For European users, after Preview Update */
  62. Press Windows +R
  63. microsoft-edge://?ux=copilot&tcp=1&source=taskbar
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement