From 047a8232162f982c0b5c90e442cc24791bde2fe0 Mon Sep 17 00:00:00 2001 From: CorpNewt <12772521+corpnewt@users.noreply.github.com> Date: Wed, 1 Apr 2020 15:44:21 -0500 Subject: [PATCH] Update diskpart script per issue 83 --- MakeInstall.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MakeInstall.py b/MakeInstall.py index b953db5..f0bfcb4 100755 --- a/MakeInstall.py +++ b/MakeInstall.py @@ -241,7 +241,9 @@ class WinUSB: "create partition primary size=200", "format quick fs=fat32 label='BOOT'", "active", - "create partition primary id=AB", # AF = HFS, AB = Recovery + "create partition primary", + "select part 2", + "set id=AB", # AF = HFS, AB = Recovery "select part 1", "assign" ])