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