hi winter,
since some people dont use all options in the unattanded tab i found some items which can be skipped seperatly
the last one could maybe make the installation longer, i didnt see any difference on a fully reduced iso on my VM, it took as long as without it.
i found them here:
[You must be registered and logged in to see this link.]
also i think it would be nice to have a generic key list (dropdown, but editable to we can still input our own keys in) so the users dont need to look them up on the internet or maybe C&P them wrong.
i found a huge list here:
[You must be registered and logged in to see this link.]
since some people dont use all options in the unattanded tab i found some items which can be skipped seperatly
NetworkLocation wrote:Code:
NetworkLocation
specifies the location of the network if the computer is connected to a network when a user first logs on.
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OOBE>
<NetworkLocation>Home</NetworkLocation>
</OOBE>
</component>
</settings>
SkipMachineOOBE wrote:Values
true Specifies that Windows Welcome is skipped. This value should be used only for testing purposes. false Specifies that Windows Welcome is shown. This is the default value.
Code:
SkipUserOOBE
specifies whether to skip Welcome Center. This can be used only for testing prior to shipment.Values
true Specifies that Welcome Center is skipped. false Specifies that Welcome Center is shown. This is the default value.
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OOBE>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
</component>
</settings>
Code:
SkipAutoActivation
specifies whether auto-activation is skipped.
Diese Einstellung hat keinerlei Auswirkungen auf die Server Core-Installationen von Windows Server 2008.Values
true Specifies that auto-activation is skipped. false Specifies that auto-activation is not skipped. This is the default value.
<settings pass="specialize">
<component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SkipAutoActivation>true</SkipAutoActivation>
</component>
</settings>
Code:
OptIn
specifies whether installation statistics are sent to Microsoft.
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Diagnostics>
<OptIn>false</OptIn>
</Diagnostics>
</component>
Code:
DynamicUpdate
specifies whether to enable Dynamic Updates during Windows Setup. Dynamic Updates search for new Windows Setup files, including drivers and other files, to be used to install the Windows operating system.
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DynamicUpdate>
<Enable>false</Enable>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
</component>
Compact wrote:Specifies whether the Windows image should be applied with compression enabled during installation. If set to true, files written to the disk during installation are compressed individually, which allows Windows to take up less disk space.
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ImageInstall>
<OSImage>
<Compact>true</Compact>
</OSImage>
</ImageInstall>
</component>
the last one could maybe make the installation longer, i didnt see any difference on a fully reduced iso on my VM, it took as long as without it.
HideOEMRegistrationScreen wrote:Code:
HideOEMRegistrationScreen
specifies whether the OEM registration page appears during OOBE. If this setting exists, the page will not appear during OOBE, regardless of the oobe.xml values.
i found them here:
[You must be registered and logged in to see this link.]
also i think it would be nice to have a generic key list (dropdown, but editable to we can still input our own keys in) so the users dont need to look them up on the internet or maybe C&P them wrong.
i found a huge list here:
[You must be registered and logged in to see this link.]