Created
November 27, 2019 22:28
-
-
Save brianfgonzalez/d93e4160b03b46885ca187e6bc2fa549 to your computer and use it in GitHub Desktop.
unattend for winpe x64 that calls promptForDiskWipe.bat before calling Litetouch.vbs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
<settings pass="windowsPE"> | |
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"> | |
<Display> | |
<ColorDepth>32</ColorDepth> | |
<HorizontalResolution>1024</HorizontalResolution> | |
<RefreshRate>60</RefreshRate> | |
<VerticalResolution>768</VerticalResolution> | |
</Display> | |
<RunSynchronous> | |
<RunSynchronousCommand wcm:action="add"> | |
<Description>Wipe Disk Prompt</Description> | |
<Order>1</Order> | |
<Path>X:\promptForDiskWipe.bat</Path> | |
</RunSynchronousCommand> | |
<RunSynchronousCommand wcm:action="add"> | |
<Description>Lite Touch PE</Description> | |
<Order>2</Order> | |
<Path>wscript.exe X:\Deploy\Scripts\LiteTouch.wsf</Path> | |
</RunSynchronousCommand> | |
</RunSynchronous> | |
</component> | |
</settings> | |
</unattend> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment