Windows-pe: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
 
(9 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 4: Zeile 4:
 
*https://technet.microsoft.com/de-de/library/cc732280%28v=ws.10%29.aspx#Combined
 
*https://technet.microsoft.com/de-de/library/cc732280%28v=ws.10%29.aspx#Combined
 
Powershell | WGet in WinPE via SCCM TS
 
Powershell | WGet in WinPE via SCCM TS
 +
 +
type c:\start.cmd
 +
del c:\startup.cmd
 +
powershell.exe -command (($DL = New-Object System.Net.WebClient).DownloadFile(\"http://doom.xinux.org/download/startup.cmd\",\"c:\startup.cmd\"))
 +
c:\startup.cmd
 +
 +
 +
scripted install with windows-pe
 +
 +
To build WinPE Boot images for Windows 7 64-bit use the following commands:
 +
*copype amd64 C:\winpe
 +
*copy "C:\Program Files\Windows AIK\Tools\PETools\amd64\winpe.wim" C:\winpe\ISO\Sources\Boot.wim
 +
*copy "C:\Program Files\Windows AIK\Tools\amd64\Imagex.exe" C:\winpe\ISO\
 +
 +
 +
 +
*oscdimg -n -bC:\winpe_amd64\etfsboot.com C:\winpe_amd64\ISO C:\winpe_amd64\winpe_amd64.iso
 +
 +
 +
 +
=mit denen beiden sollte es klappen=
 +
*http://www.tecmint.com/installing-windows-7-over-pxe-network-boot-in-centos/
 +
*http://pnijjar.freeshell.org/2013/win7-pxe/
 +
 
*https://social.technet.microsoft.com/Forums/en-US/e8a91085-a4a3-4c64-beab-2b61fea50e75/powershell-wget-in-winpe-via-sccm-ts
 
*https://social.technet.microsoft.com/Forums/en-US/e8a91085-a4a3-4c64-beab-2b61fea50e75/powershell-wget-in-winpe-via-sccm-ts
 +
 +
*http://www.tecchannel.de/pc_mobile/windows/2023629/windows_7_automatisch_installieren/

Aktuelle Version vom 12. Dezember 2015, 14:56 Uhr

Include a Custom Script in a Windows PE Image

Beispieldateien für die unbeaufsichtigte Installation

Powershell | WGet in WinPE via SCCM TS

type c:\start.cmd

del c:\startup.cmd
powershell.exe -command (($DL = New-Object System.Net.WebClient).DownloadFile(\"http://doom.xinux.org/download/startup.cmd\",\"c:\startup.cmd\")) 
c:\startup.cmd


scripted install with windows-pe

To build WinPE Boot images for Windows 7 64-bit use the following commands:

  • copype amd64 C:\winpe
  • copy "C:\Program Files\Windows AIK\Tools\PETools\amd64\winpe.wim" C:\winpe\ISO\Sources\Boot.wim
  • copy "C:\Program Files\Windows AIK\Tools\amd64\Imagex.exe" C:\winpe\ISO\


  • oscdimg -n -bC:\winpe_amd64\etfsboot.com C:\winpe_amd64\ISO C:\winpe_amd64\winpe_amd64.iso


mit denen beiden sollte es klappen