View autoDeployWindows.bat
This file contains 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
echo select disk 0 > diskpart%ID%.txt | |
echo clean >> diskpart%ID%.txt | |
echo ** Creating system reserved partition... | |
echo create partition primary size=500 >> diskpart%ID%.txt | |
echo select partition 1 >> diskpart%ID%.txt | |
echo active >> diskpart%ID%.txt | |
echo format quick fs=ntfs >> diskpart%ID%.txt | |
echo assign letter="r" >> diskpart%ID%.txt |
View Clean-ImageBeforeSysPrep.ps1
This file contains 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
<# | |
********************************************************************************************************* | |
* Requires | Requires PowerShell 3.0 * | |
* ===================================================================================================== * | |
* Modified by | Date | Revision | Comments * | |
* _____________________________________________________________________________________________________ * | |
* Ioan Popovici | 2017-07-10 | v1.0 | First version * | |
* Ioan Popovici | 2017-07-10 | v2.0 | Vastly improved * | |
* Ioan Popovici | 2017-07-14 | v2.1 | Bug fixes and improvements * | |
* Andrew Reiter | 2017-09-07 | v2.2 | Fix Copy-Item Bug * |