Advertisement
Drthrax74

Installation Automatique (UEFI/WDS)

Oct 8th, 2017
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.23 KB | None | 0 0
  1. Ce pastebin contient toute les étapes pour réaliser une installation automatique avec WDS pour Windows Server 2012.
  2. Marc Jaffré.
  3.  
  4.  
  5. WindowsPE   => Installateur Windows
  6. Specialize  => Post Install
  7.  
  8.  
  9. /!\ MODE UEFI Exclusivement /!\
  10.  
  11.  
  12. Aller dans le DHCP > IPV4 > Etendue > Option d'étendue
  13. Hôte - Option 066 => IPV4 Serveur
  14.  
  15. DHCP Option 67: Legacy Boot
  16.     boot\x64\wdsnbp.com
  17.  
  18. DHCP Option 67: UEFI Boot
  19.     boot\x64\bootmgfw.efi
  20.  
  21.  
  22.  
  23. ##########
  24. # Langue #
  25. ##########
  26.  
  27.     amd64_Microsoft-Windows-International-Core-WinPE                                        WindowsPE
  28.         InputLocale         = fr-FR
  29.         LayeredDriver       =
  30.         SystemLocale        = fr-FR    
  31.         UILanguage          = fr-FR
  32.         UILanguageFallback  = fr-FR
  33.         UserLocale          = fr-FR
  34.  
  35.     amd64_Microsoft-Windows-International-Core-WinPE\SetupUILanguage                        WindowsPE
  36.         UILanguage          = fr-FR
  37.  
  38.        
  39. ##############
  40. # Disque-Dur #
  41. ##############
  42.     amd64_Microsoft-Windows-Setup\DiskConfiguration\DiskID                                  WindowsPE
  43.         Disk                = 0
  44.         WillShowUI          = OnError
  45.         WillWipeDisk        = True
  46.        
  47.     amd64_Microsoft-Windows-Setup\DiskConfiguration\DiskID\CreatePartitions                 WindowsPE
  48.  
  49.         Extend              = false
  50.         Order               = 1
  51.         Size                = 100
  52.         Type                = EFI
  53.        
  54.        
  55.         Extend              = false
  56.         Order               = 2
  57.         Size                = 128
  58.         Type                = MSR
  59.        
  60.        
  61.         Extend              = true
  62.         Order               = 3
  63.         Size                =
  64.         Type                = PRIMARY
  65.  
  66.  
  67.     amd64_Microsoft-Windows-Setup\DiskConfiguration\DiskID\ModifyPartition                  WindowsPE
  68.  
  69.         Format              = FAT32
  70.         Label               =
  71.         Letter              =
  72.         Order               = 1
  73.         PartitionID         = 1
  74.  
  75.        
  76.         Format              = NTFS
  77.         Label               = Disque Local
  78.         Letter              = C
  79.         Order               = 2
  80.         PartitionID         = 3
  81.  
  82.    
  83. ########################
  84. # Accepter le contrat  #
  85. ########################
  86.  
  87.     amd64_Microsoft-Windows-Setup\USERDATA                                                  WindowsPE
  88.         AcceptEULA          = true
  89.  
  90.    
  91.    
  92.    
  93.    
  94.    
  95. ###################
  96. # Licence Windows #
  97. ###################
  98.  
  99.     amd64_Microsoft-Windows-Setup\USERDATA\Productkey
  100.         KEY                 = TX9XD98N7V6WMQ6BX7FGH8Q99
  101.        
  102.    
  103. ####################
  104. # Image à déployer #
  105. ####################
  106.  
  107.     amd64_Microsoft-Windows-Setup\WindowsDeploymentServices\ImageSelection\InstallImage     WindowsPE
  108.         FileName            = WORK.wim
  109.         ImageGroup          = WORK
  110.         ImageName           = WORK
  111.    
  112. ########################
  113. # Lieux du déploiement #
  114. ########################
  115.  
  116. amd64_Microsoft-Windows-Setup\WindowsDeploymentServices\ImageSelection\InstallTo        WindowsPE
  117.     DiskID              = 0
  118.     PartitionID         = 3
  119.  
  120.    
  121.    
  122.    
  123.    
  124. ####################
  125. # Accès au Serveur #
  126. ####################
  127.  
  128. amd64_Microsoft-Windows-Setup\WindowsDeploymentServices\Login\Credentials               WindowsPE
  129.     Domain              = marc.fr
  130.     Password            = ....
  131.     Username            = marc
  132.  
  133.    
  134. -------------------------------------------------------------------------------------------------
  135.  
  136.  
  137.  
  138. ######################
  139. # Personnalisation 1 #
  140. ######################
  141. amd64_Microsoft-Windows-Shell-Setup\                                                    Specialize
  142.     ComputerName        = Prodimex
  143.     Copyprofile         = ???????
  144.        
  145.  
  146.  
  147. Pour les installations sans assistance, définissez le paramètre Microsoft-Windows-Deployment\\Reseal\Mode sur audit.
  148.    
  149. ####################
  150. # Accès au serveur #
  151. ####################
  152. amd64_Microsoft-Windows-Shell-Setup\Autologon                                           Specialize
  153.     Domain              = marc.fr
  154.     Enable              = true
  155.     LogonCount          = 10
  156.     Username            = marc
  157.    
  158. amd64_Microsoft-Windows-Shell-Setup\Autologon\Password
  159.     Password            = ....
  160.  
  161.    
  162.    
  163. ####################
  164. # Information OOBE #
  165. ####################
  166. amd64_Microsoft-Windows-Shell-Setup\OEMInformation                                      Specialize
  167.         HelpCustomized      = false
  168.         logo                = Local_link\Plogo.bmp (Non TESTER)
  169.         Manufacturer        = Prodimex S.A
  170.         Model               = Ordinateur Prodimex
  171.         SupportHours        = <A REMPLIR>
  172.         SupportPhone        = <A REMPLIR>
  173.         SupportURL          = Prodimex.CH
  174.  
  175.  
  176.        
  177.        
  178. ########################
  179. # Définir Arrière-plan #
  180. ########################
  181.  
  182. amd64_Microsoft-Windows-Shell-Setup\Themes\
  183.         Desktopbackground   = ...\Work.jpg  (Non TESTER)
  184.        
  185.        
  186.        
  187.  
  188. Clé Windows 10 Générique:
  189.  
  190. Windows 10 Professional : W269NWFGWXYVC9B4J6C9T83GX
  191. Windows 10 Famille      : TX9XD98N7V6WMQ6BX7FGH8Q99
  192.  
  193.  
  194. https:\\msdn.microsoft.com\fr-fr\library\hh825682.aspx
  195. http:\\labreux.fr\tssi\ms\14%20-%20WDS%20by%20Nico.pdf
  196. https:\\no-impact.eu\do-it-yourself-post-10-Configuration-ADK-et-creation-de-fichier-XML-sur-Windows-Server-2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement