Files
2018-01-03 01:13:29 -07:00

4 lines
135 B
PowerShell

Function Write-Log([string]$message) {
Add-Content -Path "install.log" -Value $message
Write-Host $message -ForegroundColor Cyan
}