Powershell : Write host

powershell

Write-Host affiche à l'écran

"ici on met un texte" | out-file log.txt
#affiche le texte dans un éditeur
.\log.txt
write-error "write in red"
write-warning "write in yellow" -warninAction Inquire

powershell