Last active
October 5, 2016 14:22
-
-
Save brianfgonzalez/aa1dbbce0596712c7793dfae6bbc33ee to your computer and use it in GitHub Desktop.
Menard Inc. Testing Script and XML Files
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
cls | |
SET WIMFile=7x64ProVL-2016Aug26.wim | |
@echo Hit the ANYKEY to begin re-image | |
@echo .or CTRL+C to cancel to command prompt | |
pause | |
ver | |
rem create diskpart answers file | |
echo sel dis 0 >x:\diskpart_answers.txt | |
echo clean >>x:\diskpart_answers.txt | |
echo cre par pri >>x:\diskpart_answers.txt | |
echo form fs=ntfs quick label=osdisk >>x:\diskpart_answers.txt | |
echo assign letter=c >>x:\diskpart_answers.txt | |
echo active >>x:\diskpart_answers.txt | |
rem clean disk 0, apply wim, unnattend and drivers | |
diskpart /s "x:\diskpart_answers.txt" | |
dism /apply-image /imagefile:"%~dp0%WIMFile%" /index:1 /applydir:c:\ | |
md "c:\scratch" | |
copy "%~dp0unattend.xml" "c:\unattend.xml" /y | |
dism /image:c:\ /apply-unattend:"c:\unattend.xml" /scratchdir:"c:\scratch" | |
xcopy "%~dp0drivers" "c:\drivers" /heyi | |
dism /image:c:\ /add-driver /driver:"c:\drivers" /recurse | |
bcdboot "c:\windows" /s "c:" | |
rem prompt to remove thumbdrive | |
@echo . | |
@echo . | |
@echo . | |
@echo Image is applied and configured | |
@echo .Remove thumbdrive and CLOSE all Windows | |
@echo ..to trigger reboot into newly applied OS | |
pause |
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
@wpeinit | |
@if exist "d:\apply_image.bat" (call "d:\apply_image.bat") | |
@if exist "e:\apply_image.bat" (call "e:\apply_image.bat") | |
@if exist "f:\apply_image.bat" (call "f:\apply_image.bat") | |
@if exist "g:\apply_image.bat" (call "g:\apply_image.bat") | |
@if exist "h:\apply_image.bat" (call "h:\apply_image.bat") |
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="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>0409:00000409</InputLocale> | |
<SystemLocale>en-US</SystemLocale> | |
<UILanguage>en-US</UILanguage> | |
<UILanguageFallback>en-US</UILanguageFallback> | |
<UserLocale>en-US</UserLocale> | |
</component> | |
<component name="Microsoft-Windows-International-Core" 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"> | |
<InputLocale>0409:00000409</InputLocale> | |
<SystemLocale>en-US</SystemLocale> | |
<UILanguage>en-US</UILanguage> | |
<UILanguageFallback>en-US</UILanguageFallback> | |
<UserLocale>en-US</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"> | |
<CopyProfile>false</CopyProfile> | |
<TimeZone>Eastern Standard Time</TimeZone> | |
<AutoLogon> | |
<Enabled>true</Enabled> | |
<LogonCount>9999999</LogonCount> | |
<Username>Administrator</Username> | |
<Password> | |
<PlainText>false</PlainText> | |
<Value>UABAAHMAcwB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value> | |
</Password> | |
</AutoLogon> | |
<OOBE> | |
<HideEULAPage>true</HideEULAPage> | |
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> | |
<NetworkLocation>Work</NetworkLocation> | |
<ProtectYourPC>3</ProtectYourPC> | |
</OOBE> | |
<UserAccounts> | |
<AdministratorPassword> | |
<PlainText>false</PlainText> | |
<Value>UABAAHMAcwB3ADAAcgBkAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value> | |
</AdministratorPassword> | |
<LocalAccounts> | |
<LocalAccount wcm:action="add"> | |
<Description>Local Administrator</Description> | |
<DisplayName>@dmin</DisplayName> | |
<Group>Administrators</Group> | |
<Name>Administrator</Name> | |
<Password> | |
<PlainText>false</PlainText> | |
<Value>UABAAHMAcwB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value> | |
</Password> | |
</LocalAccount> | |
</LocalAccounts> | |
</UserAccounts> | |
</component> | |
<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"> | |
<CopyProfile>false</CopyProfile> | |
<TimeZone>Eastern Standard Time</TimeZone> | |
<AutoLogon> | |
<Enabled>true</Enabled> | |
<LogonCount>9999999</LogonCount> | |
<Username>Administrator</Username> | |
<Password> | |
<PlainText>false</PlainText> | |
<Value>UABAAHMAcwB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value> | |
</Password> | |
</AutoLogon> | |
<OOBE> | |
<HideEULAPage>true</HideEULAPage> | |
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> | |
<NetworkLocation>Work</NetworkLocation> | |
<ProtectYourPC>3</ProtectYourPC> | |
</OOBE> | |
<UserAccounts> | |
<AdministratorPassword> | |
<PlainText>false</PlainText> | |
<Value>UABAAHMAcwB3ADAAcgBkAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value> | |
</AdministratorPassword> | |
<LocalAccounts> | |
<LocalAccount wcm:action="add"> | |
<Description>Local Administrator</Description> | |
<DisplayName>@dmin</DisplayName> | |
<Group>Administrators</Group> | |
<Name>Administrator</Name> | |
<Password> | |
<PlainText>false</PlainText> | |
<Value>UABAAHMAcwB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value> | |
</Password> | |
</LocalAccount> | |
</LocalAccounts> | |
</UserAccounts> | |
</component> | |
</settings> | |
<settings pass="specialize"> | |
<component name="Microsoft-Windows-Deployment" 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"> | |
<RunSynchronous> | |
<RunSynchronousCommand wcm:action="add"> | |
<Order>1</Order> | |
<Path>net user administrator /active:Yes</Path> | |
<WillReboot>Never</WillReboot> | |
</RunSynchronousCommand> | |
</RunSynchronous> | |
</component> | |
<component name="Microsoft-Windows-Deployment" 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"> | |
<RunSynchronous> | |
<RunSynchronousCommand wcm:action="add"> | |
<Order>1</Order> | |
<Path>net user administrator /active:Yes</Path> | |
<WillReboot>Never</WillReboot> | |
</RunSynchronousCommand> | |
</RunSynchronous> | |
</component> | |
<component name="Microsoft-Windows-Security-SPP-UX" 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"> | |
<SkipAutoActivation>true</SkipAutoActivation> | |
</component> | |
<component name="Microsoft-Windows-Security-SPP-UX" 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"> | |
<SkipAutoActivation>true</SkipAutoActivation> | |
</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"> | |
<ComputerName>*</ComputerName> | |
<ProductKey></ProductKey> | |
<RegisteredOrganization>Panasonic</RegisteredOrganization> | |
<RegisteredOwner>Panasonic</RegisteredOwner> | |
</component> | |
<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"> | |
<ComputerName>*</ComputerName> | |
<ProductKey></ProductKey> | |
<RegisteredOrganization>Panasonic</RegisteredOrganization> | |
<RegisteredOwner>Panasonic</RegisteredOwner> | |
</component> | |
</settings> | |
<settings pass="windowsPE"> | |
<component name="Microsoft-Windows-International-Core-WinPE" 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>0409:00000409</InputLocale> | |
<SystemLocale>en-US</SystemLocale> | |
<UILanguage>en-US</UILanguage> | |
<UILanguageFallback>en-US</UILanguageFallback> | |
<UserLocale>en-US</UserLocale> | |
<SetupUILanguage> | |
<UILanguage>en-US</UILanguage> | |
</SetupUILanguage> | |
</component> | |
<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"> | |
<InputLocale>0409:00000409</InputLocale> | |
<SystemLocale>en-US</SystemLocale> | |
<UILanguage>en-US</UILanguage> | |
<UILanguageFallback>en-US</UILanguageFallback> | |
<UserLocale>en-US</UserLocale> | |
<SetupUILanguage> | |
<UILanguage>en-US</UILanguage> | |
</SetupUILanguage> | |
</component> | |
<component name="Microsoft-Windows-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"> | |
<Diagnostics> | |
<OptIn>false</OptIn> | |
</Diagnostics> | |
<DynamicUpdate> | |
<Enable>false</Enable> | |
<WillShowUI>OnError</WillShowUI> | |
</DynamicUpdate> | |
<ImageInstall> | |
<OSImage> | |
<WillShowUI>OnError</WillShowUI> | |
<InstallFrom> | |
<MetaData wcm:action="add"> | |
<Key>/IMAGE/NAME</Key> | |
<Value>Windows 7 PROFESSIONAL</Value> | |
</MetaData> | |
</InstallFrom> | |
</OSImage> | |
</ImageInstall> | |
<UserData> | |
<AcceptEula>true</AcceptEula> | |
<ProductKey> | |
<Key>WYPYC-4MWBV-6HRJK-Q4R6D-7QB4W</Key> | |
<WillShowUI>OnError</WillShowUI> | |
</ProductKey> | |
</UserData> | |
</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"> | |
<Diagnostics> | |
<OptIn>false</OptIn> | |
</Diagnostics> | |
<DynamicUpdate> | |
<Enable>false</Enable> | |
<WillShowUI>OnError</WillShowUI> | |
</DynamicUpdate> | |
<ImageInstall> | |
<OSImage> | |
<WillShowUI>OnError</WillShowUI> | |
<InstallFrom> | |
<MetaData wcm:action="add"> | |
<Key>/IMAGE/NAME</Key> | |
<Value>Windows 7 PROFESSIONAL</Value> | |
</MetaData> | |
</InstallFrom> | |
</OSImage> | |
</ImageInstall> | |
<UserData> | |
<AcceptEula>true</AcceptEula> | |
<ProductKey> | |
<Key></Key> | |
<WillShowUI>OnError</WillShowUI> | |
</ProductKey> | |
</UserData> | |
</component> | |
</settings> | |
<settings pass="offlineServicing"> | |
<component name="Microsoft-Windows-PnpCustomizationsNonWinPE" 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"> | |
<DriverPaths> | |
<PathAndCredentials wcm:keyValue="1" wcm:action="add"> | |
<Path>\Drivers</Path> | |
</PathAndCredentials> | |
</DriverPaths> | |
</component> | |
<component name="Microsoft-Windows-PnpCustomizationsNonWinPE" 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"> | |
<DriverPaths> | |
<PathAndCredentials wcm:keyValue="1" wcm:action="add"> | |
<Path>\Drivers</Path> | |
</PathAndCredentials> | |
</DriverPaths> | |
</component> | |
</settings> | |
</unattend> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ProductKey was removed from Unattend.xml.