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