Last active
April 20, 2017 17:52
-
-
Save jakobii/5969b8e9bd9c8bd2fe214a0c607a60e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diskpart | |
select disk 3 | |
clean | |
create partition primary size=300 | |
format quick fs=ntfs label="System" | |
assign letter="s" | |
active | |
create partition primary | |
format quick fs=ntfs label="Windows" | |
assign letter="w" | |
exit | |
Dism /apply-image /imagefile:c:\temp\install.wim /index:1 /ApplyDir:Y:\ /Verify | |
? W:\Windows\system32\bcdboot W:\windows /l en-us | |
bcdboot W:\Windows /s S: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment