fusionpbx-install.sh/windows/resources/write-log.ps1

4 lines
135 B
PowerShell
Raw Normal View History

2018-01-03 09:13:29 +01:00
Function Write-Log([string]$message) {
Add-Content -Path "install.log" -Value $message
Write-Host $message -ForegroundColor Cyan
}