18 lines
		
	
	
		
			499 B
		
	
	
	
		
			PowerShell
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			499 B
		
	
	
	
		
			PowerShell
		
	
	
		
			Executable File
		
	
	
	
	
| # Copyright (c) Microsoft Corporation.
 | |
| # SPDX-License-Identifier: MIT
 | |
| #
 | |
| 
 | |
| <#
 | |
| .SYNOPSIS
 | |
| Prepares the virtual machine for imaging.
 | |
| 
 | |
| .DESCRIPTION
 | |
| Runs the `sysprep` utility to prepare the system for imaging.
 | |
| See https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview
 | |
| for more information.
 | |
| #>
 | |
| 
 | |
| $ErrorActionPreference = 'Stop'
 | |
| Write-Host 'Running sysprep'
 | |
| & C:\Windows\system32\sysprep\sysprep.exe /oobe /generalize /mode:vm /shutdown
 |