private/Core/Write-OSDeployBanner.ps1
|
function Write-OSDeployBanner { if ($script:OSDeployBannerDisplayed) { return } Write-Host 'OSDeploy by Recast is a PowerShell Preview Module (expires 2026-06-30).' -ForegroundColor DarkYellow Write-Host 'Some features may require a free Community license key which can be obtained at recastsoftware.com' -ForegroundColor DarkYellow $script:OSDeployBannerDisplayed = $true } |