Changeset 91502 in vbox for trunk/src/VBox/Main/UnattendedTemplates
- Timestamp:
- Sep 30, 2021 8:32:24 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147191
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/UnattendedTemplates/win_nt6_unattended.xml
r68257 r91502 27 27 <DiskID>0</DiskID> 28 28 <WillWipeDisk>true</WillWipeDisk> 29 @@VBOX_COND_IS_NOT_FIRMWARE_UEFI@@ 29 30 <CreatePartitions> 31 <!-- TODO: Use the standard partitioning scheme at starting with Windows 8 maybe, using 2 partitions as described by Microsoft? --> 30 32 <CreatePartition> 31 33 <Order>1</Order> … … 34 36 </CreatePartition> 35 37 </CreatePartitions> 38 @@VBOX_COND_END@@ 39 @@VBOX_COND_IS_FIRMWARE_UEFI@@ 40 <CreatePartitions> 41 <CreatePartition wcm:action="add"> 42 <Order>1</Order> 43 <Type>Primary</Type> 44 <Size>300</Size> 45 </CreatePartition> 46 <CreatePartition wcm:action="add"> 47 <Order>2</Order> 48 <Type>EFI</Type> 49 <Size>100</Size> 50 </CreatePartition> 51 <CreatePartition wcm:action="add"> 52 <Order>3</Order> 53 <Type>MSR</Type> 54 <Size>128</Size> 55 </CreatePartition> 56 <CreatePartition wcm:action="add"> 57 <Order>4</Order> 58 <Type>Primary</Type> 59 <Extend>true</Extend> 60 </CreatePartition> 61 </CreatePartitions> 62 <ModifyPartitions> 63 <ModifyPartition wcm:action="add"> 64 <Order>1</Order> 65 <PartitionID>1</PartitionID> 66 <Label>WINRE</Label> 67 <Format>NTFS</Format> 68 <TypeID>de94bba4-06d1-4d40-a16a-bfd50179d6ac</TypeID> 69 </ModifyPartition> 70 <ModifyPartition wcm:action="add"> 71 <Order>2</Order> 72 <PartitionID>2</PartitionID> 73 <Label>EFI</Label> 74 <Format>FAT32</Format> 75 </ModifyPartition> 76 <ModifyPartition wcm:action="add"> 77 <Order>3</Order> 78 <PartitionID>3</PartitionID> 79 </ModifyPartition> 80 <ModifyPartition wcm:action="add"> 81 <Order>4</Order> 82 <PartitionID>4</PartitionID> 83 <Label>Windows</Label> 84 <Letter>C</Letter> 85 <Format>NTFS</Format> 86 </ModifyPartition> 87 </ModifyPartitions> 88 @@VBOX_COND_END@@ 36 89 </Disk> 37 90 </DiskConfiguration> … … 57 110 <InstallTo> 58 111 <DiskID>0</DiskID> 112 @@VBOX_COND_IS_NOT_FIRMWARE_UEFI@@ 59 113 <PartitionID>1</PartitionID> 114 @@VBOX_COND_END@@ 115 @@VBOX_COND_IS_FIRMWARE_UEFI@@ 116 <PartitionID>4</PartitionID> 117 @@VBOX_COND_END@@ 60 118 </InstallTo> 61 119 <WillShowUI>OnError</WillShowUI> … … 67 125 <DisplayReport>OnError</DisplayReport> 68 126 </ComplianceCheck> 127 128 <!-- Apply registry tweaks to Windows PE, skipping the checks in the Windows 11 setup program. This will not make it to the final install, and should do no harm with older Windows versions. --> 129 <RunAsynchronous> 130 <RunAsynchronousCommand> 131 <Order>1</Order> 132 <Path>reg.exe add HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig /v BypassCPUCheck /t REG_DWORD /d 1</Path> 133 <Description>Windows 11 disable CPU check</Description> 134 </RunAsynchronousCommand> 135 <RunAsynchronousCommand> 136 <Order>2</Order> 137 <Path>reg.exe add HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig /v BypassRAMCheck /t REG_DWORD /d 1</Path> 138 <Description>Windows 11 disable RAM check</Description> 139 </RunAsynchronousCommand> 140 <RunAsynchronousCommand> 141 <Order>3</Order> 142 <Path>reg.exe add HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig /v BypassSecureBootCheck /t REG_DWORD /d 1</Path> 143 <Description>Windows 11 disable Secure Boot check</Description> 144 </RunAsynchronousCommand> 145 <RunAsynchronousCommand> 146 <Order>4</Order> 147 <Path>reg.exe add HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig /v BypassStorageCheck /t REG_DWORD /d 1</Path> 148 <Description>Windows 11 disable Storage check</Description> 149 </RunAsynchronousCommand> 150 <RunAsynchronousCommand> 151 <Order>5</Order> 152 <Path>reg.exe add HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig /v BypassTPMCheck /t REG_DWORD /d 1</Path> 153 <Description>Windows 11 disable TPM check</Description> 154 </RunAsynchronousCommand> 155 </RunAsynchronous> 69 156 70 157 </component> … … 144 231 <Order>2</Order> 145 232 <Description>VirtualBox post guest install steps </Description> 146 <CommandLine>cmd.exe /c A:\VBOXPOST.CMD --vista-or-newer</CommandLine>233 <CommandLine>cmd.exe /c @@VBOX_INSERT_AUXILIARY_INSTALL_DIR@@VBOXPOST.CMD --vista-or-newer</CommandLine> 147 234 </SynchronousCommand> 148 235 </FirstLogonCommands>
Note:
See TracChangeset
for help on using the changeset viewer.