TL;DR met doel aan het einde. het grootste deel is de unattend.xml
Ik krijg van verschillende mensen allerlei soorten pc’s en laptops, die (tot nu toe) nog gewoon werken. Het doel daarvan is weer gebruiksklaar maken door een verse windows installatie. Bijna alles daarvan heeft een windows 7 home premium licentie. Die installatie, en mogelijk later ook windows 10, wil ik zo veel mogelijk automatiseren. Ik heb al een nieuwe image gemaakt waarin de updates zijn geïnstalleerd en meerdere aanpassingen gedaan in de unattend file, maar toch werkt het meeste nog niet. Kunnen jullie er naar kijken en verbeteringen
Werkende onderdelen: toetsenbord op de juiste instelling? Kan ook default windows zijn, gebruiker+ww en is admin, computernaam, windows volledig up-to-date
Laat nog steeds gui zien: taal/tijd en valuta/toetsenbord, keuze tussen installeren en herstellen, eula accepteren, upgrade of aangepaste installatie, schijf/partitie voor installatie, productcode, tijd(zone)/datum
Nog best veel handmatige stappen, waarvan de meeste wel in de unattend staan. De vragen:
Kan dit aan de gebruikte image liggen? Alleen Nederlandse taal/tijd en valuta mogelijk, afgezien van toetsenbord
Kan het aan de volgorde liggen? de modify partitions gebruiken verschillende volgordes, en WillWipeDisk stond er eerst onder (nu erboven)
Ik heb de componenten van de basistemplate van microsofts website gebruikt, missen er nog componenten of staat er juist te veel in? Sommige default opties staan er voor de zekerheid in
Sorry voor de onoverzichtelijkheid, het kon niet als los bestand en indents worden niet overgenomen.
Virtualbox 6.1
Anyburn 5.4 (image aanpassen)
DISM (image capture)
Gebruikte bronnen:
https://learn.microsoft.c...s.10)?redirectedfrom=MSDN
https://learn.microsoft.c...s.10)?redirectedfrom=MSDN
https://learn.microsoft.c...ows-setup?view=windows-11
https://learn.microsoft.c...-new-answer-file-settings
https://learn.microsoft.c...end/components-b-unattend een aantal pagina’s onder deze
https://www.windowsafg.com/win7x86_x64.html landcodes, fake key om die stap te skippen en controle volgorde unattend file
TL;DR: Ik ben op zoek naar een werkende combinatie van nederlandse windows 7 home premium en unattend file (of andere oplossing), waardoor ik alleen nog maar de windows productcode hoef in te voeren (of zo dicht mogelijk daar bij). Vendor/model onafhankelijk
Ik krijg van verschillende mensen allerlei soorten pc’s en laptops, die (tot nu toe) nog gewoon werken. Het doel daarvan is weer gebruiksklaar maken door een verse windows installatie. Bijna alles daarvan heeft een windows 7 home premium licentie. Die installatie, en mogelijk later ook windows 10, wil ik zo veel mogelijk automatiseren. Ik heb al een nieuwe image gemaakt waarin de updates zijn geïnstalleerd en meerdere aanpassingen gedaan in de unattend file, maar toch werkt het meeste nog niet. Kunnen jullie er naar kijken en verbeteringen
Werkende onderdelen: toetsenbord op de juiste instelling? Kan ook default windows zijn, gebruiker+ww en is admin, computernaam, windows volledig up-to-date
Laat nog steeds gui zien: taal/tijd en valuta/toetsenbord, keuze tussen installeren en herstellen, eula accepteren, upgrade of aangepaste installatie, schijf/partitie voor installatie, productcode, tijd(zone)/datum
Nog best veel handmatige stappen, waarvan de meeste wel in de unattend staan. De vragen:
Kan dit aan de gebruikte image liggen? Alleen Nederlandse taal/tijd en valuta mogelijk, afgezien van toetsenbord
Kan het aan de volgorde liggen? de modify partitions gebruiken verschillende volgordes, en WillWipeDisk stond er eerst onder (nu erboven)
Ik heb de componenten van de basistemplate van microsofts website gebruikt, missen er nog componenten of staat er juist te veel in? Sommige default opties staan er voor de zekerheid in
Sorry voor de onoverzichtelijkheid, het kon niet als los bestand en indents worden niet overgenomen.
Software:<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
<component name="Microsoft-Windows-International-Core-WinPE" 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">
<SetupUILanguage>
<UILanguage>nl-NL</UILanguage>
<WillShowUI>Never</WillShowUI>
</SetupUILanguage>
<SystemLocale>nl-NL</SystemLocale>
<UILanguage>nl-NL</UILanguage>
<UserLocale>nl-NL</UserLocale>
<InputLocale>en-US</InputLocale>
</component>
<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">
<DiskConfiguration>
<WillShowUI>Never</WillShowUI>
<Disk wcm:action="add">
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<CreatePartitions>
<CreatePartition wcm:action="add">
<Order>1</Order>
<Size>300</Size>
<Type>Primary</Type>
</CreatePartition>
<CreatePartition wcm:action="add">
<Order>2</Order>
<Extend>true</Extend>
<Type>Primary</Type>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<ModifyPartition wcm:action="add">
<Order>1</Order>
<PartitionID>1</PartitionID>
<Active>true</Active>
<Format>NTFS</Format>
<Label>System</Label>
</ModifyPartition>
<ModifyPartition wcm:action="add">
<Format>NTFS</Format>
<Label>OS_Install</Label>
<Letter>C</Letter>
<Order>2</Order>
<PartitionID>2</PartitionID>
<Active>true</Active>
</ModifyPartition>
</ModifyPartitions>
</Disk>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<WillShowUI>Never</WillShowUI>
<InstallToAvailablePartition>true</InstallToAvailablePartition>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<WillShowUI>Never</WillShowUI>
<Key>HYF8J-CVRMY-CM74G-RPHKF-PW487</Key>
</ProductKey>
<AcceptEula>true</AcceptEula>
</UserData>
<UpgradeData>
<WillShowUI>Never</WillShowUI>
</UpgradeData>
</component>
</settings>
<settings pass="specialize">
<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">
<OEMInformation>
<HelpCustomized>false</HelpCustomized>
<SupportURL>http://www.fabrikam.com/support</SupportURL>
</OEMInformation>
<ComputerName>thuis</ComputerName>
<RegisteredOwner></RegisteredOwner>
<TimeZone>W. Europe Standard Time </TimeZone>
</component>
</settings>
<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>
<ProtectYourPC>3</ProtectYourPC>
<NetworkLocation>Home</NetworkLocation>
<HideEULAPage>true</HideEULAPage>
</OOBE>
<UserAccounts>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>VwBlAGwAawBvAG0AMAAxAFAAYQBzAHMAdwBvAHIAZAA=</Value>
<PlainText>false</PlainText>
</Password>
<Name>gebruiker</Name>
<Group>Administrators;Power Users</Group>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
<TimeZone>W. Europe Standard Time</TimeZone>
</component>
</settings>
<settings pass="auditSystem">
<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">
<AutoLogon>
<Enabled>true</Enabled>
<Username> Administrator</Username>
<LogonCount>5</LogonCount>
</AutoLogon>
<TimeZone>W. Europe Standard Time</TimeZone>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:c:/users/kaj/virtualbox%20vms/iso's/image%20met%20updates/install.wim#win7homeprem" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>
Virtualbox 6.1
Anyburn 5.4 (image aanpassen)
DISM (image capture)
Gebruikte bronnen:
https://learn.microsoft.c...s.10)?redirectedfrom=MSDN
https://learn.microsoft.c...s.10)?redirectedfrom=MSDN
https://learn.microsoft.c...ows-setup?view=windows-11
https://learn.microsoft.c...-new-answer-file-settings
https://learn.microsoft.c...end/components-b-unattend een aantal pagina’s onder deze
https://www.windowsafg.com/win7x86_x64.html landcodes, fake key om die stap te skippen en controle volgorde unattend file
TL;DR: Ik ben op zoek naar een werkende combinatie van nederlandse windows 7 home premium en unattend file (of andere oplossing), waardoor ik alleen nog maar de windows productcode hoef in te voeren (of zo dicht mogelijk daar bij). Vendor/model onafhankelijk