Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

WinPE automated wim deployment

Featured Replies

  • Author

So I can simply make:

select disk 0
clean
convert gpt
create partition primary size=350
format quick fs=ntfs label="System"
assign letter="S"
create partition primary
format quick fs=ntfs label="Windows"
assign letter="W"
exit

??

Yes, that's the idea.

And I believe also what happens if you install "normally" from a DVD.

BUT you need to correct the script, the Boot partition (the one MS calls "System") MUST be FAT32 (thanks to the UEFI "standard") as most motherboards won't have a NTFS EFI driver and it should be of the EFI type:

Quote


select disk 0
clean
convert gpt
create partition efi size=350
format quick fs=ntfs label="System"
assign letter="S"
create partition primary
format quick fs=ntfs label="Windows"
assign letter="W"
exit


 


 

If you make it 350 Mb you won't have issues with 512 bytes vs. 4096 bytes disk sectors, though I am not too sure why the size of that partition is so large, and why exactly there is the recommendation (in the given page):

https://msdn.microsoft.com/en-us/library/windows/hardware/dn621890.aspx

create partition efi size=100
rem ** NOTE: For Advanced Format 4Kn drives,
rem          change this value to size = 260 **
format quick fs=fat32 label="System"
assign letter="S"

jaclaz


 
 

On Saturday, September 10, 2016 at 9:58 AM, bingloverld said:

Yes I tooked gpt recommendations directly from Microsoft, gpt.txt is 100% copy/paste. 

It is for Windows 8 OS.

1. I have never seen stock Windows 7 recovery work on GPT disk.
2. Windows 10 does not have a recovery image.

I can post you my EFI diskpart scripts for Win7 and Win10 on monday if you want.

  • Author
On 11.9.2016 at 4:31 PM, Tripredacus said:

It is for Windows 8 OS.

1. I have never seen stock Windows 7 recovery work on GPT disk.
2. Windows 10 does not have a recovery image.

I can post you my EFI diskpart scripts for Win7 and Win10 on monday if you want.

That would be great! Thank you. 

I think this 4Kn and size 260MB are specials hdd, we don't use them anyway.

on 13.09.2016 added:

PS USB SSD did not wanted to run in UEFI mode because the BOOTX64.EFI file was damaged. I have simply copied this file from DVD with Windows 10 LTSB and it works!

Edited by bingloverld

  • Author

No I haven't. That would be nice. Thank you!

Edited by bingloverld

For Windows 7/Server 2012/R2 (presumably 2016 also)

sel disk 0
clean
convert gpt

create part efi size=100
format quick fs=fat32 label="System"
assign letter=s

create part msr size=128

create part pri
format quick fs=ntfs label="Windows"
assign letter=w

exit

For Windows 10

sel disk 0
clean
convert gpt

create part efi size=260
format quick fs=fat32 label="System"
assign letter="s"

create part msr size=16

create part pri
shrink minimum=500
format quick fs=ntfs label="Windows"
assign letter="w"

create part pri
format quick fs=ntfs label="Recovery"
assign letter="r"
set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
gpt attributes=0x8000000000000001

exit

Some things to note. These are designed for diskpart from Windows 10 ADK. Some older versions of diskpart would not auto-select a newly created partition. In case you are using an older diskpart, you would need to add "sel part x" between the "create" and "format" commands. So in the Win10 script, it would be sel part 1, 3, 4.

Please sign in to comment

You will be able to leave a comment after signing in

Sign In Now

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.