17 lines
499 B
PowerShell
Executable file
17 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
|