private/BootMedia/Write-OSDeployCoreProgress.ps1
|
#Requires -PSEdition Core function Write-OSDeployCoreProgress { [CmdletBinding()] param ( [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string]$Message ) Write-Host -ForegroundColor DarkCyan ("[{0}] {1}" -f (Get-Date -Format s), $Message) } |