Check alle échte Black Friday-deals Ook zo moe van nepaanbiedingen? Wij laten alleen échte deals zien

  • wesley9946
  • Registratie: Januari 2017
  • Laatst online: 30-12-2023
Hallo,

Is er een optie voor Unattend.xml om onderstaand scherm automatisch over te slaan met blanco wachtwoord, zodat de OOBE alleen nog vraagt om gebruikers- en computernaam?

Afbeeldingslocatie: http://i65.tinypic.com/e04u1i.png

  • Endpoint
  • Registratie: April 2016
  • Laatst online: 10:31
Wds of mdt?

Wat heb je al gedaan voor de rest, zal al gegoogled? Wat is de rest van je infra?

  • HKLM_
  • Registratie: Februari 2009
  • Laatst online: 09:02
Er zijn wel mogelijkheden voor, vertel eens wat meer. Heb je nu een xml? Waar deploy je die mee? Heb je die zelf gemaakt /hoe ?

Cloud ☁️


  • wesley9946
  • Registratie: Januari 2017
  • Laatst online: 30-12-2023
@TomdeJ WDS in Server 2012 in VMware.

@HKLM_ De inhoud van de XML heb ik deels uit een copypaste van een pagina van Microsoft over Unattend.xml files, die deploy ik met WDS

  • HKLM_
  • Registratie: Februari 2009
  • Laatst online: 09:02
[quote]wesley9946 schreef op zondag 17 december 2017 @ 21:09:
@TomdeJ WDS in Server 2012 in VMware.

@HKLM_ De inhoud van de XML heb ik deels uit een copypaste van een pagina van Microsoft over Unattend.xml files, die deploy ik met WDS

Ik heb met deze site wel eens een xml gemaakt misschien kom je hier verder mee
http://windowsafg.no-ip.org is een online generator for xml files.

Tevens zou ook ik mdt aanraden om verder te gaan met je proces

[ Voor 11% gewijzigd door HKLM_ op 17-12-2017 21:17 ]

Cloud ☁️


  • Endpoint
  • Registratie: April 2016
  • Laatst online: 10:31
Dan zou ik mdt erbij zetten. Maakt het allemaal een stuk makkelijker

  • wesley9946
  • Registratie: Januari 2017
  • Laatst online: 30-12-2023
Zo ziet mijn Unattend.xml er momenteel uit:


code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" ?> 
<unattend xmlns="urn:schemas-microsoft-com:unattend">
   <settings pass="windowsPE">
      <component name="Microsoft-Windows-Setup" publicKeyToken="31bf3856ad364e35" 
language="neutral" versionScope="nonSxS" processorArchitecture="x86">
         <WindowsDeploymentServices>
            <Login>
               <WillShowUI>OnError</WillShowUI>
               <Credentials>
                     <Username>Administrator</Username>
                     <Domain>WDS-TEST-DOMEIN</Domain>
                     <Password>12345678</Password>
                  </Credentials>
               </Login>
           <ImageSelection>
               <WillShowUI>OnError</WillShowUI>
               <InstallImage>
                  <Filename>install.wim</Filename>
                  <ImageName>Windows 7 Home Premium</ImageName>
                  <ImageGroup>WIN7</ImageGroup>
               </InstallImage>
               <InstallTo>
                  <DiskID>0</DiskID>
                  <PartitionID>1</PartitionID>
               </InstallTo>
            </ImageSelection>
         </WindowsDeploymentServices>
         <UserData>
            <AcceptEula>true</AcceptEula>
            <FullName>Meneer Koekje</FullName>
         </UserData>
            <DiskConfiguration>
                 <WillShowUI>OnError</WillShowUI>
                 <Disk>
                      <DiskID>0</DiskID>
                      <WillWipeDisk>true</WillWipeDisk>
                      <CreatePartitions>
                       <CreatePartition>
                           <Order>1</Order>
                           <Type>Primary</Type>
                           <extend>true</extend>
                        </CreatePartition>
                        </CreatePartitions>
                 </Disk>
            </DiskConfiguration>
     </component>
     <component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35" 
language="neutral" versionScope="nonSxS" processorArchitecture="x86">
         <SetupUILanguage>
            <WillShowUI>OnError</WillShowUI>
            <UILanguage>nl-NL</UILanguage>
         </SetupUILanguage>
         <UILanguage>nl-NL</UILanguage>
        </component>
  </settings>
 <settings pass="oobeSystem">
        <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <InputLocale>0413:00020409</InputLocale>
            <SystemLocale>nl-NL</SystemLocale>
            <UILanguage>nl-NL</UILanguage>
            <UILanguageFallback>nl-NL</UILanguageFallback>
            <UserLocale>nl-NL</UserLocale>
        </component>
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                   <FirstLogonCommands>
                      <SynchronousCommand wcm:action="add">
                         <Order>1</Order>
                         <Description>Commando's testen na voltooien OOBE</Description>
                         <CommandLine>cmd /c "md C:\installtmp && cd C:\installtmp && wget -q ftp://10.0.30.3/test.bat && "test.bat" "</CommandLine>
                      </SynchronousCommand>
                   </FirstLogonCommands>
                   <OOBE>
                <NetworkLocation>Home</NetworkLocation>
                <ProtectYourPC>3</ProtectYourPC>
               </OOBE>
    </component>
 </settings>
        <settings pass="specialize">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <RegisteredOwner>Meneer Koekje</RegisteredOwner>
                        <TimeZone>W. Europe Standard Time</TimeZone>
                        <ProductKey>XXXXXXXXXXXXXXXXXXXXXX</ProductKey>
        </component>
    </settings>
</unattend>

  • Wylana
  • Registratie: April 2009
  • Laatst online: 10:25
Binnen dit stuk mis je je gebruikers account en wachtwoord.

<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<Description>Commando's testen na voltooien OOBE</Description>
<CommandLine>cmd /c "md C:\installtmp && cd C:\installtmp && wget -q ftp://10.0.30.3/test.bat && "test.bat" "</CommandLine>
</SynchronousCommand>
</FirstLogonCommands>
<OOBE>
<NetworkLocation>Home</NetworkLocation>
<ProtectYourPC>3</ProtectYourPC>
</OOBE>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<RegisteredOwner>Meneer Koekje</RegisteredOwner>
<TimeZone>W. Europe Standard Time</TimeZone>
<ProductKey>XXXXXXXXXXXXXXXXXXXXXX</ProductKey>
</component>
</settings>



Maar zoals al verteld is het makkelijker om dit via MDT (Microsoft Deployment Tool) te doen.

Ikzelf gebruik dit ook en het werkt vele male makkelijker.
Je maakt dan Task Sequences aan waarin je aangeeft wat er moet gebeuren.

Zie https://docs.microsoft.co...rosoft-deployment-toolkit

Ik ben steenrijk....ik heb een grindpad!

Pagina: 1