Advertisement
JW0914

Create BIOS Windows 10 System Partitions

Dec 5th, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.56 KB | None | 0 0
  1. diskpart
  2.  
  3. rem # Select disk to isntall to:
  4. sel dis 0
  5.  
  6. rem # Wipe partition table:
  7. clean
  8.  
  9. rem # Create WinRE partition:
  10. rem # Increase size if you plan to customize the WinRE image
  11. cre par pri offset=1024 size=665 id=27
  12. format fs=ntfs quick label=WinRE
  13.  
  14. rem # Create boot partition:
  15. cre par pri size=100
  16. format fs=ntfs quick label=Boot
  17. active
  18.  
  19. rem # Create system partition with remaining space:
  20. rem # SSDs: Last partition MUST have 10% of the disk size free for OP [Over Provisioning]
  21. cre par pri
  22. format fs=ntfs quick label=System
  23.  
  24. rem # Verify:
  25. lis par
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement