[Feature Req] Adding Installation/ProductType to Editing Image

aviv00

Active Member
Messages
115
Reaction score
26
View attachment 12282

more info:

Code:
Index : 3
Name : Windows Server 2025 Datacenter (Desktop Experience)
Description : This option installs the full Windows graphical environment, consuming extra drive space. It can be useful if you want to use the Windows desktop or have an app that requires it.
Size : 19,686,868,556 bytes
WIM Bootable : No
Architecture : x64
Hal : <undefined>
Version : 10.0.26252
ServicePack Build : 5000
ServicePack Level : 0
Edition : ServerDatacenter
Installation : Server
ProductType : ServerNT
ProductSuite : Enterprise
System Root : WINDOWS
Directories : 22278
Files : 111019
Created : 6/7/2024 - 11:06:44 AM
Modified : 6/7/2024 - 11:38:53 AM
Languages :
        en-US (Default)

it should help install windows 11 without having to turn on TPM or any other requirement
also should disabling bitlocker auto installation

Thanks
 
I don't understand the reason. How does modifying the Installation field change how the image gets installed?
 
so it could be bypassed like with

setupprep.exe /product server

even that setup.exe is patched


will test it first to be sure

cant rn, needs imagex with flags

Code:
Edition : EnterpriseS
Installation : Server
ProductType : WinNT

for this code / settings
new setup will stop the installation
but old / classic will continue the installation
 
Last edited:
I don't think nuhi's too interested in supporting install hacks.

You can do this on your own with wimlib:
Code:
wiminfo install.wim 3 --image-property "INSTALLATIONTYPE=Server"
 
I found a GitHub project that uses the property:
Code:
 wiminfo install.wim 3 --image-property WINDOWS/INSTALLATIONTYPE=Server
 
Back
Top