1
0
Files
2025-10-31 08:58:36 +01:00

16 lines
844 B
PowerShell
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Write-Output "Write-Output"
$DebugPreference = "Continue"
Write-Debug "Write-Debug"
$VerbosePreference = "Continue"
Write-Verbose "Write-Verbose"
Write-Warning "Write-Warning"
Write-Error "Write-Error"
# keep following windows in foreground with -noConsole:
$Host.UI.RawUI.FlushInputBuffer()
ipconfig | Out-String
$Host.UI.RawUI.FlushInputBuffer()
Read-Host "Read-Host: Press key to exit"
Write-Host "Write-Host: Done"